/* ==========================================================================
   K-AUTO MARKETPLACE - LUXURY KORAUTO-STYLE DESIGN SYSTEM & THEME CSS
   ========================================================================== */

:root,
html[data-theme="dark"],
body[data-theme="dark"] {
  /* KT Automotive Luxury Obsidian & Amber-Gold Palette */
  --lx-bg-main: #0B0F17;
  --lx-bg-surface: #111827;
  --lx-bg-card: #151D2C;
  --lx-bg-elevated: #1E293B;
  --lx-bg-input: #0F172A;
  
  --lx-primary: #F59E0B;
  --lx-primary-hover: #D97706;
  --lx-primary-dark: #B45309;
  --lx-gold-gradient: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  --lx-gold-glow: 0 0 25px rgba(245, 158, 11, 0.28);
  --lx-gold-border: rgba(245, 158, 11, 0.35);

  --lx-text-primary: #F3F4F6;
  --lx-text-secondary: #94A3B8;
  --lx-text-muted: #64748B;
  --lx-text-white: #FFFFFF;
  --lx-text-gold: #FBBF24;
  --lx-text-watermark: rgba(245, 158, 11, 0.03);
  
  --lx-border-subtle: rgba(255, 255, 255, 0.08);
  --lx-border-medium: rgba(255, 255, 255, 0.14);
  --lx-border-hover: rgba(245, 158, 11, 0.4);

  --lx-color-surface: #151D2C;
  --lx-color-bg: #0B0F17;
  --lx-color-text: #FFFFFF;
  --lx-color-text-muted: #94A3B8;
  --lx-color-border: rgba(255, 255, 255, 0.08);

  --lx-accent-white: #FFFFFF;
  --lx-accent-red: #EF4444;
  --lx-accent-green: #10B981;
  --lx-accent-blue: #3B82F6;
  --lx-accent-amber: #F59E0B;

  /* Typography */
  --lx-font-heading: 'Arial', 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lx-font-body: 'Arial', 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --lx-radius-sm: 8px;
  --lx-radius-md: 12px;
  --lx-radius-lg: 18px;
  --lx-radius-xl: 24px;
  --lx-radius-pill: 9999px;

  /* Shadows */
  --lx-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --lx-shadow-glow: 0 0 30px rgba(245, 158, 11, 0.2);

  /* Container */
  --lx-container-max: 1360px;
  --lx-container-pad: 1.5rem;
}

html[data-theme="light"],
body[data-theme="light"] {
  --lx-bg-main: #F8FAFC;
  --lx-bg-surface: #FFFFFF;
  --lx-bg-card: #FFFFFF;
  --lx-bg-elevated: #F1F5F9;
  --lx-bg-input: #FFFFFF;
  
  --lx-primary: #D97706;
  --lx-primary-hover: #B45309;
  --lx-primary-dark: #92400E;
  --lx-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #B45309 100%);
  --lx-gold-glow: 0 0 20px rgba(217, 119, 6, 0.2);
  --lx-gold-border: rgba(217, 119, 6, 0.3);

  --lx-text-primary: #0F172A;
  --lx-text-secondary: #475569;
  --lx-text-muted: #64748B;
  --lx-text-white: #0F172A;
  --lx-text-gold: #B45309;
  --lx-text-watermark: rgba(0, 0, 0, 0.02);
  
  --lx-border-subtle: #E2E8F0;
  --lx-border-medium: #CBD5E1;
  --lx-border-hover: #D97706;

  --lx-color-surface: #FFFFFF;
  --lx-color-bg: #F8FAFC;
  --lx-color-text: #0F172A;
  --lx-color-text-muted: #64748B;
  --lx-color-border: #E2E8F0;

  --lx-accent-white: #0F172A;
  --lx-shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --lx-shadow-glow: 0 0 20px rgba(217, 119, 6, 0.1);
}

/* Theme Toggle Button */
.lx-theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--lx-bg-elevated);
  border: 1px solid var(--lx-border-subtle);
  color: var(--lx-text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.lx-theme-toggle-btn:hover {
  background: var(--lx-border-medium);
  border-color: var(--lx-border-hover);
  transform: translateY(-1px);
}

[data-theme="dark"] .lx-theme-icon-light { display: inline-block !important; }
[data-theme="dark"] .lx-theme-icon-dark { display: none !important; }
[data-theme="light"] .lx-theme-icon-dark { display: inline-block !important; }
[data-theme="light"] .lx-theme-icon-light { display: none !important; }

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--lx-bg-main);
  color: var(--lx-text-primary);
  transition: background-color 0.25s ease, color 0.25s ease;
}

body {
  font-family: var(--lx-font-body);
  background-color: var(--lx-bg-main);
  color: var(--lx-text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lx-font-heading);
  font-weight: 700;
  color: var(--lx-text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lx-site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--lx-bg-main);
  transition: background-color 0.25s ease;
}

.lx-main-content {
  flex: 1 0 auto;
}

.lx-container {
  width: 100%;
  max-width: var(--lx-container-max);
  margin: 0 auto;
  padding: 0 var(--lx-container-pad);
}

/* ==========================================================================
   KORAUTO LUXURY HEADER & NAVIGATION
   ========================================================================== */

.lx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lx-border-subtle);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.admin-bar .lx-header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar .lx-header {
    top: 46px !important;
  }
}

.lx-header.scrolled {
  background: rgba(8, 8, 8, 0.98);
  border-bottom-color: var(--lx-border-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .lx-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .lx-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  border-bottom-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lx-header .lx-container {
  max-width: 1520px;
  padding: 0 1.5rem;
}

.lx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 80px;
}

/* Logo */
.lx-brand-logo,
.kt-brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  max-height: 42px;
}

.lx-brand-logo img,
.kt-brand-logo img {
  height: 38px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  transition: transform 0.25s ease, filter 0.25s ease;
  display: block;
}

.lx-mobile-drawer-header .kt-brand-logo img,
.lx-mobile-drawer-header .lx-brand-logo img {
  height: 32px !important;
  max-width: 170px !important;
}

.kt-brand-logo:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.kt-brand-logo .kt-logo-light,
.lx-brand-logo .kt-logo-light,
.kt-logo-light {
  display: none !important;
}

.kt-brand-logo .kt-logo-dark,
.lx-brand-logo .kt-logo-dark,
.kt-logo-dark {
  display: block !important;
}

[data-theme="light"] .kt-brand-logo .kt-logo-light,
[data-theme="light"] .lx-brand-logo .kt-logo-light,
[data-theme="light"] .kt-logo-light {
  display: block !important;
}

[data-theme="light"] .kt-brand-logo .kt-logo-dark,
[data-theme="light"] .lx-brand-logo .kt-logo-dark,
[data-theme="light"] .kt-logo-dark {
  display: none !important;
}

.lx-brand-tag {
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--lx-accent-white);
  color: var(--lx-bg-main);
  padding: 2px 7px;
  border-radius: var(--lx-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

[data-theme="light"] .lx-brand-tag {
  background: #0f172a;
  color: #ffffff;
}

/* Nav Menu */
.lx-main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.lx-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.lx-nav-menu li {
  white-space: nowrap;
  flex-shrink: 0;
}

.lx-nav-menu a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lx-text-secondary);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  display: block;
}

.lx-nav-menu a:hover,
.lx-nav-menu .current-menu-item > a {
  color: var(--lx-text-white);
}

