/* ==========================================================================
   SpeedToys MX - Premium Automotive Theme
   Redesigned: Saasland-inspired, dark/light mode, video hero
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES — DARK MODE (default)
   -------------------------------------------------------------------------- */
:root,
[data-theme="dark"] {
  --bg: #060611;
  --bg2: #0a0a1a;
  --bg3: #0f0f22;
  --surface: rgba(255,255,255,0.035);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-h: rgba(255,107,0,0.35);
  --primary: #ff6b00;
  --primary-d: #e05500;
  --primary-l: #ff8a33;
  --primary-g: linear-gradient(135deg, #ff6b00 0%, #ff8a33 100%);
  --primary-bg: rgba(255,107,0,0.08);
  --primary-border: rgba(255,107,0,0.25);
  --yellow: #ffd000;
  --green: #25d366;
  --red: #ff3d3d;
  --text: #f0f2f5;
  --text-2: #9ca3b4;
  --text-3: #64748b;
  --heading: #ffffff;
  --glass-bg: rgba(12,10,28,0.7);
  --glass-border: rgba(255,255,255,0.08);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --header-bg: rgba(6,6,17,0.85);
  --header-bg-scroll: rgba(6,6,17,0.97);
}

/* --------------------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES — LIGHT MODE
   -------------------------------------------------------------------------- */
[data-theme="light"] {
  --bg: #f8f9fc;
  --bg2: #f0f1f5;
  --bg3: #e8e9ed;
  --surface: rgba(0,0,0,0.02);
  --surface-2: rgba(0,0,0,0.04);
  --border: rgba(0,0,0,0.08);
  --border-h: rgba(255,107,0,0.3);
  --primary-bg: rgba(255,107,0,0.06);
  --primary-border: rgba(255,107,0,0.2);
  --text: #1a1d2e;
  --text-2: #5a5f73;
  --text-3: #8b8fa3;
  --heading: #0f1023;
  --glass-bg: rgba(255,255,255,0.8);
  --glass-border: rgba(0,0,0,0.06);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --header-bg: rgba(255,255,255,0.85);
  --header-bg-scroll: rgba(255,255,255,0.97);
}

/* --------------------------------------------------------------------------
   3. GLOBAL LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.alt-bg {
  background: var(--bg2);
}

.main-content {
  min-height: 60vh;
  padding-top: 80px;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-2);
  line-height: 1.7;
}

.text-gradient {
  background: var(--primary-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--heading);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--heading);
  margin-bottom: 12px;
}

.post-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--heading);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--primary-g);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.4);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  filter: brightness(1.08);
}


/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  padding: 0;
}

.site-header.scrolled {
  background: var(--header-bg-scroll);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--text);
  background: var(--surface);
}

.nav-list li a.active {
  color: var(--primary);
}

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

.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.header-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.header-wa svg {
  width: 16px;
  height: 16px;
}

/* ── Header Portal Button — BrightHub-style sleek pill ──── */
.header-cta .btn-primary {
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  background: var(--primary-g) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(255,107,0,0.25) !important;
  letter-spacing: 0.3px;
  gap: 6px;
}
.header-cta .btn-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4) !important;
}
.header-cta .btn-primary svg {
  width: 12px !important;
  height: 12px !important;
}
/* Header WhatsApp — small icon-only circle */
.header-cta .header-wa {
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: var(--green) !important;
}
.header-cta .header-wa svg {
  width: 18px !important;
  height: 18px !important;
}



.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.theme-toggle:hover {
  color: var(--primary);
  border-color: var(--primary-border);
  background: var(--primary-bg);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-toggle:hover {
  color: var(--primary);
  border-color: var(--primary-border);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */

/* Hero entrance animations */
.hero-badge { animation: fadeSlideUp 0.6s ease-out both; }
.hero-title { animation: fadeSlideUp 0.8s ease-out 0.1s both; }
.hero-subtitle { animation: fadeSlideUp 0.8s ease-out 0.2s both; }
.hero-search-wrap { animation: fadeSlideUp 0.8s ease-out 0.3s both; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 90px 24px 32px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-list {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }

  .nav-list li a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
  }

  .header-cta {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    gap: 10px;
  }

  .header-cta .btn,
  .header-wa {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Background: video or image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg video,
.hero-bg img,
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(6,6,17,0.75) 0%,
    rgba(6,6,17,0.55) 40%,
    rgba(6,6,17,0.80) 100%
  );
  z-index: 1;
}

/* Speed lines (decorative) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 200px,
      rgba(255,107,0,0.015) 200px,
      rgba(255,107,0,0.015) 201px
    );
  animation: speedLines 20s linear infinite;
  z-index: 2;
  pointer-events: none;
}

/* Glow effects */
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite 3s;
}

/* Aurora gradient glow (BrightHub-style) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255,107,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(56,189,248,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 50% 80%, rgba(139,92,246,0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  background: rgba(255,107,0,0.35);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}

.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.hero-particles span:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 10s; }
.hero-particles span:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 16s; }
.hero-particles span:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 11s; }
.hero-particles span:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 13s; }
.hero-particles span:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 15s; }
.hero-particles span:nth-child(7) { left: 50%; animation-delay: 6s; animation-duration: 12s; width: 2px; height: 2px; }
.hero-particles span:nth-child(8) { left: 15%; animation-delay: 7s; animation-duration: 17s; width: 4px; height: 4px; }

/* Tachometer ring */
.hero-tacho {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.15;
}

.tacho-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 6;
}

.tacho-ring {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 0 999;
  animation: tachoFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

/* Hero stripe (decorative bar) */
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-g);
  z-index: 5;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 900px;
  padding: 60px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  position: relative;
}

/* BrightHub-style decorative side lines */
.hero-badge::before,
.hero-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,107,0,0.3));
}
.hero-badge::before {
  right: calc(100% + 12px);
  background: linear-gradient(to left, rgba(255,107,0,0.3), transparent);
}
.hero-badge::after {
  left: calc(100% + 12px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: var(--glass-bg);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 30px rgba(255,107,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: fadeSlideUp 0.8s ease-out 0.5s both;
}
.hero-stats:hover {
  border-color: rgba(255,107,0,0.4) !important;
  box-shadow: 0 0 40px rgba(255,107,0,0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
}

.stat-plus {
  color: var(--primary);
  font-size: 1.2rem;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}


/* ==========================================================================
   8. HERO VEHICLE SEARCH (Plugin Overrides)
   ========================================================================== */
/* ══ HERO VEHICLE SEARCH WIDGET ══════════════════════════════ */

/* == HERO VEHICLE SEARCH - Premium Redesign == */
.hero-search-wrap {
  margin-bottom: 36px; margin-top: 12px;
  max-width: 960px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 5;
}
.hero-search-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-search-wrap .tsc-vs {
  background: linear-gradient(160deg, rgba(15,12,30,0.82) 0%, rgba(10,8,22,0.92) 100%);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 24px 28px 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55), 0 2px 0 rgba(255,255,255,0.04) inset;
  position: relative;
  overflow: hidden;
}
.hero-search-wrap .tsc-vs::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.5) 50%, transparent);
}
.hero-search-wrap .tsc-vs::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,0,0.08), transparent 70%);
  pointer-events: none;
}
.hero-search-wrap .tsc-vs-selects { gap: 14px; }
.hero-search-wrap .tsc-vs-field label { color: rgba(255,255,255,0.5); font-size: 9px; letter-spacing: 2.5px; }
.hero-search-wrap .tsc-select-wrap select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 14px 38px 14px 16px;
  font-size: 14px; font-weight: 500; color: #fff;
  transition: all 0.25s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.25) inset;
  width: 100%; appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3b4' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.hero-search-wrap .tsc-select-wrap select:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
}
.hero-search-wrap .tsc-select-wrap select:focus {
  background: rgba(255,107,0,0.08); border-color: rgba(255,107,0,0.6);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12), 0 0 20px rgba(255,107,0,0.1); outline: none;
}
.hero-search-wrap .tsc-select-wrap select:disabled { opacity: 0.35; cursor: not-allowed; }

/* Dyno card (results) */
.hero-search-wrap .tsc-dcard {
  background: linear-gradient(160deg, rgba(20,16,40,0.85) 0%, rgba(12,10,28,0.95) 100%);
  backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 22px; padding: 24px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.06) inset;
  margin-top: 14px;
}
.hero-search-wrap .tsc-dcard-head { border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 16px; margin-bottom: 18px; }
.hero-search-wrap .tsc-dcard-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--heading); margin-bottom: 4px;
}
.hero-search-wrap .tsc-dcard-sub { font-size: 11px; color: rgba(255,255,255,0.45); }

/* Stage tabs */
.hero-search-wrap .tsc-stabs {
  display: flex;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 4px; gap: 4px; margin-bottom: 20px;
}
.hero-search-wrap .tsc-stab {
  flex: 1; border-radius: 10px; padding: 10px 6px; font-size: 11px;
  font-weight: 600; text-align: center; color: var(--text-2);
  cursor: pointer; transition: all 0.25s ease; border: none; background: transparent;
}
.hero-search-wrap .tsc-stab:hover {
  color: var(--text); background: rgba(255,255,255,0.05);
}
.hero-search-wrap .tsc-stab--active {
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,107,0,0.08));
  color: #ff9940; border: 1px solid rgba(255,107,0,0.3);
  box-shadow: 0 0 20px rgba(255,107,0,0.12);
}

/* Gauge numbers */
.hero-search-wrap .tsc-gauges-row {
  display: flex; gap: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.55));
  border: 1px solid rgba(255,255,255,0.05); border-radius: 18px;
  padding: 18px 12px 14px; margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3) inset;
}
.hero-search-wrap .tsc-gauge-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  color: var(--heading); line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 30px rgba(255,107,0,0.3);
}
.hero-search-wrap .tsc-gauge-gain { font-size: 13px; color: #ff9940; font-weight: 700; }

/* Compare & fuel */
.hero-search-wrap .tsc-compare {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 14px;
}
.hero-search-wrap .tsc-fuel-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-2);
  border-radius: 14px; padding: 13px 16px; margin-bottom: 16px;
}

/* CTA buttons inside search */
.hero-search-wrap .tsc-ctas { display: flex; gap: 12px; }
.hero-search-wrap .tsc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 14px; padding: 14px 20px; font-size: 14px;
  font-weight: 600; transition: all 0.25s ease; cursor: pointer;
  border: none; text-decoration: none;
}
.hero-search-wrap .tsc-btn-primary {
  background: linear-gradient(135deg, #ff6b00, #ff8a2b); color: #fff;
  box-shadow: 0 6px 28px rgba(255,107,0,0.35), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.hero-search-wrap .tsc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,107,0,0.5);
}
.hero-search-wrap .tsc-btn-wa {
  background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25);
  border-radius: 14px; color: #fff;
}
.hero-search-wrap .tsc-btn-wa:hover {
  background: rgba(37,211,102,0.15); transform: translateY(-2px);
}


/* ==========================================================================
   9. SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-g);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: var(--primary-border);
  background: var(--primary-bg);
}

.service-card.featured::before {
  opacity: 1;
}

.service-card.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary-bg);
  border-color: var(--primary-border);
  border-style: dashed;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--heading);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.service-card p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-gains {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-gains li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.service-gains li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.25s ease;
}

.service-link:hover {
  gap: 10px;
}

/* ==========================================================================
   10. HOW IT WORKS
   ========================================================================== */
.how-section {
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-g);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255,107,0,0.25);
}

.step h3 {
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.step p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--text-3);
  font-size: 1.2rem;
  z-index: 2;
  pointer-events: none;
}

.step:last-child .step-arrow { display: none; }

.how-cta {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   11. PORTAL FEATURES
   ========================================================================== */
.portal-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portal-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portal-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.portal-feature-icon svg {
  width: 26px;
  height: 26px;
}

.portal-feature-card h3 {
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.portal-feature-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}


/* ==========================================================================
   12. GALLERY SECTION
   ========================================================================== */
.gallery-section {
  position: relative;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,6,17,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================================================
   13. TIMELINE SECTION
   ========================================================================== */
.timeline-section {
  position: relative;
}

.timeline-list {
  position: relative;
  padding-left: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--border));
}

.timeline-item {
  position: relative;
  padding: 24px 0 48px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: -33px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--primary-border);
}

.timeline-date {
  display: inline-flex;
  padding: 4px 14px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--heading);
  margin-bottom: 8px;
}

.timeline-body {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

.timeline-extra {
  margin-top: 12px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.timeline-extra.open {
  max-height: 500px;
}

.timeline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: gap 0.25s ease;
}

.timeline-toggle:hover {
  gap: 10px;
}

.timeline-img {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 12px;
}

/* ==========================================================================
   14. WHY US / WINOLS SECTION
   ========================================================================== */
.why-section {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.why-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--heading);
  font-size: 0.85rem;
  font-weight: 600;
}