.lx-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lx-accent-white);
  transition: width 0.2s ease;
  border-radius: 2px;
}

.lx-nav-menu a:hover::after,
.lx-nav-menu .current-menu-item > a::after {
  width: 100%;
}

/* Header Utilities */
.lx-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lx-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lx-text-primary);
  background: var(--lx-bg-elevated);
  padding: 5px 12px;
  border-radius: var(--lx-radius-pill);
  border: 1px solid var(--lx-border-medium);
  white-space: nowrap;
}

.lx-phone-badge:hover {
  border-color: var(--lx-text-primary);
}

@media (max-width: 1380px) {
  .lx-phone-badge {
    display: none;
  }
  .lx-nav-menu {
    gap: 1rem;
  }
  .lx-nav-menu a {
    font-size: 0.84rem;
  }
}

/* Buttons */
.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--lx-font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--lx-radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lx-btn-primary {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%) !important;
  color: #070A0F !important;
  font-weight: 800 !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
}

.lx-btn-primary:hover {
  background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 50%, #F59E0B 100%) !important;
  color: #070A0F !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
}

[data-theme="light"] .lx-btn-primary {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3) !important;
}

[data-theme="light"] .lx-btn-primary:hover {
  background: linear-gradient(135deg, #B45309 0%, #92400E 100%) !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4) !important;
}

.lx-btn-secondary {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  color: #F8FAFC;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.lx-btn-secondary:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: #F59E0B;
  color: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.lx-btn-outline {
  background-color: transparent;
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lx-btn-outline:hover {
  border-color: rgba(245, 158, 11, 0.6);
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.lx-btn-whatsapp {
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  color: #F59E0B !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
}

.lx-btn-whatsapp:hover {
  background: rgba(245, 158, 11, 0.18) !important;
  border-color: #FBBF24 !important;
  color: #FBBF24 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3) !important;
}

.lx-btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.lx-btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

/* Mobile Toggle & Drawer */
.lx-mobile-toggle {
  display: none;
  background: var(--lx-bg-elevated);
  border: 1px solid var(--lx-border-subtle);
  color: var(--lx-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--lx-radius-md);
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lx-mobile-toggle:hover {
  background: var(--lx-border-medium);
}

[data-theme="light"] .lx-mobile-toggle {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .lx-mobile-toggle:hover {
  background: #e2e8f0;
}

.lx-mobile-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  background: var(--lx-bg-surface);
  z-index: 2000;
  padding: 1.5rem 1.25rem 2.5rem;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.9);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--lx-border-subtle);
  overflow-y: auto;
}

body.admin-bar .lx-mobile-drawer {
  top: 32px;
  height: calc(100vh - 32px);
}

@media (max-width: 782px) {
  body.admin-bar .lx-mobile-drawer {
    top: 46px;
    height: calc(100vh - 46px);
  }
}

[data-theme="light"] .lx-mobile-drawer {
  background: #ffffff;
  border-left-color: #e2e8f0;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.1);
}

.lx-mobile-drawer.is-active {
  right: 0;
}

.lx-mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lx-mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.lx-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .lx-mobile-drawer-header {
  border-bottom-color: #e2e8f0;
}

.lx-mobile-util-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: var(--lx-radius-lg);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

[data-theme="light"] .lx-mobile-util-bar {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.lx-mobile-util-item {
  display: inline-flex;
  align-items: center;
}

.lx-mobile-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--lx-text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.lx-mobile-close:hover {
  color: var(--lx-text-white);
}

[data-theme="light"] .lx-mobile-close {
  color: #64748b;
}

[data-theme="light"] .lx-mobile-close:hover {
  color: #0f172a;
}

.lx-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lx-mobile-menu a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lx-text-primary);
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--lx-radius-md);
  transition: all 0.2s ease;
}

.lx-mobile-menu a:hover,
.lx-mobile-menu .current-menu-item > a {
  background: var(--lx-bg-elevated);
  color: var(--lx-text-white);
}

[data-theme="light"] .lx-mobile-menu a {
  color: #334155;
}

[data-theme="light"] .lx-mobile-menu a:hover,
[data-theme="light"] .lx-mobile-menu .current-menu-item > a {
  background: #f1f5f9;
  color: #0f172a;
}

/* ==========================================================================
   VEHICLE CARDS (KORAUTO DARK LUXURY STYLE)
   ========================================================================== */

.lx-vehicle-card {
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: var(--lx-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.lx-vehicle-card:hover {
  transform: translateY(-5px);
  border-color: var(--lx-border-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.05);
}

.lx-vehicle-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000000;
}

.lx-vehicle-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lx-vehicle-card:hover .lx-vehicle-card-thumb img {
  transform: scale(1.06);
}

.lx-vehicle-badge-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
  flex-wrap: wrap;
}

.lx-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--lx-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lx-badge-success {
  background: rgba(245, 158, 11, 0.12);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.lx-badge-encar {
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.lx-badge-stock {
  background: rgba(59, 130, 246, 0.15);
  color: #93C5FD;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.lx-badge-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.45);
}

.lx-vehicle-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lx-vehicle-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lx-text-white);
  line-height: 1.3;
}

.lx-vehicle-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--lx-text-secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--lx-border-subtle);
}

.lx-vehicle-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lx-vehicle-card-price-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}

.lx-vehicle-price-main {
  font-family: var(--lx-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--lx-text-white);
  line-height: 1;
}

.lx-vehicle-price-label {
  font-size: 0.72rem;
  color: var(--lx-text-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* ==========================================================================
   DYNAMIC CUSTOMS & LOAN CALCULATOR MODAL (KORAUTO-STYLE)
   ========================================================================== */

.lx-calc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lx-calc-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lx-calc-modal {
  background: var(--lx-bg-surface);
  border: 1px solid var(--lx-border-medium);
  border-radius: var(--lx-radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  padding: 2rem;
  position: relative;
}

[data-theme="light"] .lx-calc-modal {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.lx-calc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lx-border-subtle);
}

.lx-calc-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--lx-bg-main);
  padding: 4px;
  border-radius: var(--lx-radius-pill);
  border: 1px solid var(--lx-border-subtle);
  margin-bottom: 1.5rem;
}

.lx-calc-tab-btn {
  flex: 1;
  padding: 8px 16px;
  background: transparent;
  color: var(--lx-text-secondary);
  border: none;
  border-radius: var(--lx-radius-pill);
  font-family: var(--lx-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lx-calc-tab-btn.is-active {
  background: var(--lx-accent-white);
  color: var(--lx-bg-main);
}

[data-theme="light"] .lx-calc-tab-btn.is-active {
  background: #0f172a;
  color: #ffffff;
}

.lx-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lx-border-subtle);
  font-size: 0.95rem;
}

.lx-calc-total-box {
  background: var(--lx-bg-elevated);
  padding: 1.25rem;
  border-radius: var(--lx-radius-lg);
  border: 1px solid var(--lx-border-medium);
  margin-top: 1.5rem;
}

/* ==========================================================================
   FOOTER (KORAUTO DARK & LIGHT AESTHETICS)
   ========================================================================== */