.why-content {
  display: flex;
  flex-direction: column;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  color: var(--primary);
  flex-shrink: 0;
}

.why-icon svg {
  width: 20px;
  height: 20px;
}

.why-feature h4 {
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.why-feature p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* WinOLS subsection */
.winols-section {
  text-align: center;
  padding: 48px 0 0;
}

.winols-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--heading);
  margin-bottom: 12px;
}

.winols-desc {
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.winols-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.winols-verify-btn:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}


/* ==========================================================================
   15. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  position: relative;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-2);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--heading);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ==========================================================================
   16. LICENSES SECTION
   ========================================================================== */
.licenses-section {
  position: relative;
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.license-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.license-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-h);
}

.license-badge.featured {
  border-color: var(--primary-border);
  background: var(--primary-bg);
  position: relative;
}

.license-badge.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-g);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.license-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

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

.license-badge h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 4px;
}

.license-type {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.license-badge p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ==========================================================================
   17. PARTNERS SECTION
   ========================================================================== */
.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-track {
  display: flex;
  animation: partnersScroll 30s linear infinite;
  gap: 48px;
  align-items: center;
}
.partners-track:hover {
  animation-play-state: paused;
}

.partners-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 48px;
}

.partner-logo {
  height: 40px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   18. FAQ SECTION
   ========================================================================== */
.faq-section {
  position: relative;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: var(--primary-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  width: 100%;
  background: none;
  border: none;
  color: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
  font-family: var(--font);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-3);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > div,
.faq-answer > p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}


/* ==========================================================================
   19. CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0 auto;
  max-width: 1200px;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,6,17,0.9) 0%, rgba(255,107,0,0.15) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   20. PAGE HERO (Inner Pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,17,0.85) 0%, rgba(6,6,17,0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* ==========================================================================
   21. SERVICE DETAIL (Services Page)
   ========================================================================== */
.service-detail {
  padding: 80px 0;
  position: relative;
}

.service-detail.alt {
  background: var(--bg2);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--heading);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.spec {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.spec-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.spec-key {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   22. PRICING SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--primary-border);
  background: var(--primary-bg);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--primary-g);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 24px;
  line-height: 1.1;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--text-3);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-2);
}

.pricing-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-bg);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="%23ff6b00" viewBox="0 0 16 16"%3E%3Cpath d="M13.5 2l-7.5 9-3.5-3.5-2 2 5.5 5.5 9.5-11.5z"/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 12px;
  text-align: center;
}


/* ==========================================================================
   23. ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.about-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat span {
  font-size: 0.78rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-imgs {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.about-img-secondary {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-card);
}

.about-img-secondary img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   24. CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--border-h);
  transform: translateY(-2px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-body {
  flex: 1;
}

.contact-card-body h4 {
  font-size: 0.95rem;
  color: var(--heading);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.contact-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 2px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.contact-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

/* Contact form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}


/* ==========================================================================
   25. BLOG SECTION
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Blog post content */
.post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 0;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--heading);
}

.post-content p {
  margin-bottom: 20px;
  color: var(--text-2);
  line-height: 1.8;
  font-size: 1rem;
}

.post-content img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-content li {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 8px;
}

.post-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  color: var(--primary-l);
}

.post-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--primary-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.post-content blockquote p {
  color: var(--text);
  font-style: italic;
}

.post-content code {
  background: var(--surface-2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--primary);
}

.post-content pre {
  background: var(--bg2);
  padding: 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--border);
}

.post-content pre code {
  background: none;
  padding: 0;
  color: var(--text);
}

.post-thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
}

.post-thumb img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   26. FOOTER
   ========================================================================== */
.site-footer {
  background: #0a0a14;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #9ca3b4;
  position: relative;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #9ca3b4;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: #9ca3b4;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-nav-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col ul li a {
  color: #9ca3b4;
  font-size: 0.88rem;
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-nav-col ul li a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: #9ca3b4;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom-inner a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-inner a:hover {
  color: var(--primary);
}


/* ==========================================================================
   27. UTILITIES
   ========================================================================== */

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
}

.page-numbers:hover {
  border-color: var(--primary-border);
  color: var(--primary);
  background: var(--primary-bg);
}

.page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.page-numbers.dots {
  border: none;
  background: none;
  color: var(--text-3);
}

/* Standalone vehicle search section */
.search-section {
  padding: 60px 0;
}