.lx-footer {
  background: #040404;
  border-top: 1px solid var(--lx-border-subtle);
  padding: 5rem 0 2rem;
  margin-top: auto;
  color: var(--lx-text-secondary);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

[data-theme="light"] .lx-footer {
  background: #f8fafc;
  border-top-color: #e2e8f0;
  color: #475569;
}

.lx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.lx-footer-brand h3,
.lx-footer-brand-title {
  font-family: var(--lx-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lx-text-white);
  letter-spacing: -0.02em;
}

.lx-footer-logo-svg {
  color: var(--lx-text-white);
}

[data-theme="light"] .lx-footer-brand-title,
[data-theme="light"] .lx-footer-logo-svg {
  color: #0f172a;
}

.lx-footer-brand-desc {
  color: var(--lx-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

[data-theme="light"] .lx-footer-brand-desc {
  color: #64748b;
}

.lx-footer-column h4 {
  color: var(--lx-text-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: var(--lx-font-heading);
  font-weight: 700;
}

[data-theme="light"] .lx-footer-column h4 {
  color: #0f172a;
}

.lx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lx-footer-links a {
  color: var(--lx-text-secondary);
  transition: all 0.2s ease;
}

.lx-footer-links a:hover {
  color: var(--lx-text-white);
  transform: translateX(4px);
}

[data-theme="light"] .lx-footer-links a {
  color: #475569;
}

[data-theme="light"] .lx-footer-links a:hover {
  color: #0f172a;
}

.lx-footer-contact-link {
  color: var(--lx-text-white);
  font-weight: 700;
  transition: color 0.2s ease;
}

.lx-footer-contact-link:hover {
  color: var(--lx-accent-blue);
}

[data-theme="light"] .lx-footer-contact-link {
  color: #0f172a;
}

[data-theme="light"] .lx-footer-contact-link:hover {
  color: #2563eb;
}

.lx-footer-contact-text {
  color: var(--lx-text-primary);
}

[data-theme="light"] .lx-footer-contact-text {
  color: #334155;
}

.lx-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--lx-border-subtle);
  font-size: 0.88rem;
  color: var(--lx-text-muted);
}

.lx-footer-bottom a {
  color: var(--lx-text-muted);
  transition: color 0.2s ease;
}

.lx-footer-bottom a:hover {
  color: var(--lx-text-white);
}

[data-theme="light"] .lx-footer-bottom {
  border-top-color: #e2e8f0;
  color: #64748b;
}

[data-theme="light"] .lx-footer-bottom a {
  color: #64748b;
}

[data-theme="light"] .lx-footer-bottom a:hover {
  color: #0f172a;
}

/* Sticky Mobile Quick Action Bar */
.lx-mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--lx-border-subtle);
  z-index: 1200;
}

[data-theme="light"] .lx-mobile-action-bar {
  background: rgba(255, 255, 255, 0.95);
  border-top-color: #e2e8f0;
}

/* Bilingual Language Switcher */
.k-lang-switcher {
  display: inline-flex;
  align-items: center;
}
.k-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lx-bg-elevated);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lx-text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}
.k-lang-btn:hover {
  background: var(--lx-border-medium);
  border-color: var(--lx-border-hover);
  transform: translateY(-1px);
}
.k-lang-flag,
.k-curr-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.k-flag-svg {
  width: 17px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
[data-theme="light"] .k-flag-svg {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.k-lang-code {
  color: var(--lx-text-primary);
}
.k-lang-divider {
  color: var(--lx-text-muted);
  font-size: 0.75rem;
}
.k-lang-target {
  color: var(--lx-text-secondary);
  font-weight: 500;
}

/* Multi-Currency Switcher Dropdown */
.k-curr-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.k-curr-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--lx-bg-elevated);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lx-text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}
.k-curr-btn:hover {
  background: var(--lx-border-medium);
  border-color: var(--lx-border-hover);
}
.k-curr-arrow {
  font-size: 0.65rem;
  color: var(--lx-text-muted);
  transition: transform 0.2s ease;
}
.k-curr-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 12px;
  padding: 6px;
  min-width: 165px;
  box-shadow: var(--lx-shadow-card);
  z-index: 2000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.k-curr-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 18px;
  width: 9px;
  height: 9px;
  background: var(--lx-bg-card);
  border-top: 1px solid var(--lx-border-subtle);
  border-left: 1px solid var(--lx-border-subtle);
  transform: rotate(45deg);
}
.k-curr-switcher:hover .k-curr-dropdown,
.k-curr-switcher:focus-within .k-curr-dropdown,
.k-curr-switcher.is-open .k-curr-dropdown {
  display: block;
}
.k-curr-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--lx-text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.k-curr-option:hover {
  background: var(--lx-bg-elevated);
  color: var(--lx-text-primary);
}
.k-curr-option.is-active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--lx-accent-blue);
}
.k-curr-option .code {
  font-weight: 700;
}
.k-curr-option .sym {
  color: var(--lx-text-muted);
  font-size: 0.78rem;
}
.k-curr-option .name {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--lx-text-muted);
}

[data-theme="light"] .k-lang-btn,
[data-theme="light"] .k-curr-btn {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .k-lang-btn:hover,
[data-theme="light"] .k-curr-btn:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
}

[data-theme="light"] .k-curr-dropdown {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .k-curr-dropdown::before {
  background: #ffffff;
  border-top-color: #e2e8f0;
  border-left-color: #e2e8f0;
}

[data-theme="light"] .k-curr-option {
  color: #475569;
}

[data-theme="light"] .k-curr-option:hover {
  background: #f1f5f9;
  color: #0f172a;
}

[data-theme="light"] .k-curr-option.is-active {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

/* ==========================================================================
   KT AUTOMOTIVE LUXURY HERO & COMPONENT LAYOUTS
   ========================================================================== */

.lx-section {
  padding: 5rem 0;
}

.kt-hero-section,
.lx-hero-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 6.5rem 0 4.5rem;
  border-bottom: 1px solid var(--lx-border-subtle);
}

.kt-hero-watermark {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(2.5rem, 11vw, 11rem);
  font-weight: 900;
  font-family: var(--lx-font-heading);
  color: rgba(245, 158, 11, 0.03);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  letter-spacing: 0.12em;
  z-index: 1;
}

@media (max-width: 768px) {
  .kt-hero-watermark {
    display: none !important;
  }
}

.kt-hero-glow-left {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.kt-hero-glow-right {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.kt-hero-container {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 7px 20px;
  border-radius: var(--lx-radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

[data-theme="light"] .kt-hero-badge {
  background: rgba(15, 23, 42, 0.88);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.kt-badge-dot {
  width: 8px;
  height: 8px;
  background: #F59E0B;
  border-radius: 50%;
  box-shadow: 0 0 10px #F59E0B;
  display: inline-block;
}

.kt-badge-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: #F8FAFC !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[data-theme="light"] .kt-badge-text {
  color: #F8FAFC !important;
}

.kt-hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.kt-hero-title-main {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--lx-text-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.kt-hero-subtitle-sub {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FFB800 0%, #F59E0B 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.kt-hero-desc {
  font-size: 1.05rem;
  color: var(--lx-text-secondary);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.kt-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.kt-btn-glow {
  background: linear-gradient(135deg, #FFB800 0%, #D97706 100%) !important;
  color: #0B0F17 !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.45) !important;
  transition: all 0.25s ease !important;
}

.kt-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6) !important;
}

.kt-hero-filter-card {
  background: rgba(21, 29, 44, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--lx-radius-xl);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55), 0 0 25px rgba(245, 158, 11, 0.1);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

[data-theme="light"] .kt-hero-filter-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 119, 6, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.kt-search-pill-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 6px 8px 6px 16px;
  background: var(--lx-bg-input);
  border: 1px solid var(--lx-border-subtle);
  border-radius: var(--lx-radius-pill);
  margin-bottom: 1.25rem;
}

.kt-pill-ai-tag {
  font-size: 0.72rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFB800 0%, #D97706 100%);
  color: #0B0F17;
  padding: 4px 10px;
  border-radius: var(--lx-radius-pill);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.kt-search-pill-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--lx-text-primary);
  font-size: 0.95rem;
  outline: none;
}

.kt-search-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lx-bg-elevated);
  border: 1px solid var(--lx-border-subtle);
  color: var(--lx-text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--lx-radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.kt-search-pill-btn:hover {
  background: #F59E0B;
  color: #0B0F17;
  border-color: #F59E0B;
}

.kt-filter-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 180px;
  gap: 1rem;
  align-items: flex-end;
}

.kt-filter-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--lx-text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  text-align: left;
}

.kt-filter-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--lx-bg-input);
  border: 1px solid var(--lx-border-subtle);
  color: var(--lx-text-primary);
  border-radius: 12px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.kt-filter-select:focus {
  border-color: #F59E0B;
}

.kt-filter-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFB800 0%, #D97706 100%);
  color: #0B0F17;
  font-family: var(--lx-font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  transition: all 0.25s ease;
}

.kt-filter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.kt-hero-stats-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lx-radius-pill);
  padding: 0.85rem 2rem;
  gap: 1.5rem;
}

[data-theme="light"] .kt-hero-stats-ribbon {
  background: rgba(255, 255, 255, 0.85);
  border-color: #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.kt-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kt-stat-num {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: var(--lx-font-heading);
  color: #FBBF24;
}

[data-theme="light"] .kt-stat-num {
  color: #D97706;
}

.kt-stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lx-text-secondary);
}

.kt-stat-divider {
  width: 1px;
  height: 24px;
  background: var(--lx-border-subtle);
}

.lx-hero-search-card {
  padding: 1.75rem 2rem;
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: var(--lx-radius-xl);
  box-shadow: var(--lx-shadow-card);
}

.lx-hero-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 180px;
  gap: 1rem;
  align-items: flex-end;
}

.lx-stats-bar-section {
  padding: 2.25rem 0;
  background: var(--lx-bg-main);
  border-top: 1px solid var(--lx-border-subtle);
  border-bottom: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .lx-stats-bar-section {
  background: #ffffff;
  border-top-color: #e2e8f0;
  border-bottom-color: #e2e8f0;
}

.lx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.lx-stat-item {
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--lx-border-subtle);
}

.lx-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--lx-font-heading);
  color: var(--lx-text-white);
}

.lx-stat-label {
  font-size: 0.85rem;
  color: var(--lx-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

.lx-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.lx-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.lx-feature-card {
  background: var(--lx-bg-card);
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--lx-border-subtle);
  transition: all 0.3s ease;
}

.lx-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--lx-border-hover);
  box-shadow: var(--lx-shadow-card);
}

/* Enhanced Luxury 6-Step Roadmap (2 Lines / 3 Columns with Deep Glassmorphism) */
.lx-roadmap-section {
  background: var(--lx-bg-main);
  border-bottom: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .lx-roadmap-section {
  background: #f8fafc;
  border-bottom-color: #e2e8f0;
}

.lx-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  .lx-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .lx-roadmap-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.lx-roadmap-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%), var(--lx-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.25rem 1.85rem;
  border-radius: 24px;
  border: 1px solid var(--lx-border-subtle);
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15), 0 20px 45px -15px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.lx-roadmap-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), rgba(56, 189, 248, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lx-roadmap-item:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: inset 0 1px 2px 0 rgba(255, 255, 255, 0.25), 0 25px 50px -10px rgba(0, 0, 0, 0.9), 0 0 35px rgba(59, 130, 246, 0.2);
}

.lx-roadmap-item:hover::before {
  opacity: 1;
}

.lx-roadmap-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.lx-roadmap-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.lx-roadmap-item:hover .lx-roadmap-icon-box {
  transform: scale(1.1) rotate(3deg);
  border-color: rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.08) 100%);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
}

.lx-roadmap-step-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 5px 12px;
  border-radius: 9999px;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.15);
}

.lx-roadmap-step-badge-highlight {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 2px 10px rgba(52, 211, 153, 0.15);
}

.lx-roadmap-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--lx-text-white);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  font-family: var(--lx-font-heading);
  letter-spacing: -0.02em;
}

.lx-roadmap-desc {
  font-size: 0.92rem;
  color: var(--lx-text-muted);
  line-height: 1.7;
  margin-top: auto;
}

[data-theme="light"] .lx-roadmap-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .lx-roadmap-title {
  color: #0f172a;
}

[data-theme="light"] .lx-roadmap-desc {
  color: #64748b;
}

[data-theme="light"] .lx-roadmap-icon-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Calculator Section */
.lx-calc-section {
  background: var(--lx-bg-main);
  border-bottom: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .lx-calc-section {
  background: #ffffff;
  border-bottom-color: #e2e8f0;
}

.lx-home-calc-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--lx-bg-card);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--lx-border-subtle);
  box-shadow: var(--lx-shadow-card);
}

[data-theme="light"] .lx-home-calc-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.lx-home-calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.lx-testimonials-section {
  padding: 5.5rem 0;
  background: var(--lx-bg-main);
  border-bottom: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .lx-testimonials-section {
  background: #f8fafc;
  border-bottom-color: #e2e8f0;
}

.lx-testimonial-card {
  background: var(--lx-bg-card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--lx-border-subtle);
  transition: all 0.3s ease;
}

[data-theme="light"] .lx-testimonial-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.lx-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--lx-border-hover);
  box-shadow: var(--lx-shadow-card);
}