.search-section .tsc-vs {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ==========================================================================
   28. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

@keyframes speedLines {
  0% { transform: translateX(0); }
  100% { transform: translateX(201px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes tachoFill {
  0% { stroke-dasharray: 0 999; }
  100% { stroke-dasharray: 220 999; }
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   29. RESPONSIVE — 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .why-grid { gap: 40px; }
  .about-grid { gap: 40px; }
  .contact-grid { gap: 32px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-tacho { display: none; }

  .step-arrow { display: none; }

  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

/* ==========================================================================
   30. RESPONSIVE — 768px
   ========================================================================== */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }

  .hero { min-height: auto; padding-top: 72px; }
  .hero-content { padding: 48px 0 60px; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
  }

  .stat { padding: 8px 16px; }
  .stat-divider { width: 100%; height: 1px; }

  .hero-scroll { display: none; }
  .hero-glow, .hero-glow-2 { display: none; }

  .hero-search-wrap { margin-bottom: 28px; }
  .hero-search-wrap .tsc-vs { padding: 18px 16px 12px; border-radius: 18px; }
  .hero-search-wrap .tsc-dcard { padding: 18px 14px; border-radius: 18px; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .portal-features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid.reverse { direction: ltr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .page-hero { padding: 120px 0 60px; min-height: 240px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-banner-content { padding: 48px 24px; }
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { width: 100%; }

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

/* ==========================================================================
   31. RESPONSIVE — 680px (Timeline)
   ========================================================================== */
@media (max-width: 680px) {
  .timeline-list {
    padding-left: 24px;
  }

  .timeline-list::before {
    left: 8px;
  }

  .timeline-item::after {
    left: -20px;
    width: 10px;
    height: 10px;
  }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: auto; aspect-ratio: 16/10; }
}

/* ==========================================================================
   32. RESPONSIVE — 480px
   ========================================================================== */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 12px; }

  .header-inner { height: 60px; }
  .site-logo { font-size: 1.2rem; }
  .site-logo img { height: 32px; }

  .hero-content { padding: 32px 0 48px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }

  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

  .service-card { padding: 24px; }
  .step { padding: 24px 16px; }
  .testimonial-card { padding: 24px; }
  .pricing-card { padding: 28px 20px; }
  .contact-form-wrap { padding: 24px; }
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-answer > div, .faq-answer > p { padding: 0 18px 16px; }

  .hero-stats { flex-direction: column; align-items: stretch; }
  .stat { padding: 10px 0; }
  .stat-divider { width: 100%; height: 1px; }

  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-img-secondary { display: none; }

  .licenses-grid { grid-template-columns: 1fr; }

  .hero-search-wrap .tsc-vs { padding: 14px 12px 10px; border-radius: 14px; }
  .hero-search-wrap .tsc-select-wrap select { padding: 12px 36px 12px 14px; font-size: 13px; }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg { width: 24px; height: 24px; }
}


/* ==========================================================================
   33. LIGHT MODE — COMPLETE OVERRIDES
   This is the critical section. Every component that looks different in
   light mode is explicitly overridden here.
   ========================================================================== */

/* --- Body & sections --- */
[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

[data-theme="light"] .section {
  background: #f8f9fc;
}

[data-theme="light"] .alt-bg {
  background: #f0f1f5 !important;
}

[data-theme="light"] .section-title,
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: var(--heading);
}

[data-theme="light"] p {
  color: var(--text-2);
}

[data-theme="light"] .section-desc {
  color: var(--text-2);
}

/* --- Header (white glass) --- */
[data-theme="light"] .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .site-logo {
  color: var(--heading);
}

[data-theme="light"] .nav-list li a {
  color: var(--text-2);
}

[data-theme="light"] .nav-list li a:hover,
[data-theme="light"] .nav-list li a.active {
  color: var(--heading);
  background: rgba(0,0,0,0.04);
}

[data-theme="light"] .nav-list li a.active {
  color: var(--primary);
}

[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
  color: var(--text-2);
}

[data-theme="light"] .theme-toggle:hover {
  color: var(--primary);
  border-color: var(--primary-border);
  background: var(--primary-bg);
}

[data-theme="light"] .lang-toggle {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
  color: var(--text-2);
}

[data-theme="light"] .hamburger span {
  background: var(--heading);
}

/* --- Hero overlay (lighter for video visibility) --- */
[data-theme="light"] .hero-overlay {
  background: linear-gradient(180deg,
    rgba(6,6,17,0.6) 0%,
    rgba(6,6,17,0.3) 40%,
    rgba(6,6,17,0.4) 70%,
    rgba(248,249,252,0.95) 100%) !important;
}

[data-theme="light"] .hero-title {
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.2) !important;
}

[data-theme="light"] .hero-subtitle {
  color: rgba(255,255,255,0.85) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3) !important;
}

/* Hero stats bar - white glass */
[data-theme="light"] .hero-stats {
  background: rgba(255,255,255,0.9) !important;
  border-color: rgba(0,0,0,0.08) !important;
  backdrop-filter: blur(12px) !important;
}

[data-theme="light"] .stat-num {
  color: var(--primary) !important;
}

[data-theme="light"] .stat-label {
  color: #5a5f73 !important;
}

[data-theme="light"] .stat-divider {
  background: rgba(0,0,0,0.1) !important;
}

/* Hero badge */
[data-theme="light"] .hero-badge {
  color: var(--primary) !important;
  background: rgba(255,107,0,0.15) !important;
  border-color: rgba(255,107,0,0.4) !important;
  backdrop-filter: blur(10px);
}
[data-theme="light"] .hero-badge span {
  color: #fff !important;
}

/* Hero scroll */
[data-theme="light"] .hero-scroll {
  color: rgba(255,255,255,0.6) !important;
}

/* --- Buttons --- */
[data-theme="light"] .btn-outline {
  color: var(--heading);
  border-color: rgba(0,0,0,0.15);
}

[data-theme="light"] .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}


/* --- Light mode: Service cards --- */
[data-theme="light"] .service-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .service-card.featured {
  background: rgba(255,107,0,0.04);
  border-color: rgba(255,107,0,0.15);
}

[data-theme="light"] .service-card.cta-card {
  background: rgba(255,107,0,0.03);
  border-color: rgba(255,107,0,0.15);
}

[data-theme="light"] .service-card h3 {
  color: var(--heading);
}

[data-theme="light"] .service-card p {
  color: var(--text-2);
}

[data-theme="light"] .service-gains li {
  color: var(--text-2);
}

[data-theme="light"] .service-icon {
  background: rgba(255,107,0,0.08);
}

/* --- Light mode: Steps / How it works --- */
[data-theme="light"] .step {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .step:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .step h3 { color: var(--heading); }
[data-theme="light"] .step p { color: var(--text-2); }

/* --- Light mode: Portal features --- */
[data-theme="light"] .portal-feature-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .portal-feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .portal-feature-card h3 { color: var(--heading); }
[data-theme="light"] .portal-feature-card p { color: var(--text-2); }

[data-theme="light"] .portal-feature-icon {
  background: rgba(255,107,0,0.08);
}

/* --- Light mode: Gallery --- */
[data-theme="light"] .gallery-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(15,16,35,0.7) 100%);
}

/* --- Light mode: Timeline --- */
[data-theme="light"] .timeline-list::before {
  background: linear-gradient(to bottom, var(--primary), rgba(0,0,0,0.08));
}

[data-theme="light"] .timeline-item::after {
  border-color: var(--bg);
}

[data-theme="light"] .timeline-title { color: var(--heading); }
[data-theme="light"] .timeline-body { color: var(--text-2); }

/* --- Light mode: Why Us --- */
[data-theme="light"] .why-img-badge {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.06);
  color: var(--heading);
  backdrop-filter: blur(12px);
}

[data-theme="light"] .why-feature h4 { color: var(--heading); }
[data-theme="light"] .why-feature p { color: var(--text-2); }

[data-theme="light"] .why-icon {
  background: rgba(255,107,0,0.08);
}

/* --- Light mode: Testimonials --- */
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .testimonial-text { color: var(--text-2); }
[data-theme="light"] .testimonial-author strong { color: var(--heading); }
[data-theme="light"] .testimonial-author span { color: var(--text-3); }
[data-theme="light"] .testimonial-avatar { background: rgba(0,0,0,0.04); }