/* CTA Banner Section */
.lx-cta-banner-section {
  padding: 5rem 0;
  background: radial-gradient(circle at 50% 50%, #1e1e1e 0%, #0a0a0a 100%);
  border-top: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .lx-cta-banner-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-top-color: #e2e8f0;
}

/* ==========================================================================
   TABLET & MOBILE COMPACT SCALING (TYPOGRAPHY, BUTTONS, IMAGES, CARDS)
   ========================================================================== */

/* Laptop / Desktop Intermediate Scaling (1201px - 1440px) */
@media (max-width: 1440px) {
  .lx-phone-badge {
    display: none !important;
  }
  .lx-nav-menu {
    gap: 0.85rem !important;
  }
  .lx-nav-menu a {
    font-size: 0.84rem !important;
    padding: 4px 1px !important;
  }
  .lx-header-actions {
    gap: 0.45rem !important;
  }
  .lx-btn-whatsapp {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.82rem !important;
  }
}

/* Tablet & Compact Laptop Scaling (<= 1200px) */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  .lx-header-inner {
    height: 70px;
    gap: 0.75rem;
  }
  .lx-main-navigation {
    display: none !important;
  }
  .lx-header-actions .k-lang-switcher,
  .lx-header-actions .k-curr-switcher,
  .lx-header-actions .lx-phone-badge,
  .lx-header-actions .lx-btn-whatsapp {
    display: none !important;
  }
  .lx-header-actions .lx-theme-mode-toggle {
    display: inline-flex !important;
  }
  .lx-header-actions .lx-mobile-toggle,
  .lx-mobile-toggle {
    display: inline-flex !important;
  }
  .lx-section {
    padding: 3.5rem 0;
  }
  .lx-hero-section {
    padding: 3.5rem 0 2.5rem;
  }
  .lx-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.88rem;
  }
  .lx-btn-lg {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
  }
  .lx-vehicle-card-thumb {
    max-height: 210px;
  }
  .lx-hero-filter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
  .lx-hero-filter-grid button[type="submit"] {
    grid-column: 1 / -1 !important;
    height: 46px !important;
    font-size: 0.92rem !important;
  }
  .lx-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .lx-stat-item:nth-child(2) {
    border-right: none;
  }
  .lx-stat-num {
    font-size: 1.85rem;
  }
  .lx-stat-label {
    font-size: 0.78rem;
  }
  .lx-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
  .lx-roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Mobile Scaling (<= 768px) */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  :root {
    --lx-container-pad: 1rem;
  }
  .lx-header .lx-container {
    padding: 0 1rem;
  }
  .lx-header-inner {
    height: 64px;
    gap: 0.5rem;
  }
  .lx-brand-logo {
    font-size: 1.18rem;
    gap: 6px;
  }
  .lx-brand-logo svg {
    width: 20px;
    height: 20px;
  }
  .lx-header-actions {
    gap: 0.5rem;
  }
  .lx-header-actions .k-lang-switcher,
  .lx-header-actions .k-curr-switcher,
  .lx-header-actions .lx-btn-whatsapp,
  .lx-header-actions .lx-phone-badge {
    display: none !important;
  }
  .lx-header-actions .lx-theme-mode-toggle {
    display: inline-flex !important;
  }
  .lx-header-actions .lx-mobile-toggle {
    display: inline-flex !important;
  }
  .lx-section {
    padding: 2.5rem 0;
  }
  .lx-hero-section {
    padding: 2.5rem 0 1.75rem;
  }
  .lx-hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.8rem) !important;
    line-height: 1.12 !important;
  }
  .lx-section-title {
    font-size: clamp(1.4rem, 4vw, 1.85rem) !important;
  }
  .lx-hero-btns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 auto 1.5rem auto !important;
  }
  .lx-hero-btns .lx-btn {
    flex: 1 1 auto;
    min-width: 90px;
    padding: 0.5rem 0.9rem !important;
    font-size: 0.82rem !important;
    border-radius: 9999px !important;
  }
  .lx-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.84rem;
    gap: 0.35rem;
  }
  .lx-btn-lg {
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
  }
  .lx-btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }
  .kt-hero-section,
  .lx-hero-section {
    padding: 3rem 0 2rem;
  }
  .kt-hero-title-main {
    font-size: clamp(2rem, 7vw, 2.75rem) !important;
  }
  .kt-hero-subtitle-sub {
    font-size: clamp(1.05rem, 3.5vw, 1.35rem) !important;
  }
  .kt-brand-logo img {
    height: 30px !important;
    max-width: 170px !important;
  }
  .kt-hero-filter-card,
  .lx-hero-search-card {
    padding: 1.15rem 0.9rem;
    border-radius: 16px;
  }
  .kt-search-pill-row,
  .lx-ai-search-row {
    padding: 4px 6px 4px 10px !important;
    margin-bottom: 0.85rem !important;
  }
  .kt-search-pill-row input,
  .lx-ai-search-row input {
    font-size: 0.85rem !important;
  }
  .kt-filter-grid-row,
  .lx-hero-filter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px 8px !important;
  }
  .kt-filter-grid-row select,
  .lx-hero-filter-grid select {
    padding: 0.55rem 0.75rem !important;
    font-size: 0.84rem !important;
    border-radius: 10px !important;
  }
  .kt-filter-action-col {
    grid-column: 1 / -1 !important;
  }
  .kt-filter-submit-btn,
  .lx-hero-filter-grid button[type="submit"] {
    grid-column: 1 / -1 !important;
    height: 46px !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    margin-top: 4px !important;
  }
  .kt-hero-stats-ribbon {
    flex-wrap: wrap !important;
    gap: 0.85rem 1.25rem !important;
    padding: 0.85rem 1.25rem !important;
    border-radius: 16px !important;
  }
  .kt-stat-divider {
    display: none !important;
  }
  .lx-vehicle-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .lx-vehicle-card-thumb {
    max-height: 200px;
    aspect-ratio: 16 / 9;
  }
  .lx-vehicle-card-body {
    padding: 0.9rem 1rem;
  }
  .lx-vehicle-card-title {
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
  }
  .lx-vehicle-card-specs {
    font-size: 0.78rem;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
  }
  .lx-vehicle-price-main {
    font-size: 1.25rem !important;
  }
  .lx-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .lx-features-grid > div {
    padding: 1.35rem 1.15rem !important;
    border-radius: 16px !important;
  }
  .lx-features-grid h3 {
    font-size: 1.08rem !important;
    margin-bottom: 0.4rem !important;
  }
  .lx-features-grid p {
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
  }
  .lx-features-grid > div > div:first-child {
    font-size: 1.65rem !important;
    margin-bottom: 0.65rem !important;
  }
  .lx-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .lx-roadmap-item {
    padding: 1.25rem 0.95rem !important;
    border-radius: 16px !important;
  }
  .lx-roadmap-icon-box {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.15rem !important;
    border-radius: 10px !important;
  }
  .lx-roadmap-step-badge {
    font-size: 0.62rem !important;
    padding: 3px 6px !important;
  }
  .lx-roadmap-title {
    font-size: 0.92rem !important;
    margin-bottom: 0.35rem !important;
  }
  .lx-roadmap-desc {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }
  .lx-home-calc-card {
    padding: 1.25rem 0.9rem;
    border-radius: 16px;
  }
  .lx-home-calc-inputs {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .lx-home-calc-inputs input,
  .lx-home-calc-inputs select {
    padding: 0.6rem 0.75rem !important;
    font-size: 0.86rem !important;
    border-radius: 10px !important;
  }
  .lx-home-calc-inputs label {
    font-size: 0.74rem !important;
    margin-bottom: 0.25rem !important;
  }
  .lx-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .lx-footer {
    padding: 3rem 0 1.5rem;
  }
  .lx-footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
  }
  .lx-footer-column h4 {
    font-size: 0.98rem;
    margin-bottom: 0.85rem;
  }
  .lx-footer-links {
    gap: 0.5rem;
    font-size: 0.84rem;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  html {
    font-size: 13.5px;
  }
  :root {
    --lx-container-pad: 0.85rem;
  }
  .lx-stats-bar-section {
    padding: 1.25rem 0;
  }
  .lx-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .lx-stat-item {
    padding: 0.4rem 0.2rem;
    border-right: none !important;
  }
  .lx-stat-num {
    font-size: 1.45rem;
  }
  .lx-stat-label {
    font-size: 0.68rem;
  }
  .lx-roadmap-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .lx-hero-btns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100%;
    margin: 0 auto 1.25rem auto !important;
    gap: 6px !important;
  }
  .lx-hero-btns .lx-btn {
    flex: 1 1 auto;
    min-width: 80px;
    padding: 0.45rem 0.75rem !important;
    font-size: 0.8rem !important;
  }
  .lx-vehicle-card-thumb {
    max-height: 185px;
  }
}

/* ==========================================================================
   KT AUTOMOTIVE (GLOBAL & CLASSIC) BESPOKE LUXURY ARCHITECTURE
   ========================================================================== */

/* Section Headers */
.kt-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.kt-subheading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 14px;
  border-radius: var(--lx-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.kt-section-title {
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--lx-text-white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}

.kt-section-desc {
  font-size: 1.05rem;
  color: var(--lx-text-secondary);
  line-height: 1.65;
}

/* 1. Asymmetric Split Hero with Animated Luxury Slideshow */
.kt-hero-split-section {
  position: relative;
  padding: 6.5rem 0 5.5rem;
  border-bottom: 1px solid var(--lx-border-subtle);
  overflow: hidden;
  background-color: #06090F;
  min-height: 82vh;
  display: flex;
  align-items: center;
}

/* Background Carousel Slides */
.kt-hero-bg-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.kt-hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: var(--slide-desktop);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.0);
  transition: opacity 1.8s ease-in-out, transform 8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.kt-hero-bg-slide.active {
  opacity: 1;
  transform: scale(1.06);
  z-index: 2;
}

/* Reduced Opacity Dark Gradient Overlay for high car visibility and sharp contrast */
.kt-hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, 
    rgba(6, 9, 15, 0.25) 0%, 
    rgba(6, 9, 15, 0.15) 30%, 
    rgba(6, 9, 15, 0.55) 75%, 
    var(--lx-bg-main, #0B0F17) 100%
  );
  pointer-events: none;
}

.kt-hero-split-section .lx-container {
  position: relative;
  z-index: 4;
}

/* Dedicated Mobile View Optimization */
@media (max-width: 768px) {
  .kt-hero-split-section {
    padding: 4.25rem 0 3.25rem;
    min-height: 80vh;
  }
  .kt-hero-bg-slide {
    background-image: var(--slide-mobile);
    background-position: center top;
    background-size: cover;
  }
  .kt-hero-bg-overlay {
    background: linear-gradient(180deg, 
      rgba(6, 9, 15, 0.18) 0%, 
      rgba(6, 9, 15, 0.12) 35%, 
      rgba(6, 9, 15, 0.60) 80%, 
      var(--lx-bg-main, #0B0F17) 100%
    );
  }
}

.kt-hero-split-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.kt-hero-content-col {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kt-hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 1.25rem 0 1.25rem 0;
}

.kt-hero-headline-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #F59E0B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.kt-hero-headline-main {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 45%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.85));
}

.kt-hero-content-col .kt-hero-desc {
  margin: 0 auto 2rem auto;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.7;
  max-width: 680px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.kt-hero-content-col .kt-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.25rem;
  gap: 0.85rem;
}

.kt-hero-content-col .kt-hero-actions .lx-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--lx-radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.kt-hero-content-col .kt-hero-actions .lx-btn-secondary,
.kt-hero-content-col .kt-hero-actions .lx-btn-outline {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.kt-hero-content-col .kt-hero-actions .lx-btn-secondary:hover,
.kt-hero-content-col .kt-hero-actions .lx-btn-outline:hover {
  background: rgba(245, 158, 11, 0.2) !important;
  border-color: #F59E0B !important;
  color: #F59E0B !important;
}

/* Hero Search Glass Card */
.kt-hero-search-glass {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(245, 158, 11, 0.12);
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

[data-theme="light"] .kt-hero-search-glass {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .kt-search-input-wrap {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
}

[data-theme="light"] .kt-search-input {
  color: #0F172A;
}

[data-theme="light"] .kt-search-input::placeholder {
  color: #64748B;
}

[data-theme="light"] .kt-filter-select {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #0F172A;
}

.kt-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--lx-bg-input);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 9999px;
  padding: 5px 6px 5px 16px;
  margin-bottom: 0.85rem;
  transition: border-color 0.2s ease;
}

.kt-search-input-wrap:focus-within {
  border-color: #F59E0B;
}

.kt-search-icon {
  color: #F59E0B;
  flex-shrink: 0;
}

.kt-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--lx-text-primary);
  font-size: 0.92rem;
  outline: none;
}

.kt-search-filters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.kt-select-wrapper {
  position: relative;
}

.kt-select-wrapper::after {
  content: '▼';
  font-size: 0.65rem;
  color: #F59E0B;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.kt-filter-select {
  width: 100%;
  padding: 0.7rem 1.75rem 0.7rem 0.9rem;
  background: var(--lx-bg-input);
  border: 1px solid var(--lx-border-subtle);
  color: var(--lx-text-primary);
  border-radius: 12px;
  font-size: 0.88rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kt-filter-select:focus {
  border-color: #F59E0B;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

/* Hero Stage Card */
.kt-stage-card {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 158, 11, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kt-stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.9), 0 0 45px rgba(245, 158, 11, 0.25);
}

[data-theme="light"] .kt-stage-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.kt-stage-badge-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.35rem;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--lx-border-subtle);
  font-size: 0.75rem;
  font-weight: 800;
}

.kt-badge-live {
  color: #FBBF24;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.kt-badge-grade {
  color: #F59E0B;
  letter-spacing: 0.08em;
}

.kt-stage-image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.kt-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.kt-stage-card:hover .kt-stage-img {
  transform: scale(1.05);
}

.kt-stage-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.98) 100%);
}

.kt-stage-info {
  padding: 1.65rem 1.5rem;
}

.kt-stage-tagline {
  font-size: 0.72rem;
  font-weight: 800;
  color: #F59E0B;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.kt-stage-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--lx-text-white);
  margin-bottom: 0.5rem;
}

.kt-stage-text {
  font-size: 0.88rem;
  color: var(--lx-text-secondary);
  line-height: 1.55;
  margin-bottom: 1.35rem;
}

.kt-stage-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.kt-stage-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lx-bg-input);
  border: 1px solid var(--lx-border-subtle);
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lx-text-primary);
}

/* 2. Category Vault */
.kt-category-vault-section {
  padding: 5.5rem 0;
  background: var(--lx-bg-main);
  border-bottom: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .kt-category-vault-section {
  background: #F8FAFC;
}

.kt-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.kt-category-card {
  position: relative;
  background: linear-gradient(145deg, #111827 0%, #0d1527 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.kt-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(245, 158, 11, 0.2);
}

[data-theme="light"] .kt-category-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 20px rgba(217, 119, 6, 0.15);
}

.kt-cat-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #FBBF24;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 3px 9px;
  border-radius: 9999px;
  letter-spacing: 0.08em;
}

.kt-cat-icon-svg {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(217, 119, 6, 0.06) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  margin-bottom: 1.35rem;
  transition: all 0.3s ease;
}

.kt-category-card:hover .kt-cat-icon-svg {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.28) 0%, rgba(217, 119, 6, 0.15) 100%);
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  transform: scale(1.08);
}

.kt-cat-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.kt-cat-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.5rem;
}

.kt-cat-footer {
  display: flex;
  align-items: center;
}

.kt-cat-link-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: #F59E0B;
  transition: transform 0.2s ease;
}

.kt-category-card:hover .kt-cat-link-text {
  transform: translateX(5px);
}

/* 3. White Glove Journey Timeline */
.kt-journey-section {
  padding: 5.5rem 0;
  background: var(--lx-bg-elevated);
  border-bottom: 1px solid var(--lx-border-subtle);
}