/* --- Light mode: Licenses --- */
[data-theme="light"] .license-badge {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .license-badge:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .license-badge.featured {
  background: rgba(255,107,0,0.04);
  border-color: rgba(255,107,0,0.15);
}

[data-theme="light"] .license-badge h4 { color: var(--heading); }
[data-theme="light"] .license-badge p { color: var(--text-2); }
[data-theme="light"] .license-icon { background: rgba(255,107,0,0.08); }


/* --- Light mode: Partners --- */
[data-theme="light"] .partner-logo {
  opacity: 0.5;
  filter: grayscale(100%) brightness(0.3);
}

[data-theme="light"] .partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

/* --- Light mode: FAQ --- */
[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .faq-item.active {
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .faq-question {
  color: var(--heading);
}

[data-theme="light"] .faq-question:hover {
  color: var(--primary);
}

[data-theme="light"] .faq-chevron {
  color: var(--text-3);
}

[data-theme="light"] .faq-answer > div,
[data-theme="light"] .faq-answer > p {
  color: var(--text-2);
}

/* --- Light mode: Pricing cards --- */
[data-theme="light"] .pricing-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .pricing-card.featured {
  background: rgba(255,107,0,0.04);
  border-color: rgba(255,107,0,0.15);
}

[data-theme="light"] .pricing-tier { color: var(--heading); }
[data-theme="light"] .pricing-price { color: var(--heading); }
[data-theme="light"] .pricing-price span { color: var(--text-3); }
[data-theme="light"] .pricing-features li { color: var(--text-2); }
[data-theme="light"] .pricing-note { color: var(--text-3); }

/* --- Light mode: CTA Banner (keep dramatic) --- */
[data-theme="light"] .cta-banner-overlay {
  background: linear-gradient(135deg, rgba(8,8,16,0.92), rgba(255,107,0,0.12), rgba(8,8,16,0.92)) !important;
}

[data-theme="light"] .cta-banner h2 { color: #ffffff; }
[data-theme="light"] .cta-banner p { color: rgba(255,255,255,0.75); }

/* --- Light mode: Page Hero (lighter overlay) --- */
[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(to top, 
    rgba(248,249,252,1) 0%, 
    rgba(6,6,17,0.5) 50%, 
    rgba(6,6,17,0.3) 100%) !important;
}

[data-theme="light"] .page-hero-content h1 {
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4) !important;
}

[data-theme="light"] .page-hero-content p {
  color: rgba(255,255,255,0.8) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2) !important;
}

/* --- Light mode: Service detail --- */
[data-theme="light"] .service-detail.alt {
  background: var(--bg2);
}

[data-theme="light"] .service-detail-content h2 { color: var(--heading); }
[data-theme="light"] .service-detail-content p { color: var(--text-2); }

[data-theme="light"] .spec {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .spec-key { color: var(--text-3); }

/* --- Light mode: About --- */
[data-theme="light"] .about-stat {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .about-stat span { color: var(--text-3); }

[data-theme="light"] .about-img-secondary {
  border-color: var(--bg);
}

/* --- Light mode: Contact --- */
[data-theme="light"] .contact-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .contact-card:hover {
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .contact-card-body h4 { color: var(--heading); }
[data-theme="light"] .contact-value { color: var(--text); }
[data-theme="light"] .contact-note { color: var(--text-3); }
[data-theme="light"] .contact-icon { background: rgba(255,107,0,0.08); }
[data-theme="light"] .contact-item-icon { background: rgba(255,107,0,0.08); }

/* Contact form */
[data-theme="light"] .contact-form-wrap {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .form-group label {
  color: var(--text-2);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: var(--text-3);
}


/* --- Light mode: Blog cards --- */
[data-theme="light"] .blog-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .blog-date { color: var(--text-3); }
[data-theme="light"] .blog-card-title { color: var(--heading); }
[data-theme="light"] .blog-card-title a { color: var(--heading); }
[data-theme="light"] .blog-card-title a:hover { color: var(--primary); }
[data-theme="light"] .blog-excerpt { color: var(--text-2); }

/* Blog post content */
[data-theme="light"] .post-content p { color: var(--text-2); }
[data-theme="light"] .post-content li { color: var(--text-2); }
[data-theme="light"] .post-content h2,
[data-theme="light"] .post-content h3,
[data-theme="light"] .post-content h4 { color: var(--heading); }

[data-theme="light"] .post-content blockquote {
  background: rgba(255,107,0,0.04);
}

[data-theme="light"] .post-content blockquote p {
  color: var(--text);
}

[data-theme="light"] .post-content code {
  background: rgba(0,0,0,0.04);
  color: var(--primary);
}

[data-theme="light"] .post-content pre {
  background: #f0f1f5;
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .post-content pre code {
  color: var(--text);
}

/* --- Light mode: Footer stays DARK --- */
[data-theme="light"] .site-footer {
  background: #0a0a1a !important;
  color: #f0f2f5 !important;
  border-top-color: rgba(255,255,255,0.06);
}

[data-theme="light"] .footer-brand p { color: #9ca3b4; }
[data-theme="light"] .footer-nav-col h4 { color: #ffffff; }
[data-theme="light"] .footer-nav-col ul li a { color: #9ca3b4; }
[data-theme="light"] .footer-nav-col ul li a:hover { color: var(--primary); }
[data-theme="light"] .footer-social a {
  background: rgba(255,255,255,0.06);
  color: #9ca3b4;
}
[data-theme="light"] .footer-social a:hover {
  background: var(--primary);
  color: #fff;
}
[data-theme="light"] .footer-contact a { color: #9ca3b4; }
[data-theme="light"] .footer-contact a:hover { color: var(--primary); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(255,255,255,0.06); }
[data-theme="light"] .footer-bottom-inner { color: #64748b; }
[data-theme="light"] .footer-bottom-inner a { color: #64748b; }
[data-theme="light"] .footer-bottom-inner a:hover { color: var(--primary); }

/* --- Light mode: Mobile nav --- */
@media (max-width: 768px) {
  [data-theme="light"] .main-nav {
    background: #ffffff;
    border-left-color: rgba(0,0,0,0.06);
  }

  [data-theme="light"] .main-nav.open {
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }

  [data-theme="light"] .nav-list li a {
    color: var(--text-2);
  }

  [data-theme="light"] .nav-list li a:hover {
    color: var(--heading);
    background: rgba(0,0,0,0.03);
  }
}

/* --- Light mode: Hero Vehicle Search --- */
[data-theme="light"] .hero-search-wrap .tsc-vs {
  background: rgba(255,255,255,0.92) !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
  backdrop-filter: blur(20px);
}

[data-theme="light"] .hero-search-wrap .tsc-select-wrap select {
  background: #f0f1f5 !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: #1a1d2e !important;
  box-shadow: none !important;
}

[data-theme="light"] .hero-search-wrap .tsc-select-wrap select:hover {
  border-color: rgba(255,107,0,0.3);
}

[data-theme="light"] .hero-search-wrap .tsc-select-wrap select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1) !important;
}

[data-theme="light"] .hero-search-wrap .tsc-vs-field label {
  color: #5a5f73 !important;
}

[data-theme="light"] .hero-search-wrap .tsc-dcard {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .hero-search-wrap .tsc-dcard-title { color: var(--heading); }
[data-theme="light"] .hero-search-wrap .tsc-dcard-sub { color: var(--text-3); }

[data-theme="light"] .hero-search-wrap .tsc-stabs {
  background: rgba(0,0,0,0.04);
}

[data-theme="light"] .hero-search-wrap .tsc-stab {
  color: var(--text-2);
}

[data-theme="light"] .hero-search-wrap .tsc-stab:hover {
  color: var(--heading);
  background: rgba(0,0,0,0.04);
}

[data-theme="light"] .hero-search-wrap .tsc-gauge-num { color: var(--heading); }
[data-theme="light"] .hero-search-wrap .tsc-fuel-row { color: var(--text-2); }

/* --- Light mode: Pagination --- */
[data-theme="light"] .page-numbers {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  color: var(--text-2);
}

[data-theme="light"] .page-numbers:hover {
  border-color: rgba(255,107,0,0.2);
  color: var(--primary);
  background: rgba(255,107,0,0.04);
}

[data-theme="light"] .page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* --- Light mode: Standalone vehicle search --- */
[data-theme="light"] .search-section .tsc-vs {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* --- Light mode: Section tags --- */
[data-theme="light"] .section-tag {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.15);
}

/* --- Light mode: WinOLS --- */
[data-theme="light"] .winols-title { color: var(--heading); }
[data-theme="light"] .winols-desc { color: var(--text-2); }

[data-theme="light"] .winols-verify-btn {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.15);
}

[data-theme="light"] .winols-verify-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* --- Light mode: WooCommerce key overrides --- */
[data-theme="light"] .woocommerce .product,
[data-theme="light"] .woocommerce-page .product {
  color: var(--text);
}

[data-theme="light"] .woocommerce .product .summary h1,
[data-theme="light"] .woocommerce .product .summary .price {
  color: var(--heading);
}

[data-theme="light"] .woocommerce table.shop_table {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .woocommerce table.shop_table th {
  background: #f8f9fc;
  color: var(--heading);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .woocommerce table.shop_table td {
  color: var(--text);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .woocommerce .cart-collaterals,
[data-theme="light"] .woocommerce-checkout .woocommerce-checkout-review-order {
  background: #ffffff;
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .woocommerce form .form-row input.input-text,
[data-theme="light"] .woocommerce form .form-row textarea,
[data-theme="light"] .woocommerce form .form-row select {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}

[data-theme="light"] .woocommerce form .form-row input.input-text:focus,
[data-theme="light"] .woocommerce form .form-row textarea:focus,
[data-theme="light"] .woocommerce form .form-row select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}

[data-theme="light"] .woocommerce-message,
[data-theme="light"] .woocommerce-info {
  background: rgba(255,107,0,0.04);
  border-left-color: var(--primary);
  color: var(--text);
}

[data-theme="light"] .woocommerce-error {
  background: rgba(255,61,61,0.04);
  border-left-color: var(--red);
  color: var(--text);
}

/* --- Light mode: text gradient stays --- */
[data-theme="light"] .text-gradient {
  background: var(--primary-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */


/* ==========================================================================
   34. LIGHT MODE — ADDITIONAL FIXES (2026-03-27)
   Comprehensive light mode patch for all missing component overrides.
   ========================================================================== */

/* --- Partner logos: SVG text fill must be dark on light bg --- */
[data-theme="light"] .partners-section {
  background: #f0f1f5 !important;
}

[data-theme="light"] .partner-logo svg text {
  fill: rgba(0, 0, 0, 0.35) !important;
}
[data-theme="light"] .partner-logo:hover svg text {
  fill: rgba(0, 0, 0, 0.8) !important;
}
/* WinOLS logo keeps orange */
[data-theme="light"] .partner-logo[title="WinOLS"] svg text {
  fill: rgba(255, 107, 0, 0.7) !important;
}

/* --- Hero: Reduce glow intensity on light background --- */
[data-theme="light"] .hero-glow {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
}
[data-theme="light"] .hero-glow-2 {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, transparent 70%);
}

/* --- Hero: Soften particles on light bg --- */
[data-theme="light"] .hero-particles span {
  background: rgba(255, 107, 0, 0.2);
}

/* --- Hero: Tachometer ring visibility --- */
[data-theme="light"] .hero-tacho {
  opacity: 0.1;
}
[data-theme="light"] .tacho-ring-bg {
  stroke: rgba(0, 0, 0, 0.08);
}

/* --- Hero: Stripe stays orange (already fine, make more subtle) --- */
[data-theme="light"] .hero-stripe {
  opacity: 0.7;
}

/* --- Hero search label --- */
[data-theme="light"] .hero-search-label {
  color: rgba(255,255,255,0.5) !important;
}

/* --- Search section (standalone page) selects & cards --- */
[data-theme="light"] .search-section .tsc-select-wrap select {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text);
}
[data-theme="light"] .search-section .tsc-select-wrap select:hover {
  border-color: rgba(255, 107, 0, 0.3);
}
[data-theme="light"] .search-section .tsc-select-wrap select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}
[data-theme="light"] .search-section .tsc-vs-field label {
  color: var(--text-3);
}
[data-theme="light"] .search-section .tsc-dcard {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .search-section .tsc-dcard-title { color: var(--heading); }
[data-theme="light"] .search-section .tsc-dcard-sub { color: var(--text-3); }
[data-theme="light"] .search-section .tsc-stabs {
  background: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .search-section .tsc-stab {
  color: var(--text-2);
}
[data-theme="light"] .search-section .tsc-stab:hover {
  color: var(--heading);
  background: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .search-section .tsc-gauge-num { color: var(--heading); }
[data-theme="light"] .search-section .tsc-fuel-row { color: var(--text-2); }

/* --- Service badge (small tag on cards) --- */
[data-theme="light"] .service-badge {
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(255, 107, 0, 0.15);
  color: var(--primary);
}

/* --- Service tag (on detail pages) --- */
[data-theme="light"] .service-tag {
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(255, 107, 0, 0.15);
  color: var(--primary);
}

/* --- Service link (arrow links) --- */
[data-theme="light"] .service-link {
  color: var(--primary);
}

/* --- Step arrow between steps --- */
[data-theme="light"] .step-arrow {
  color: var(--text-3);
}

/* --- Step number circle (keep orange gradient) --- */
[data-theme="light"] .step-num {
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.2);
}

/* --- Timeline date badge --- */
[data-theme="light"] .timeline-date {
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(255, 107, 0, 0.15);
  color: var(--primary);
}

/* --- Timeline toggle link --- */
[data-theme="light"] .timeline-toggle {
  color: var(--primary);
}

/* --- Timeline item (ensure no inherited dark bg) --- */
[data-theme="light"] .timeline-item {
  color: var(--text);
}

/* --- Why feature (individual features in why-us section) --- */
[data-theme="light"] .why-feature {
  color: var(--text);
}

/* --- Gallery overlay span (text label) --- */
[data-theme="light"] .gallery-overlay span {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* --- Pricing badge (popular/recommended label) --- */
[data-theme="light"] .pricing-badge {
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.2);
}

/* --- Pricing features checkmark li --- */
[data-theme="light"] .pricing-features li::before {
  background-color: rgba(255, 107, 0, 0.08);
}

/* --- Testimonial stars (keep yellow/orange) --- */
[data-theme="light"] .testimonial-stars {
  color: var(--yellow, #f59e0b);
}

/* --- Badge dot (decorative dot in hero badge) --- */
[data-theme="light"] .badge-dot {
  background: var(--primary);
}

/* --- Map wrap (contact page map) --- */
[data-theme="light"] .map-wrap {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* --- Select/Option elements global --- */
[data-theme="light"] select,
[data-theme="light"] select option {
  background-color: #ffffff;
  color: var(--text);
}

/* --- Generic link colors in content areas --- */
[data-theme="light"] .main-content a:not(.btn):not(.service-link):not(.nav-list a) {
  color: var(--primary);
}

/* --- How-CTA section (centered CTA below steps) --- */
[data-theme="light"] .how-cta .btn-outline {
  color: var(--heading);
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .how-cta .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}

/* --- WinOLS section background --- */
[data-theme="light"] .winols-section {
  color: var(--text);
}

/* --- Header WhatsApp button --- */
[data-theme="light"] .header-wa {
  color: #ffffff;
}

/* --- Credit steps (if present) --- */
[data-theme="light"] .credit-step {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .credit-step-num {
  color: var(--primary);
}

/* --- Mobile: Hamburger X state --- */
@media (max-width: 768px) {
  [data-theme="light"] .hamburger.open span {
    background: var(--heading);
  }

  /* Mobile nav overlay dim */
  [data-theme="light"] .nav-overlay {
    background: rgba(0, 0, 0, 0.2);
  }
}

/* --- Ensure code/pre blocks readable in light mode --- */
[data-theme="light"] code {
  background: rgba(0, 0, 0, 0.04);
  color: var(--primary);
}
[data-theme="light"] pre {
  background: #f0f1f5;
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

/* --- Scroll indicator / badge dot pulse --- */
[data-theme="light"] .hero-scroll svg {
  color: rgba(255,255,255,0.6) !important;
}

/* --- Fix any remaining var(--surface) components to white --- */
[data-theme="light"] .spec-val {
  color: var(--primary);
}

/* --- Section header / tag consistency --- */
[data-theme="light"] .section-header {
  color: var(--heading);
}

/* --- Contact item icon consistency --- */
[data-theme="light"] .contact-item-icon svg {
  color: var(--primary);
}

/* --- License type label --- */
[data-theme="light"] .license-type {
  color: var(--primary);
}

/* --- Stat big / stat plus (hero stats text) --- */
[data-theme="light"] .stat-big {
  color: var(--heading);
}
[data-theme="light"] .stat-plus {
  color: var(--primary);
}

/* --- Blog read-more link --- */
[data-theme="light"] .blog-card a.btn-outline {
  color: var(--heading);
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .blog-card a.btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* --- Fix: post-content a links in articles --- */
[data-theme="light"] .post-content a {
  color: var(--primary);
}
[data-theme="light"] .post-content a:hover {
  color: var(--primary-d, #e55f00);
}

/* --- Fix: post-header / post-title on single posts --- */
[data-theme="light"] .post-title {
  color: var(--heading);
}
[data-theme="light"] .post-header {
  color: var(--text);
}

/* --- Site map / sitemap pages (stm-) --- */
[data-theme="light"] .stm-grid {
  color: var(--text);
}
[data-theme="light"] .stm-header {
  color: var(--heading);
}
[data-theme="light"] .stm-content {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .stm-nav-title {
  color: var(--heading);
}
[data-theme="light"] .stm-nav a {
  color: var(--text-2);
}
[data-theme="light"] .stm-nav a:hover {
  color: var(--primary);
}
[data-theme="light"] .stm-lang-btn {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--text-2);
}
[data-theme="light"] .stm-lang-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}


/* ══ Matrix Pricing Page — Base Styles ══════════════════════════ */
.matrix-categories { display: flex; flex-direction: column; gap: 32px; }
.matrix-cat {
  background: var(--surface);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.matrix-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-w);
}
.matrix-cat-icon { color: var(--primary); flex-shrink: 0; display: flex; }
.matrix-cat-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; flex: 1; }
.matrix-cat-count {
  font-size: 11px; font-weight: 700;
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.matrix-services { padding: 8px 0; }
.matrix-svc {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 24px;
  transition: background 0.2s;
}
.matrix-svc:hover { background: rgba(255,255,255,0.03); }
.matrix-svc-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.matrix-svc-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.12);
  min-width: 20px;
  margin-bottom: 4px;
}
.matrix-svc-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  white-space: nowrap;
}
.matrix-svc-price small { font-weight: 400; font-size: 11px; color: var(--muted); }
.matrix-footer {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.matrix-footer p { font-size: 14px; color: var(--muted); }
@media (max-width: 768px) {
  .matrix-svc { padding: 8px 16px; }
  .matrix-cat-header { padding: 14px 16px; }
  .matrix-svc-name { font-size: 13px; }
}

/* ── Matrix Tabs ────────────────────────────────────────────── */
.matrix-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-w);
}
.matrix-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border-w);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.matrix-tab:hover { border-color: rgba(255,107,0,0.3); color: var(--text); }
.matrix-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.matrix-tab.active svg { stroke: #fff; }
.matrix-tab svg { width: 16px; height: 16px; stroke: var(--muted); transition: stroke 0.2s; }
.matrix-tab small { font-weight: 400; opacity: 0.7; }

/* ── Matrix Cards Grid ──────────────────────────────────────── */
.matrix-grid { display: flex; flex-direction: column; gap: 48px; }
.matrix-cat-block { }
.matrix-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.matrix-block-icon { color: var(--primary); display: flex; }
.matrix-block-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.matrix-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.matrix-card {
  background: var(--surface);
  border: 1px solid var(--border-w);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.matrix-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-2px); }
.matrix-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.matrix-card-name { font-weight: 700; font-size: 14px; }
.matrix-card-type {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,107,0,0.08);
  color: var(--primary);
  white-space: nowrap;
}
.matrix-card-desc { font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1; }
.matrix-card-bottom {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--border-w);
}
.matrix-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}
.matrix-card-unit { font-size: 12px; color: var(--muted); }

/* ── Matrix CTA ─────────────────────────────────────────────── */
.matrix-cta { margin-top: 56px; }
.matrix-cta-inner {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}
.matrix-cta-inner h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.matrix-cta-inner p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.matrix-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .matrix-tabs { gap: 6px; }
  .matrix-tab { font-size: 12px; padding: 6px 12px; }
  .matrix-tab span { display: none; }
  .matrix-tab svg { display: block; }
  .matrix-tab.active span { display: inline; }
  .matrix-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .matrix-card { padding: 14px; }
  .matrix-card-name { font-size: 13px; }
  .matrix-cta-inner { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .matrix-cards { grid-template-columns: 1fr; }
}

/* --- Matrix pricing cards (if present) --- */
[data-theme="light"] .matrix-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .matrix-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.2);
}
[data-theme="light"] .matrix-card-name {
  color: var(--heading);
}
[data-theme="light"] .matrix-card-desc {
  color: var(--text-2);
}
[data-theme="light"] .matrix-card-price {
  color: var(--primary);
}
[data-theme="light"] .matrix-card-type,
[data-theme="light"] .matrix-card-unit {
  color: var(--text-3);
}
[data-theme="light"] .matrix-tab {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--text-2);
}
[data-theme="light"] .matrix-tab.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
[data-theme="light"] .matrix-tab:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
  color: var(--heading);
}
[data-theme="light"] .matrix-cat-block {
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .matrix-block-header {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .matrix-block-title {
  color: var(--heading);
}
[data-theme="light"] .matrix-block-icon {
  color: var(--primary);
}
[data-theme="light"] .matrix-cta {
  background: rgba(255, 107, 0, 0.04);
  border-color: rgba(255, 107, 0, 0.12);
}
[data-theme="light"] .matrix-cta-inner {
  color: var(--text);
}

/* --- Trust bar section --- */
[data-theme="light"] .trust-bar-section {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

/* --- Description text (generic) --- */
[data-theme="light"] .description {
  color: var(--text-2);
}

/* --- No JS fallback --- */
[data-theme="light"] .no-js {
  color: var(--text);
  background: #ffffff;
}

/* --- Page title on archive/category pages --- */
[data-theme="light"] .page-title {
  color: var(--heading);
}

/* --- Pagination dots --- */
[data-theme="light"] .page-numbers.dots {
  color: var(--text-3);
}


/* == Header Portal Button - BrightHub sleek pill == */
.header-cta .btn-primary {
  padding: 9px 22px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  background: var(--primary-g) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(255,107,0,0.25) !important;
  letter-spacing: 0.3px;
  gap: 6px;
}
.header-cta .btn-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4) !important;
}
.header-cta .btn-primary svg { width: 12px !important; height: 12px !important; }
.header-cta .header-wa {
  width: 38px !important; height: 38px !important;
  padding: 0 !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  border-radius: 50% !important;
  background: var(--green) !important;
}
.header-cta .header-wa svg { width: 18px !important; height: 18px !important; }


/* == PRICING PAGE STYLES (restored from backup) == */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border-w);
  border-radius: var(--radius);
}
.trust-item span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.credits-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.credit-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
}
.credit-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  background: var(--primary-g);
  border-radius: 50%;
  margin-bottom: 16px;
}
.credit-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) {
  .credits-steps { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
}
[data-theme="light"] .trust-item, [data-theme="light"] .timeline-item,
[data-theme="light"] .faq-item, [data-theme="light"] .blog-card,
[data-theme="light"] .credit-step h3, [data-theme="light"] .trust-item strong,
[data-theme="light"] .timeline-item h3, [data-theme="light"] .timeline-title,
[data-theme="light"] .credit-step p, [data-theme="light"] .timeline-item p,
[data-theme="light"] .timeline-body, [data-theme="light"] .faq-item p,
[data-theme="light"] .trust-item span, [data-theme="light"] .spec-key,
[data-theme="light"] .timeline-extra, [data-theme="light"] .testimonial-text { color: #475569 !important; }
[data-theme="light"] .step-num, [data-theme="light"] .credit-step-num { color: #fff !important; }
[data-theme="light"] .step-arrow { color: rgba(0,0,0,0.12) !important; }
[data-theme="light"] .trust-bar { background: rgba(255,255,255,0.9) !important; border-color: rgba(0,0,0,0.06) !important; }


/* ── Mobile Navbar Fix — declutter header-cta ────────────── */
@media (max-width: 768px) {
  /* Hide lang + theme toggles from header bar on mobile */
  .header-cta .lang-toggle,
  .header-cta .theme-toggle {
    display: none !important;
  }

  /* Portal button: smaller pill */
  .header-cta .btn-primary {
    padding: 7px 14px !important;
    font-size: 12px !important;
  }

  /* WhatsApp: keep small circle */
  .header-cta .header-wa {
    width: 34px !important;
    height: 34px !important;
  }

  /* Tighter gap */
  .header-cta {
    gap: 6px !important;
    margin-left: 8px !important;
  }

  /* Move lang + theme into slide-out nav bottom */
  .main-nav .nav-mobile-extras {
    display: flex !important;
    gap: 12px;
    padding-top: 20px;
    margin-top: auto;
    border-top: 1px solid var(--border);
  }
}

@media (min-width: 769px) {
  .nav-mobile-extras {
    display: none !important;
  }
}