.kt-journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.kt-journey-step {
  position: relative;
  background: linear-gradient(145deg, #111827 0%, #0d1527 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.kt-journey-step:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(245, 158, 11, 0.1);
}

.kt-step-num-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--lx-font-heading);
  color: rgba(245, 158, 11, 0.45);
}

.kt-step-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(217, 119, 6, 0.06) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 16px;
  margin-bottom: 1.35rem;
}

.kt-step-title {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--lx-text-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.kt-step-desc {
  font-size: 0.88rem;
  color: var(--lx-text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.35rem;
}

.kt-step-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lx-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* 4. Showroom Grid Header */
.kt-showroom-section {
  padding: 5.5rem 0;
  background: var(--lx-bg-main);
  border-bottom: 1px solid var(--lx-border-subtle);
}

.kt-showroom-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* 5. Dual Concierge Studio */
.kt-dual-studio-section {
  padding: 5.5rem 0;
  background: var(--lx-bg-elevated);
  border-bottom: 1px solid var(--lx-border-subtle);
}

.kt-dual-studio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.kt-studio-card {
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.kt-studio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
}

.kt-studio-hunter {
  border-top: 3px solid #F59E0B;
}

.kt-studio-tradein {
  border-top: 3px solid #3B82F6;
}

.kt-studio-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #F59E0B;
  margin-bottom: 0.75rem;
}

.kt-studio-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--lx-text-white);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.kt-studio-desc {
  font-size: 0.95rem;
  color: var(--lx-text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.kt-studio-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  flex: 1;
}

.kt-sf-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lx-text-primary);
}

/* 6. Trust Matrix */
.kt-trust-matrix-section {
  padding: 4.5rem 0;
  background: var(--lx-bg-main);
  border-bottom: 1px solid var(--lx-border-subtle);
}

.kt-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.kt-trust-item {
  text-align: left;
}

.kt-trust-icon-box {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 16px;
  margin-bottom: 1rem;
}

.kt-trust-heading {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--lx-text-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.kt-trust-text {
  font-size: 0.86rem;
  color: var(--lx-text-muted);
  line-height: 1.55;
}

/* 7. Concierge CTA Card */
.kt-concierge-cta-section {
  padding: 5rem 0;
  background: var(--lx-bg-main);
}

.kt-concierge-cta-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(8, 12, 19, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 28px;
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(245, 158, 11, 0.15);
}

[data-theme="light"] .kt-concierge-cta-card {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.kt-badge-gold {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #F59E0B;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

.kt-concierge-title {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  font-weight: 900;
  color: var(--lx-text-white);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.kt-concierge-desc {
  font-size: 1rem;
  color: var(--lx-text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.kt-concierge-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
  min-width: 240px;
}

/* Responsive Overrides for KT Architecture */
@media (max-width: 1024px) {
  .kt-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .kt-hero-content-col {
    text-align: center;
  }
  .kt-hero-content-col .kt-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .kt-hero-content-col .kt-hero-actions {
    justify-content: center;
  }
  .kt-categories-grid,
  .kt-journey-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .kt-dual-studio-grid {
    grid-template-columns: 1fr;
  }
  .kt-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kt-concierge-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.75rem;
  }
  .kt-concierge-desc {
    margin: 0 auto;
  }
  .kt-concierge-cta-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .kt-categories-grid,
  .kt-journey-timeline,
  .kt-trust-grid {
    grid-template-columns: 1fr;
  }
  .kt-search-filters-row {
    grid-template-columns: 1fr;
  }
  .kt-studio-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   KT AUTOMOTIVE VEHICLE COMPARISON SUITE
   ========================================================================== */

/* Floating Comparison Dock */
.lx-compare-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: calc(100% - 32px);
  max-width: 860px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.lx-compare-dock.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lx-compare-dock-inner {
  background: rgba(11, 15, 23, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 24px;
  padding: 12px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

[data-theme="light"] .lx-compare-dock-inner {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(217, 119, 6, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 0 25px rgba(217, 119, 6, 0.15);
}

.lx-compare-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lx-compare-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-compare-title {
  font-family: var(--lx-font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--lx-text-white);
  line-height: 1.2;
}

.lx-compare-counter {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FBBF24;
  letter-spacing: 0.04em;
}

.lx-compare-slots {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.lx-compare-slot {
  position: relative;
  width: 58px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.lx-compare-slot.filled {
  border: 1px solid rgba(245, 158, 11, 0.5);
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.lx-compare-slot.empty {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-empty-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lx-text-muted);
}

.slot-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.lx-compare-slot:hover .slot-remove-btn {
  opacity: 1;
}

.slot-remove-btn:hover {
  background: #EF4444;
  border-color: #EF4444;
}

.lx-compare-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lx-compare-clear-btn {
  background: none;
  border: none;
  color: var(--lx-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.lx-compare-clear-btn:hover {
  color: #EF4444;
}

/* Compare Button on Vehicle Cards */
.lx-card-compare-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(11, 15, 23, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #F3F4F6;
  font-family: var(--lx-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lx-card-compare-btn:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: #F59E0B;
  color: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.lx-card-compare-btn.is-active {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%) !important;
  border-color: #F59E0B !important;
  color: #070A0F !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.45) !important;
}

/* Compare Page Matrix Styles */
.lx-compare-page-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lx-compare-page-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--lx-text-white);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.2;
}

.lx-compare-page-subtitle {
  color: var(--lx-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lx-compare-matrix-card {
  background: var(--lx-bg-card);
  border-radius: 28px;
  border: 1px solid var(--lx-border-subtle);
  overflow: hidden;
  box-shadow: var(--lx-shadow-card);
}

.lx-compare-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lx-compare-matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.lx-compare-matrix-table th,
.lx-compare-matrix-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--lx-border-subtle);
  border-right: 1px solid var(--lx-border-subtle);
  vertical-align: middle;
}

.lx-compare-matrix-table th:last-child,
.lx-compare-matrix-table td:last-child {
  border-right: none;
}

.lx-compare-matrix-table .col-spec-label,
.lx-compare-matrix-table .spec-name {
  text-align: left;
  font-weight: 700;
  color: var(--lx-text-primary);
  width: 240px;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.2);
}

.spec-legend-title {
  font-family: var(--lx-font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lx-text-white);
  margin-bottom: 0.5rem;
}

.lx-btn-clear-matrix {
  background: none;
  border: 1px solid var(--lx-border-medium);
  border-radius: 6px;
  color: var(--lx-text-muted);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.lx-btn-clear-matrix:hover {
  border-color: #EF4444;
  color: #EF4444;
}

.matrix-card-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}

.matrix-remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.matrix-remove-btn:hover {
  background: #EF4444;
  color: #fff;
  transform: scale(1.1);
}

.matrix-thumb-wrap {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid var(--lx-border-subtle);
}

.matrix-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matrix-tag-stock {
  position: absolute;
  bottom: 6px;
  left: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.65rem;
  font-weight: 800;
  color: #FBBF24;
}

.matrix-veh-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--lx-text-white);
  line-height: 1.3;
}

.matrix-veh-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: #F59E0B;
  font-family: var(--lx-font-heading);
}

.matrix-cta-row td {
  background: rgba(245, 158, 11, 0.03);
  padding: 1.5rem;
}

.lx-compare-empty-card {
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 28px;
  padding: 5rem 2rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--lx-shadow-card);
}

.empty-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.empty-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lx-text-white);
  margin-bottom: 0.75rem;
}

.empty-desc {
  color: var(--lx-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .lx-compare-dock-inner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 12px;
  }
  .lx-compare-slots {
    width: 100%;
  }
  .lx-compare-actions {
    width: 100%;
    justify-content: space-between;
  }
  .lx-compare-actions .lx-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ==========================================================================
   KT AUTOMOTIVE PROCESS PHASES & DETAILED ROADMAP STYLES
   ========================================================================== */

.kt-process-phase-card {
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  box-shadow: var(--lx-shadow-card);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .kt-process-phase-card {
  background: #ffffff;
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.kt-phase-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.kt-phase-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lx-accent-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.kt-phase-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--lx-text-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

[data-theme="light"] .kt-phase-title {
  color: #0f172a;
}

.kt-phase-subtitle {
  font-size: 1.02rem;
  color: var(--lx-text-secondary);
  line-height: 1.6;
  max-width: 750px;
}

[data-theme="light"] .kt-phase-subtitle {
  color: #64748b;
}

.kt-phase-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.kt-phase-steps-grid.kt-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.kt-phase-steps-grid.kt-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1024px) {
  .kt-phase-steps-grid.kt-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .kt-phase-steps-grid.kt-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kt-process-step-item {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

[data-theme="light"] .kt-process-step-item {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.kt-process-step-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .kt-process-step-item:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.kt-process-step-item.kt-step-highlight {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, rgba(15, 23, 42, 0.6) 100%);
}

[data-theme="light"] .kt-process-step-item.kt-step-highlight {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, #f8fafc 100%);
  border-color: rgba(245, 158, 11, 0.35);
}

.kt-step-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.kt-step-num {
  font-family: var(--lx-font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--lx-accent-gold);
  letter-spacing: -0.02em;
}

.kt-step-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .kt-step-icon {
  background: #ffffff;
  border-color: #e2e8f0;
}

.kt-step-heading {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--lx-text-white);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

[data-theme="light"] .kt-step-heading {
  color: #0f172a;
}

.kt-step-text {
  font-size: 0.94rem;
  color: var(--lx-text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

[data-theme="light"] .kt-step-text {
  color: #475569;
}

.kt-step-badge-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: auto;
  align-self: flex-start;
}

/* ==========================================================================
   KT INCLUDED PRICING & TRANSIT MATRIX
   ========================================================================== */

.kt-pricing-features-box {
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-medium);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--lx-shadow-card);
}

[data-theme="light"] .kt-pricing-features-box {
  background: #ffffff;
  border-color: #e2e8f0;
}

.kt-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.kt-included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--lx-text-primary);
}

[data-theme="light"] .kt-included-list li {
  color: #1e293b;
}

.kt-included-list li svg {
  flex-shrink: 0;
}

/* ==========================================================================
   KT FAQ ACCORDION COMPONENT
   ========================================================================== */

.kt-faq-categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.kt-faq-category-group {
  background: var(--lx-bg-card);
  border: 1px solid var(--lx-border-subtle);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--lx-shadow-card);
}

[data-theme="light"] .kt-faq-category-group {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.kt-faq-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lx-text-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--lx-border-subtle);
}

[data-theme="light"] .kt-faq-group-title {
  color: #0f172a;
  border-bottom-color: #e2e8f0;
}

.kt-faq-group-title .icon {
  font-size: 1.3rem;
}

.kt-faq-item {
  border-bottom: 1px solid var(--lx-border-subtle);
}

.kt-faq-item:last-child {
  border-bottom: none;
}

[data-theme="light"] .kt-faq-item {
  border-bottom-color: #f1f5f9;
}

.kt-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.15rem 0;
  font-family: var(--lx-font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--lx-text-white);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

[data-theme="light"] .kt-faq-question {
  color: #0f172a;
}

.kt-faq-question:hover {
  color: var(--lx-accent-gold);
}

.kt-faq-toggle-icon {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--lx-accent-gold);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.kt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.kt-faq-answer p {
  color: var(--lx-text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  padding-bottom: 1.25rem;
  margin: 0;
}

[data-theme="light"] .kt-faq-answer p {
  color: #475569;
}

/* ==========================================================================
   COMPREHENSIVE CROSS-DEVICE RESPONSIVE OPTIMIZATION (MOBILE, TABLET, LAPTOP, DESKTOP)
   ========================================================================== */

/* Universal Fluid Typography & Container Bounds */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

.lx-container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

/* --- Large Laptops & Desktops (1025px - 1440px) --- */
@media (max-width: 1440px) {
  .lx-vehicle-detail-top-grid {
    gap: 2.5rem !important;
  }
}

/* --- Tablets & Small Laptops (769px - 1024px) --- */
@media (max-width: 1024px) {
  .kt-process-phases-wrapper {
    gap: 3.5rem;
  }
  
  .kt-phase-header {
    margin-bottom: 1.5rem;
  }

  .kt-phase-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .kt-phase-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  .kt-price-inclusions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .kt-timeline-card {
    padding: 2rem !important;
  }

  .lx-vehicle-gallery-col {
    margin-bottom: 1.5rem;
  }
}

/* --- Mobile Landscape & Small Tablets (577px - 768px) --- */
@media (max-width: 768px) {
  .lx-header-inner {
    padding: 0.75rem 0;
  }

  .lx-phone-badge {
    display: none !important;
  }

  .lx-btn-whatsapp {
    padding: 0.4rem 0.85rem !important;
    font-size: 0.82rem !important;
  }

  .kt-phase-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .kt-price-inclusions-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .kt-timeline-card {
    padding: 1.5rem !important;
    border-radius: 18px !important;
  }

  .kt-faq-category-group {
    padding: 1.5rem !important;
    border-radius: 18px !important;
    margin-bottom: 1.75rem !important;
  }

  .kt-faq-question {
    font-size: 1rem !important;
    padding: 0.95rem 0 !important;
  }

  .kt-faq-group-title {
    font-size: 1.15rem !important;
  }

  .kt-step-card {
    padding: 1.35rem !important;
    border-radius: 16px !important;
  }

  .kt-step-number {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
  }

  .kt-step-title {
    font-size: 1.05rem !important;
  }

  .kt-step-text {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
}

/* --- Small Mobile Phones (up to 576px) --- */
@media (max-width: 576px) {
  body {
    font-size: 15px;
  }

  .lx-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .kt-brand-logo img {
    height: 28px !important;
    max-width: 130px !important;
  }

  .lx-header-actions {
    gap: 6px !important;
  }

  .kt-badge-gold,
  .lx-badge {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }

  .kt-timeline-card .icon {
    font-size: 2.2rem !important;
  }

  .kt-timeline-card h3 {
    font-size: 1.35rem !important;
  }

  .kt-timeline-card p {
    font-size: 0.92rem !important;
  }

  .kt-inclusion-card {
    padding: 1.25rem !important;
  }

  .kt-inclusion-card .icon {
    font-size: 1.6rem !important;
  }

  .kt-inclusion-card h4 {
    font-size: 1.05rem !important;
  }

  .kt-inclusion-card p {
    font-size: 0.88rem !important;
  }

  .lx-calc-modal {
    width: 94% !important;
    padding: 1.25rem !important;
    margin: 1rem auto !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }

  .lx-calc-tab-btn {
    font-size: 0.82rem !important;
    padding: 8px 10px !important;
  }

  .lx-calc-row {
    font-size: 0.85rem !important;
  }

  .lx-calc-total-box {
    padding: 1rem !important;
  }
}




