/* ═══════════════════════════════════════════════════════════
   SpeedToys Theme — Main Stylesheet
   Dark performance aesthetic with fire orange accents
═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #080810;
  --bg2:       #0d0d1a;
  --bg3:       #12121f;
  --surface:   rgba(255,255,255,0.04);
  --border:    rgba(255,107,0,0.2);
  --border-w:  rgba(255,255,255,0.08);
  --primary:   #ff6b00;
  --primary-d: #e05500;
  --primary-g: linear-gradient(135deg,#ff6b00,#e05500);
  --yellow:    #ffd000;
  --green:     #25d366;
  --red:       #ff3d3d;
  --text:      #f1f5f9;
  --text-2:    #94a3b8;
  --muted:     #64748b;
  --glass:     rgba(255,107,0,0.06);
  --glass-w:   rgba(255,255,255,0.04);
  --font:      'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 20px 60px rgba(0,0,0,0.6);
  --shadow-g:  0 0 40px rgba(255,107,0,0.15);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow); }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

/* ── Container ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────── */
.text-gradient {
  background: var(--primary-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: var(--text-2); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }
.page-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 32px; }
.post-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 24px; }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: 96px 0; }
.alt-bg { background: var(--bg2); }
.main-content { background: var(--bg); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-primary {
  background: var(--primary-g);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-w);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 12px; left: 24px; right: 24px; border-radius: 16px;
  z-index: 1000;
  background: rgba(8,8,16,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,107,0,0.1);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(8,8,16,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-logo img { height: 44px; width: auto; }
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-list li a:hover,
.nav-list li.current-menu-item a {
  color: var(--primary);
  background: rgba(255,107,0,0.08);
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.05); transition: transform 8s ease-out; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(4,4,12,0.58) 0%,
    rgba(4,4,12,0.25) 50%,
    rgba(8,8,16,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(255,107,0,0.4);
  background: rgba(255,107,0,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.hero-title {

  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero-title .text-gradient {
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.93);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 2px 18px rgba(0,0,0,0.98), 0 1px 5px rgba(0,0,0,0.95);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  width: fit-content;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.stat-plus { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.72); display: block; margin-top: 4px; white-space: nowrap; letter-spacing: 0.3px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-w); }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0) translateY(-20px)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--glass-w);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-g);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-4px); box-shadow: var(--shadow-g); }
.service-card.featured { border-color: rgba(255,107,0,0.5); background: rgba(255,107,0,0.06); }
.service-card.cta-card {
  background: var(--primary-g);
  border-color: transparent;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.service-card.cta-card h3, .service-card.cta-card p { color: #fff; }
.service-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  background: var(--primary); color: #fff;
  padding: 3px 10px; border-radius: 100px;
  position: absolute; top: 20px; right: 20px;
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-2); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-gains { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.service-gains li {
  font-size: 12px; font-weight: 600;
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,0,0.25);
}
.service-link { font-size: 14px; font-weight: 600; color: var(--primary); }
.service-link:hover { color: var(--yellow); }

/* ── How It Works ───────────────────────────────────────────── */
.how-section { background: var(--bg2); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1; min-width: 200px; max-width: 260px;
  text-align: center;
  padding: 28px 20px;
  background: var(--glass-w);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: var(--primary);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-2); }
.step-arrow { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.how-cta { text-align: center; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-section { padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
  margin-top: 48px;
}
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-tall { grid-row: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.8), transparent);
  display: flex; align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 13px; font-weight: 600; color: var(--text); }

/* ── Why Us ──────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
.why-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(4,4,12,0.58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.why-img-badge svg { color: var(--primary); }
.why-content .section-title { margin-bottom: 16px; text-align: left; }
.why-content p { color: var(--text-2); margin-bottom: 32px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.why-feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 13px; color: var(--text-2); margin: 0; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.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(8,8,16,0.95), rgba(255,107,0,0.15), rgba(8,8,16,0.95));
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-banner p { font-size: 1.1rem; color: var(--text-2); margin-bottom: 40px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: var(--hero-h, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.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(to top, rgba(8,8,16,1) 0%, rgba(8,8,16,0.6) 60%, rgba(8,8,16,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 60px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero-content p { font-size: 1.05rem; color: var(--text-2); max-width: 500px; }

/* ── Service Detail ─────────────────────────────────────────── */
.service-detail { overflow: hidden; }
.service-detail.alt { background: var(--bg2); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.service-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-detail-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.service-detail-content p { color: var(--text-2); line-height: 1.7; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.spec {
  text-align: center;
  padding: 16px 8px;
  background: var(--glass-w);
  border: 1px solid var(--border-w);
  border-radius: var(--radius);
}
.spec-val { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.spec-key { font-size: 11px; color: var(--muted); }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--glass-w);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  text-align: center;
  transition: all var(--transition);
}
.pricing-card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-4px); }
.pricing-card.featured { border-color: rgba(255,107,0,0.5); background: rgba(255,107,0,0.06); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary-g); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px;
}
.pricing-tier { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--primary); margin-bottom: 24px; }
.pricing-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.pricing-features li { font-size: 14px; color: var(--text-2); padding-left: 4px; }
.pricing-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-w);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px; color: var(--text-2);
}
.pricing-note svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats { display: flex; gap: 32px; margin: 32px 0; }
.about-stat { text-align: center; }
.stat-big { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--primary); }
.about-imgs { position: relative; }
.about-img-main { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 45%;
  border-radius: var(--radius);
  border: 4px solid var(--bg);
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.contact-info > p { color: var(--text-2); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: var(--glass-w);
  border: 1px solid var(--border-w);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--text);
}
.contact-item:hover { border-color: rgba(255,107,0,0.4); background: rgba(255,107,0,0.05); color: var(--text); }
.contact-whatsapp:hover { border-color: rgba(37,211,102,0.4); background: rgba(37,211,102,0.05); }
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-whatsapp .contact-item-icon { background: rgba(37,211,102,0.1); color: var(--green); }
.contact-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-item span { font-size: 14px; color: var(--text-2); }
.contact-form-wrap {
  background: var(--glass-w);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-w);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Blog ───────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--glass-w);
  border: 1px solid var(--border-w);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); }
.blog-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-date { font-size: 12px; color: var(--primary); font-weight: 600; display: block; margin-bottom: 8px; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 14px; color: var(--text-2); margin-bottom: 16px; }
.post-content { font-size: 16px; line-height: 1.8; color: var(--text-2); }
.post-content h2,h3,h4 { color: var(--text); margin: 28px 0 12px; font-family: var(--font-display); }
.post-content p { margin-bottom: 16px; }
.post-thumb { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.post-thumb img { width: 100%; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border-w); }
.footer-top { padding: 72px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-w);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); }
.footer-nav-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 16px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col ul li a { font-size: 14px; color: var(--text-2); transition: color var(--transition); }
.footer-nav-col ul li a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.footer-contact li svg { color: var(--primary); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border-w);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--primary); }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: floatIn 0.5s ease 1s both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: #fff; }
@keyframes floatIn { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--glass-w); border: 1px solid var(--border-w);
  border-radius: 8px; font-size: 14px; color: var(--text-2);
  transition: all var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid, .about-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  .about-img-secondary { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 80%; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .main-nav { display: none; }
  .main-nav.open { display: flex; position: fixed; inset: 72px 0 0; background: rgba(8,8,16,0.98); backdrop-filter: blur(20px); z-index: 999; padding: 32px; }
  .main-nav.open .nav-list { flex-direction: column; width: 100%; gap: 8px; }
  .main-nav.open .nav-list li a { font-size: 1.2rem; padding: 14px 20px; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .why-features { grid-template-columns: 1fr; }
  .steps-grid .step { max-width: 100%; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: span 1; }
  .hero-stats { width: 100%; }
  .contact-form-wrap { padding: 24px; }
}

/* ══ LIGHT THEME ══════════════════════════════════════════════ */
[data-theme="light"] {
  --bg:        #f5f5f0;
  --bg2:       #ecece6;
  --bg3:       #e4e4dd;
  --surface:   rgba(0,0,0,0.04);
  --border:    rgba(255,107,0,0.3);
  --border-w:  rgba(0,0,0,0.1);
  --text:      #1a1a2e;
  --text-2:    #44475a;
  --muted:     #6b7280;
  --glass:     rgba(255,107,0,0.08);
  --glass-w:   rgba(0,0,0,0.04);
  --shadow:    0 20px 60px rgba(0,0,0,0.12);
}
[data-theme="light"] body { background: var(--bg); color: var(--text); }
[data-theme="light"] .site-header { background: rgba(245,245,240,0.9); border-bottom-color: rgba(255,107,0,0.15); }
[data-theme="light"] .site-header.scrolled { background: rgba(245,245,240,0.98); }
[data-theme="light"] .hero-overlay { background: linear-gradient(135deg,rgba(245,245,240,0.78) 0%,rgba(245,245,240,0.45) 50%,rgba(245,245,240,0.15) 100%); }
[data-theme="light"] .hero-subtitle { color: #1a1a2e; text-shadow: 0 1px 8px rgba(245,245,240,0.9); }
[data-theme="light"] .hero-stats { background: rgba(255,255,255,0.72); border-color: rgba(255,107,0,0.25); }
[data-theme="light"] .hero-stats .stat-label { color: rgba(0,0,0,0.6); }
[data-theme="light"] .hero-stats .stat-divider { background: rgba(0,0,0,0.15); }
[data-theme="light"] .hero-badge { background: rgba(255,107,0,0.12); border-color: rgba(255,107,0,0.4); }
[data-theme="light"] .hero-badge span:last-child { color: #1a1a2e; }
[data-theme="light"] .hero-title,
[data-theme="light"] .section-title,
[data-theme="light"] .page-title { color: var(--text); }
[data-theme="light"] .service-card,
[data-theme="light"] .step,
[data-theme="light"] .pricing-card,
[data-theme="light"] .why-feature,
[data-theme="light"] .timeline-item { background: #fff; border-color: rgba(255,107,0,0.15); box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
[data-theme="light"] .btn-outline { color: var(--text); border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .btn-outline:hover { color: var(--primary); border-color: var(--primary); }
[data-theme="light"] .alt-bg { background: var(--bg2); }
[data-theme="light"] .footer-wrap { background: #1a1a2e; }
[data-theme="light"] .lang-toggle,
[data-theme="light"] .theme-toggle { color: var(--text); }
[data-theme="light"] .nav-list li a { color: var(--text-2); }
[data-theme="light"] .nav-list li a:hover { color: var(--primary); }
[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
  background: #fff;
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
}

/* ── Lang/Theme toggle button styles ──────────────────────── */
.lang-toggle,
.theme-toggle {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-2);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}
.lang-toggle:hover, .theme-toggle:hover {
  background: rgba(255,107,0,0.12);
  border-color: rgba(255,107,0,0.3);
  color: var(--primary);
}

/* ══ VEHICLE SEARCH SECTION ════════════════════════════════════ */
.search-section {
  background: var(--bg2);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.search-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ══ TIMELINE SECTION ══════════════════════════════════════════ */
.timeline-section { padding: 96px 0; background: var(--bg); }

.timeline-list {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: calc(50% - 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  transition: all var(--transition);
}
.timeline-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-g);
  transform: translateY(-2px);
}
.timeline-item:nth-child(odd)  { margin-left: 0; margin-right: auto; }
.timeline-item:nth-child(even) { margin-left: auto; margin-right: 0; }

/* Dot on the center line */
.timeline-item::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,107,0,0.2);
}
.timeline-item:nth-child(odd)::after  { right: -46px; }
.timeline-item:nth-child(even)::after { left: -46px; }

.timeline-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.timeline-body {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}
.timeline-extra {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-top: 10px;
  display: none;
}
.timeline-item.expanded .timeline-extra { display: block; }
.timeline-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0 0;
  display: inline-block;
}
.timeline-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 12px;
}

/* Mobile timeline — single column */
@media (max-width: 680px) {
  .timeline-list::before { left: 20px; }
  .timeline-item {
    width: 100%;
    margin-left: 44px !important;
    margin-right: 0 !important;
  }
  .timeline-item::after { left: -34px !important; right: auto !important; }
}

/* ══ CONTACT PAGE ═════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow-g); }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-card-body h4 { font-size: 13px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-value { font-size: 1rem; color: var(--text); font-weight: 500; display: block; text-decoration: none; }
.contact-value:hover { color: var(--primary); }
.contact-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-w);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: #1a1a2e; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══ PAGE HERO ════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  overflow: hidden;
}
.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(to top, rgba(8,8,16,1) 0%, rgba(8,8,16,0.7) 50%, rgba(8,8,16,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-bottom: 56px; }
.page-hero-content .page-title { margin-top: 12px; }

/* ══ HERO VEHICLE SEARCH WIDGET ══════════════════════════════ */
.hero-content { max-width: 900px !important; }

/* ── Hero Vehicle Search — Proper Glass Container ─── */
/* == HERO VEHICLE SEARCH - Premium Redesign == */
.hero-search-wrap {
  margin-bottom: 36px; margin-top: 12px;
  max-width: 960px; margin-left: auto; margin-right: auto;
}
.hero-search-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.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;
}
.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-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;
}
.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); outline: none;
}
.hero-search-wrap .tsc-select-wrap select:disabled { opacity: 0.35; }
.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-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.hero-search-wrap .tsc-dcard-sub { font-size: 11px; color: rgba(255,255,255,0.45); }
.hero-search-wrap .tsc-stabs {
  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 { border-radius: 10px; padding: 10px 6px; font-size: 11px; }
.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);
}
.hero-search-wrap .tsc-gauges-row {
  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-size: 36px; 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; }
.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 { border-radius: 14px; padding: 13px 16px; margin-bottom: 16px; }
.hero-search-wrap .tsc-ctas { gap: 12px; }
.hero-search-wrap .tsc-btn { border-radius: 14px; padding: 14px 20px; font-size: 14px; }
.hero-search-wrap .tsc-btn-primary {
  background: linear-gradient(135deg, #ff6b00, #ff8a2b);
  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; }
.hero-search-wrap .tsc-btn-wa:hover { background: rgba(37,211,102,0.15); transform: translateY(-2px); }
.hero-stats { margin-top: 4px; }
@media (max-width: 768px) {
  .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; }
  .hero-content { padding: 120px 20px 60px !important; }
}
@media (max-width: 480px) {
  .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; }
}
/* ── HERO UPGRADE: Speed Lines + Particles + Glow ─────────── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(255,107,0,0.03) 80px,
      rgba(255,107,0,0.03) 81px
    );
  animation: speedLines 20s linear infinite;
  pointer-events: none;
}
@keyframes speedLines {
  0%   { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  animation: glowPulse 6s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.15); }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,107,0,0.6);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,107,0,0.4);
  animation: particleFloat linear infinite;
}
.hero-particles span:nth-child(1) { left:10%; top:80%; width:3px; height:3px; animation-duration:8s; animation-delay:0s; }
.hero-particles span:nth-child(2) { left:25%; top:90%; animation-duration:12s; animation-delay:1s; }
.hero-particles span:nth-child(3) { left:40%; top:85%; width:3px; height:3px; animation-duration:10s; animation-delay:2s; }
.hero-particles span:nth-child(4) { left:55%; top:95%; animation-duration:9s; animation-delay:0.5s; }
.hero-particles span:nth-child(5) { left:70%; top:88%; animation-duration:11s; animation-delay:3s; }
.hero-particles span:nth-child(6) { left:85%; top:92%; width:3px; height:3px; animation-duration:7s; animation-delay:1.5s; }
.hero-particles span:nth-child(7) { left:15%; top:75%; animation-duration:13s; animation-delay:4s; }
.hero-particles span:nth-child(8) { left:60%; top:78%; animation-duration:10s; animation-delay:2.5s; }
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* Tachometer ring */
.hero-tacho {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}
.hero-tacho svg { width: 100%; height: 100%; }
.tacho-ring { fill: none; stroke: rgba(255,107,0,0.5); stroke-width: 3; stroke-dasharray: 280; stroke-dashoffset: 280; animation: tachoSweep 3s ease-out forwards; }
.tacho-ring-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 3; }
@keyframes tachoSweep { to { stroke-dashoffset: 70; } }

/* Hero title entrance animation */
.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; }
.hero-stats { animation: fadeSlideUp 0.8s ease-out 0.5s both; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pulsing border on stats */
.hero-stats {
  border-color: rgba(255,107,0,0.2) !important;
  box-shadow: 0 0 30px rgba(255,107,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-stats:hover {
  border-color: rgba(255,107,0,0.4) !important;
  box-shadow: 0 0 40px rgba(255,107,0,0.1);
}

/* Speed stripe decorative line */
.hero-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,107,0,0.5), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-stripe::after {
  content: '';
  position: absolute;
  top: 0; left: -12px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,107,0,0.2), transparent);
}


/* ── Tuning Matrix / Pricing Grid ───────────────────────────── */
.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-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; }
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar-section { padding: 32px 0; }
.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 svg { flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.trust-item span { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── Credits Steps ──────────────────────────────────────────── */
.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 h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.credit-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-w);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(255,107,0,0.3); }
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 16px; font-size: 13px; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) {
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .credits-steps { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
}

/* ── Licenses & Certifications ─────────────────────────────── */
.licenses-section { padding: 80px 0; }
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.license-badge {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(8,6,18,0.7) 60%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.license-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,0.3);
}
.license-badge.featured {
  border-color: rgba(255,107,0,0.4);
  background: linear-gradient(145deg, rgba(255,107,0,0.08) 0%, rgba(8,6,18,0.8) 60%);
}
.license-badge.featured .license-icon { color: #ff6b00; }
.license-icon {
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: inline-block;
}
.license-badge h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.license-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff6b00;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.license-badge p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .licenses-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .license-badge { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .licenses-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SPEEDTOYS — PREMIUM ANIMATIONS & INTERACTIONS
   TunerSuite-quality glassmorphic design system
   ══════════════════════════════════════════════════════════════ */

/* ── Global Animation Keyframes ────────────────────────────── */
@keyframes st-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes st-pulse-glow { 0%,100% { box-shadow: 0 0 20px rgba(255,107,0,0.15); } 50% { box-shadow: 0 0 40px rgba(255,107,0,0.3); } }
@keyframes st-shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes st-gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes st-slide-up { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:none; } }
@keyframes st-slide-left { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:none; } }
@keyframes st-slide-right { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:none; } }
@keyframes st-scale-in { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:none; } }
@keyframes st-blur-in { from { opacity:0; filter:blur(10px); } to { opacity:1; filter:blur(0); } }
@keyframes st-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes st-border-glow {
  0%,100% { border-color: rgba(255,107,0,0.15); }
  50% { border-color: rgba(255,107,0,0.4); }
}
@keyframes st-rotate-hue { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }

/* ── Scroll Reveal System ──────────────────────────────────── */
.sr { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.sr.sr-left { transform: translateX(-40px); }
.sr.sr-right { transform: translateX(40px); }
.sr.sr-scale { transform: scale(0.9); }
.sr.sr-blur { filter: blur(8px); transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease; }
.sr.visible { opacity: 1 !important; transform: none !important; filter: none !important; }

/* Stagger children */
.sr-stagger > *:nth-child(1) { transition-delay: 0ms; }
.sr-stagger > *:nth-child(2) { transition-delay: 80ms; }
.sr-stagger > *:nth-child(3) { transition-delay: 160ms; }
.sr-stagger > *:nth-child(4) { transition-delay: 240ms; }
.sr-stagger > *:nth-child(5) { transition-delay: 320ms; }
.sr-stagger > *:nth-child(6) { transition-delay: 400ms; }

/* ── Enhanced Section Headers ──────────────────────────────── */
.section-header { position: relative; }
.section-tag {
  position: relative;
  overflow: hidden;
}
.section-tag::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: st-shimmer 3s infinite;
}
.text-gradient {
  background: linear-gradient(135deg, #ff6b00, #ff3d00, #ff6b00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: st-gradient-shift 4s ease infinite;
}

/* ── Enhanced Service Cards ────────────────────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 12px; left: 24px; right: 24px; border-radius: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b00, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 20px 60px rgba(255,107,0,0.08), 0 0 0 1px rgba(255,107,0,0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  animation: st-border-glow 3s ease infinite;
}

/* ── Enhanced Gallery ──────────────────────────────────────── */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.gallery-overlay {
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  backdrop-filter: blur(2px);
}

/* ── Enhanced Steps ────────────────────────────────────────── */
.step {
  position: relative;
  transition: transform 0.3s ease;
}
.step:hover { transform: translateY(-4px); }
.step-num {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.step:hover .step-num {
  color: #ff6b00;
  text-shadow: 0 0 30px rgba(255,107,0,0.4);
}
.step-arrow {
  transition: transform 0.3s ease;
  animation: st-float 2s ease-in-out infinite;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(8,6,18,0.7) 60%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,107,0,0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(255,107,0,0.06);
}
.testimonial-stars {
  color: #ff6b00;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ff3d00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}
.testimonial-author span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(8,6,18,0.6) 80%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(255,107,0,0.2);
}
.faq-item.open {
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 8px 32px rgba(255,107,0,0.06);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover { color: #ff6b00; }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.3s ease;
  color: rgba(255,255,255,0.3);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #ff6b00;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ── Partner Logos Marquee ──────────────────────────────────── */
.partners-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.partners-slide {
  display: flex;
  gap: 60px;
  animation: st-marquee 25s linear infinite;
  width: max-content;
}
.partners-slide:hover { animation-play-state: paused; }
.partner-logo {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  padding: 8px 0;
  transition: color 0.3s ease;
  user-select: none;
}
.partner-logo:hover { color: rgba(255,255,255,0.5); }
.partner-logo.featured { color: rgba(255,107,0,0.5); }
.partner-logo.featured:hover { color: rgba(255,107,0,0.8); }

/* ── Enhanced Timeline ─────────────────────────────────────── */
.timeline-item {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease;
}
.timeline-item:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255,107,0,0.3);
}
.timeline-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b00, transparent);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.timeline-item:hover::after { width: 80%; }

/* ── Enhanced Why Features ─────────────────────────────────── */
.why-feature {
  transition: transform 0.3s ease;
  cursor: default;
}
.why-feature:hover {
  transform: translateX(6px);
}
.why-icon {
  transition: color 0.3s ease, transform 0.3s ease;
}
.why-feature:hover .why-icon {
  color: #ff6b00;
  transform: scale(1.15);
}

/* ── Enhanced Buttons ──────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, left 0.5s ease;
  transform: translate(-50%, -50%);
}
.btn:hover::after {
  width: 300px; height: 300px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.2);
}
.btn:active { transform: translateY(0); }

/* ── License badges enhanced ───────────────────────────────── */
.license-badge {
  position: relative;
  overflow: hidden;
}
.license-badge::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,107,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.license-badge:hover::after { opacity: 1; }

/* ── Section Divider Glow ──────────────────────────────────── */
.alt-bg { position: relative; }
.alt-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3), transparent);
}

/* ── Scroll Progress Bar ───────────────────────────────────── */
#st-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b00, #ff3d00);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255,107,0,0.5);
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .partners-slide { animation: none; }
  .sr { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ── EVC WinOLS License Badge ──────────────────────────────── */
a.license-badge {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.license-badge:hover {
  text-decoration: none;
  color: inherit;
}
.evc-license-badge {
  display: block;
  margin-top: 16px;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.evc-license-badge img {
  width: 100%;
  max-width: 470px;
  border-radius: 10px;
  border: 1px solid rgba(255,107,0,0.3);
  box-shadow: 0 4px 20px rgba(255,107,0,0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.evc-license-badge:hover img {
  border-color: rgba(255,107,0,0.6);
  box-shadow: 0 6px 30px rgba(255,107,0,0.25);
}
.evc-license-badge:hover {
  transform: translateY(-2px);
}
.evc-inline-badge {
  width: 100%;
  max-width: 280px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,107,0,0.2);
  transition: border-color 0.3s ease;
}
a.license-badge.featured:hover .evc-inline-badge {
  border-color: rgba(255,107,0,0.5);
}
.winols-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.winols-verify-btn svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PHASE 3-5: Premium Redesign — Navbar + Hero + WOW Effects
   SpeedToys v2.0 — Premium Automotive Experience
═══════════════════════════════════════════════════════════ */

/* ── NAVBAR REDESIGN — Floating Glass ─────────────────────── */
.site-header {
  position: fixed;
  top: 12px; left: 20px; right: 20px;
  bottom: auto;
  z-index: 1000;
  background: rgba(8,8,16,0.65);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,107,0,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.site-header.scrolled {
  top: 8px;
  background: rgba(8,8,16,0.92);
  border-color: rgba(255,107,0,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,107,0,0.08);
}
.header-inner {
  height: 64px;
  padding: 0 20px;
}
.site-logo img { height: 38px; }
.nav-list li a {
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; 
  width: 0; height: 2px;
  background: linear-gradient(90deg, #ff6b00, #ff9100);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-list li a:hover::after,
.nav-list li.current-menu-item a::after { width: 60%; }
.nav-list li a:hover {
  color: #fff;
  background: rgba(255,107,0,0.08);
}

/* Header buttons */
.lang-toggle, .theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-toggle:hover, .theme-toggle:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.3);
  color: #ff6b00;
}
.header-cta .btn-primary {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 10px;
}
.header-wa {
  width: 36px; height: 36px;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
}

/* ── HERO REDESIGN ────────────────────────────────────────── */
.hero { min-height: 100vh; padding-top: 90px; }
.hero-content {
  padding: 120px 24px 60px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  text-align: center;
}
.hero-subtitle {
  max-width: 620px;
  text-align: center;
  margin: 0 auto 32px;
}
.hero-badge { margin-bottom: 20px; }

/* ── HERO SEARCH — Premium Glass Panel ────────────────────── */
.hero-search-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 32px;
  background: linear-gradient(145deg, rgba(12,12,24,0.88) 0%, rgba(8,8,16,0.95) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 20px;
  padding: 24px 28px 20px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.5),
    0 0 40px rgba(255,107,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.hero-search-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.4), transparent);
}
.hero-search-wrap::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-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);
}

/* Override plugin select styling for better integration */
.hero-search-wrap .tsc-select-wrap select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 36px 14px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.hero-search-wrap .tsc-select-wrap select:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,107,0,0.3);
}
.hero-search-wrap .tsc-select-wrap select:focus {
  border-color: #ff6b00;
  background: rgba(255,107,0,0.08);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12), 0 0 20px rgba(255,107,0,0.1);
}

/* Dyno card inside hero — enhance */
.hero-search-wrap .tsc-dcard {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(8,6,18,0.92) 60%);
  border-color: rgba(255,107,0,0.12);
  border-radius: 16px;
  margin-top: 4px;
}

/* Stats bar — centered */
.hero-stats {
  margin: 0 auto;
  background: rgba(12,12,24,0.8);
  border: 1px solid rgba(255,107,0,0.12);
  border-radius: 16px;
  padding: 18px 36px;
}

/* ── PREMIUM ANIMATION SYSTEM ─────────────────────────────── */

/* Scroll reveal with stagger */
.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.sr-stagger .sr:nth-child(1) { transition-delay: 0ms; }
.sr-stagger .sr:nth-child(2) { transition-delay: 80ms; }
.sr-stagger .sr:nth-child(3) { transition-delay: 160ms; }
.sr-stagger .sr:nth-child(4) { transition-delay: 240ms; }
.sr-stagger .sr:nth-child(5) { transition-delay: 320ms; }
.sr-stagger .sr:nth-child(6) { transition-delay: 400ms; }

/* Service cards — premium glass */
.service-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(8,6,18,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,107,0,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(255,107,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,0,0.08);
}

/* License badges — premium hover */
.license-badge {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(8,6,18,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.license-badge:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 24px rgba(255,107,0,0.1);
}
.license-badge.featured {
  border-color: rgba(255,107,0,0.25);
  background: linear-gradient(145deg, rgba(255,107,0,0.08) 0%, rgba(8,6,18,0.8) 100%);
}

/* Testimonial cards — glass with glow */
.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(8,6,18,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.4s ease;
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* ── TACHOMETER ANIMATION — Enhanced ──────────────────────── */
.hero-tacho {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  opacity: 0.04;
  animation: tachoSpin 30s linear infinite;
  pointer-events: none;
}
@keyframes tachoSpin { to { transform: translateY(-50%) rotate(360deg); } }
.tacho-ring-bg {
  fill: none;
  stroke: rgba(255,107,0,0.3);
  stroke-width: 0.5;
}
.tacho-ring {
  fill: none;
  stroke: rgba(255,107,0,0.6);
  stroke-width: 1;
  stroke-dasharray: 0 8;
  stroke-linecap: round;
}

/* Hero particles — enhanced glow */
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(255,107,0,0.5);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,107,0,0.3);
}
.hero-particles span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 75%; animation-delay: 1.2s; animation-duration: 10s; }
.hero-particles span:nth-child(3) { top: 35%; left: 85%; animation-delay: 2.4s; animation-duration: 7s; }
.hero-particles span:nth-child(4) { top: 75%; left: 25%; animation-delay: 3.6s; animation-duration: 9s; }
.hero-particles span:nth-child(5) { top: 10%; left: 55%; animation-delay: 0.8s; animation-duration: 11s; }
.hero-particles span:nth-child(6) { top: 85%; left: 60%; animation-delay: 4s; animation-duration: 8s; }
.hero-particles span:nth-child(7) { top: 45%; left: 5%; animation-delay: 2s; animation-duration: 12s; }
.hero-particles span:nth-child(8) { top: 50%; left: 45%; animation-delay: 5s; animation-duration: 6s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateY(-40px) translateX(20px) scale(1.5); opacity: 0.8; }
  90% { opacity: 0; }
}

/* Hero glows — ambient light */
.hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.12), transparent 70%);
  top: 30%; left: -10%;
  filter: blur(60px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,60,0,0.08), transparent 70%);
  bottom: 10%; right: -5%;
  filter: blur(80px);
  animation: glowPulse 8s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Hero racing stripe */
.hero-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #ff6b00 30%, #ff9100 50%, #ff6b00 70%, transparent 100%);
  opacity: 0.6;
}

/* ── SECTION TRANSITIONS — Premium ────────────────────────── */
.section {
  position: relative;
}
.services-section::before,
.testimonials-section::before,
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.4), transparent);
}

/* ── CONTACT PAGE — Premium Cards ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(8,6,18,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(255,107,0,0.2);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #ff6b00;
  flex-shrink: 0;
}
.contact-card-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.contact-value { display: block; font-size: 15px; font-weight: 600; color: var(--text); }
a.contact-value:hover { color: #ff6b00; }
.contact-note { font-size: 12px; color: var(--text-2); margin-top: 4px; }
.contact-form-wrap {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(8,6,18,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s ease;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,107,0,0.5);
  background: rgba(255,107,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

/* ── MOBILE RESPONSIVE — Enhanced ─────────────────────────── */
@media (max-width: 1024px) {
  .site-header { left: 12px; right: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .site-header {
    top: 12px; left: 24px; right: 24px; border-radius: 16px;
    border-radius: 0;
    border-left: none; border-right: none; border-top: none;
  }
  .site-header.scrolled { top: 0; }
  .main-nav {
    position: fixed;
    top: 12px; left: 24px; right: 24px; border-radius: 16px; bottom: 0;
    background: rgba(8,8,16,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: 999;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .nav-list li a {
    font-size: 20px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .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); }
  
  .hero-content { padding: 100px 16px 40px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-search-wrap { padding: 18px 16px 14px; border-radius: 16px; }
  .hero-stats { padding: 14px 16px; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .stat-num { font-size: 1.5rem; }
  
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .why-features { grid-template-columns: 1fr; }
  
  .hero-tacho, .hero-glow, .hero-glow-2 { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 12px; width: 100%; }
  .stat-divider { width: 40px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-tall { grid-row: span 1; }
  .licenses-grid { grid-template-columns: 1fr !important; }
}

/* ── CURSOR SPOTLIGHT on cards (JS-driven) ────────────────── */
.service-card, .license-badge, .testimonial-card, .contact-card {
  cursor: pointer;
}

/* ── MARQUEE — Proper infinite loop ───────────────────────── */
@keyframes st-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── LIGHT THEME — Enhanced ───────────────────────────────── */
[data-theme="light"] {
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --bg3: #e2e8f0;
  --surface: rgba(0,0,0,0.03);
  --text: #0f172a;
  --text-2: #475569;
  --muted: #94a3b8;
  --border-w: rgba(0,0,0,0.08);
  --glass-w: rgba(0,0,0,0.02);
}
[data-theme="light"] .site-header {
  background: rgba(248,250,252,0.8);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .site-header.scrolled {
  background: rgba(248,250,252,0.95);
}
[data-theme="light"] .nav-list li a { color: #475569; }
[data-theme="light"] .nav-list li a:hover { color: #ff6b00; background: rgba(255,107,0,0.06); }
[data-theme="light"] .hero-search-wrap {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .hero-search-wrap .tsc-select-wrap select {
  background-color: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.12) !important;
  color: #0f172a !important;
}
[data-theme="light"] .service-card,
[data-theme="light"] .license-badge,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .contact-card {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .contact-form-wrap {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.12);
  color: #0f172a;
}
[data-theme="light"] .hero-stats {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .faq-item {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .faq-question { color: #0f172a; }
[data-theme="light"] .step {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.06);
}

/* ── FIX: EVC WinOLS Badge — Proper sizing ────────────────── */
.evc-license-badge {
  display: inline-block;
  margin-top: 12px;
  position: relative;
}
.evc-license-badge img {
  width: auto;
  max-width: 240px;
  max-height: 80px;
  border-radius: 8px;
  border: 1px solid rgba(255,107,0,0.25);
  box-shadow: 0 4px 16px rgba(255,107,0,0.12);
  object-fit: contain;
  background: rgba(0,0,0,0.3);
  padding: 8px 12px;
}
.evc-license-badge:hover img {
  border-color: rgba(255,107,0,0.5);
  box-shadow: 0 6px 24px rgba(255,107,0,0.2);
}
.evc-license-badge:hover {
  transform: translateY(-2px);
}
/* Fix why-img to contain badge properly */
.winols-section .why-img {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.winols-section .why-img > img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   LIGHT MODE — Single authoritative override block
   ═══════════════════════════════════════════════════════════ */

/* Variables */
[data-theme="light"] {
  --bg: #f8f9fa; --bg2: #f0f1f3; --bg3: #e9eaed;
  --surface: rgba(0,0,0,0.03); --border: rgba(0,0,0,0.1); --border-w: rgba(0,0,0,0.08);
  --text: #1a1a2e; --text-2: #475569; --muted: #64748b;
  --glass: rgba(255,107,0,0.06); --glass-w: rgba(0,0,0,0.03);
  --shadow: 0 8px 32px rgba(0,0,0,0.08); --shadow-g: 0 0 24px rgba(255,107,0,0.08);
}

/* Base */
[data-theme="light"] body { background: var(--bg); color: var(--text); }
[data-theme="light"] a { color: var(--primary); }
[data-theme="light"] a:hover { color: var(--primary-d); }

/* Header / Navbar */
[data-theme="light"] .site-header { background: rgba(255,255,255,0.88) !important; border-color: rgba(0,0,0,0.06) !important; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
[data-theme="light"] .site-header.scrolled { background: rgba(255,255,255,0.96) !important; box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
[data-theme="light"] .nav-list li a { color: #475569 !important; }
[data-theme="light"] .nav-list li a:hover,
[data-theme="light"] .nav-list li.current-menu-item a { color: var(--primary) !important; background: rgba(255,107,0,0.06); }
[data-theme="light"] .lang-toggle, [data-theme="light"] .theme-toggle { color: #475569 !important; border-color: rgba(0,0,0,0.1) !important; }
[data-theme="light"] .lang-toggle:hover, [data-theme="light"] .theme-toggle:hover { color: var(--primary) !important; }
[data-theme="light"] .hamburger span { background: #1a1a2e !important; }

/* Hero */
[data-theme="light"] .hero-overlay { background: linear-gradient(135deg, rgba(248,249,250,0.85) 0%, rgba(248,249,250,0.5) 40%, rgba(248,249,250,0.15) 80%, transparent 100%) !important; }
[data-theme="light"] .hero-title { color: #1a1a2e !important; text-shadow: none !important; }
[data-theme="light"] .hero-subtitle { color: #334155 !important; text-shadow: none !important; }
[data-theme="light"] .hero-badge { background: rgba(255,107,0,0.1) !important; border-color: rgba(255,107,0,0.25) !important; }
[data-theme="light"] .hero-badge span { color: #1a1a2e !important; }
[data-theme="light"] .hero-stats { background: rgba(255,255,255,0.9) !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
[data-theme="light"] .hero-stats .stat-value, [data-theme="light"] .hero-stats .stat-big { color: #1a1a2e !important; }
[data-theme="light"] .hero-stats .stat-label { color: #64748b !important; }
[data-theme="light"] .hero-stats .stat-divider { background: rgba(0,0,0,0.1) !important; }
[data-theme="light"] .hero-stats .stat-plus { color: var(--primary) !important; }

/* Vehicle Search Widget */
[data-theme="light"] .hero-search-wrap { background: rgba(255,255,255,0.94) !important; border-color: rgba(0,0,0,0.1) !important; box-shadow: 0 8px 40px rgba(0,0,0,0.1) !important; }
[data-theme="light"] .tsc-select-wrap select {
  background-color: rgba(0,0,0,0.03) !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: #1a1a2e !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
}
[data-theme="light"] .tsc-vs-field label { color: #64748b !important; }
[data-theme="light"] .tsc-dcard { background: rgba(255,255,255,0.97) !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important; }
[data-theme="light"] .tsc-dcard-head, [data-theme="light"] .tsc-dcard-title { color: #1a1a2e !important; }
[data-theme="light"] .tsc-dcard-sub { color: #64748b !important; }
[data-theme="light"] .tsc-stab { color: #475569 !important; background: rgba(0,0,0,0.04) !important; border-color: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .tsc-stab.active, [data-theme="light"] .tsc-stab--active { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }
[data-theme="light"] .tsc-gauge-num { color: var(--primary) !important; }
[data-theme="light"] .tsc-gauge-gain { color: #16a34a !important; }
[data-theme="light"] .tsc-compare { background: rgba(0,0,0,0.02) !important; border-color: rgba(0,0,0,0.06) !important; color: #475569 !important; }
[data-theme="light"] .tsc-fuel-row { background: rgba(34,197,94,0.06) !important; border-color: rgba(34,197,94,0.12) !important; color: #475569 !important; }
[data-theme="light"] .tsc-ctas .tsc-btn-primary, [data-theme="light"] .tsc-ctas .tsc-btn-wa { color: #fff !important; }

/* Section Headers */
[data-theme="light"] .section-title, [data-theme="light"] .page-title { color: #1a1a2e !important; }
[data-theme="light"] .section-tag { background: rgba(255,107,0,0.08) !important; color: var(--primary) !important; border-color: rgba(255,107,0,0.2) !important; }
[data-theme="light"] .section-desc, [data-theme="light"] .section-header p { color: #475569 !important; }
[data-theme="light"] .text-gradient { background: linear-gradient(135deg, #ff6b00, #e05500) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; }
[data-theme="light"] .alt-bg { background: #f0f1f3 !important; }

/* Page Hero */
[data-theme="light"] .page-hero-overlay { background: linear-gradient(to top, #f8f9fa 0%, rgba(248,249,250,0.85) 30%, rgba(0,0,0,0.1) 100%) !important; }
[data-theme="light"] .page-hero-content h1 { color: #1a1a2e !important; }
[data-theme="light"] .page-hero-content p { color: #475569 !important; }

/* ALL card types */
[data-theme="light"] .service-card, [data-theme="light"] .license-badge,
[data-theme="light"] .testimonial-card, [data-theme="light"] .contact-card,
[data-theme="light"] .why-feature, [data-theme="light"] .step,
[data-theme="light"] .pricing-card, [data-theme="light"] .gallery-item,
[data-theme="light"] .credit-step, [data-theme="light"] .matrix-card,
[data-theme="light"] .trust-item, [data-theme="light"] .timeline-item,
[data-theme="light"] .faq-item, [data-theme="light"] .blog-card,
[data-theme="light"] .about-stat, [data-theme="light"] .contact-item,
[data-theme="light"] .portal-feature-card, [data-theme="light"] .spec {
  background: rgba(255,255,255,0.92) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
  color: #1a1a2e !important;
}

/* Card headings */
[data-theme="light"] .service-card h3, [data-theme="light"] .license-badge h3,
[data-theme="light"] .why-feature h3, [data-theme="light"] .step h3,
[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"] .faq-item summary, [data-theme="light"] .faq-question,
[data-theme="light"] .matrix-card-name, [data-theme="light"] .matrix-block-title,
[data-theme="light"] .blog-card-title a, [data-theme="light"] .portal-feature-card h3,
[data-theme="light"] .contact-card h4, [data-theme="light"] .contact-item h4,
[data-theme="light"] .winols-title, [data-theme="light"] .spec-val { color: #1a1a2e !important; }

/* Card body text */
[data-theme="light"] .service-card p, [data-theme="light"] .license-badge p,
[data-theme="light"] .why-feature p, [data-theme="light"] .step p,
[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"] .faq-answer, [data-theme="light"] .matrix-card-desc,
[data-theme="light"] .blog-excerpt, [data-theme="light"] .portal-feature-card p,
[data-theme="light"] .contact-note, [data-theme="light"] .winols-desc,
[data-theme="light"] .trust-item span, [data-theme="light"] .spec-key,
[data-theme="light"] .timeline-extra, [data-theme="light"] .testimonial-text { color: #475569 !important; }

/* Muted text */
[data-theme="light"] .blog-date, [data-theme="light"] .testimonial-author,
[data-theme="light"] .matrix-card-type, [data-theme="light"] .matrix-card-unit { color: #64748b !important; }

/* Icons */
[data-theme="light"] .service-icon, [data-theme="light"] .why-icon,
[data-theme="light"] .contact-icon, [data-theme="light"] .portal-feature-icon,
[data-theme="light"] .matrix-block-icon { color: var(--primary) !important; }

/* Testimonials */
[data-theme="light"] .testimonial-name { color: #1a1a2e !important; }
[data-theme="light"] .testimonial-avatar { border-color: rgba(255,107,0,0.2) !important; background: rgba(255,107,0,0.08) !important; color: var(--primary) !important; }
[data-theme="light"] .testimonial-stars { color: var(--primary) !important; }

/* Contact form */
[data-theme="light"] .contact-form-wrap { background: rgba(255,255,255,0.95) !important; border-color: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .contact-form-wrap h3 { color: #1a1a2e !important; }
[data-theme="light"] .contact-value, [data-theme="light"] .contact-value a { color: #1a1a2e !important; }

/* Forms */
[data-theme="light"] .form-group label { color: #475569 !important; }
[data-theme="light"] .form-group input, [data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #fff !important; border-color: rgba(0,0,0,0.12) !important; color: #1a1a2e !important;
}
[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) !important; box-shadow: 0 0 0 3px rgba(255,107,0,0.1) !important; }
[data-theme="light"] .form-group input::placeholder, [data-theme="light"] .form-group textarea::placeholder { color: #94a3b8 !important; }

/* Buttons */
[data-theme="light"] .btn-primary { color: #fff !important; }
[data-theme="light"] .btn-outline { color: #1a1a2e !important; border-color: rgba(0,0,0,0.15) !important; }
[data-theme="light"] .btn-outline:hover { color: var(--primary) !important; border-color: var(--primary) !important; }
[data-theme="light"] .btn-whatsapp { color: #fff !important; }

/* Steps */
[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; }

/* Matrix / Pricing */
[data-theme="light"] .matrix-tab { background: rgba(0,0,0,0.04) !important; color: #475569 !important; border-color: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .matrix-tab.active { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }
[data-theme="light"] .matrix-cat-block { border-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .matrix-block-header { background: rgba(0,0,0,0.02) !important; }
[data-theme="light"] .matrix-card-price { color: var(--primary) !important; }
[data-theme="light"] .matrix-svc { border-color: rgba(0,0,0,0.04) !important; }
[data-theme="light"] .matrix-svc:hover { background: rgba(255,107,0,0.03) !important; }

/* CTA */
[data-theme="light"] .cta-banner, [data-theme="light"] .cta-banner h2,
[data-theme="light"] .cta-banner p { color: #fff !important; }
[data-theme="light"] .cta-banner-overlay { background: rgba(0,0,0,0.7) !important; }
[data-theme="light"] .matrix-cta { background: rgba(255,107,0,0.05) !important; border-color: rgba(255,107,0,0.15) !important; }
[data-theme="light"] .matrix-cta-inner h3 { color: #1a1a2e !important; }
[data-theme="light"] .matrix-cta-inner p { color: #475569 !important; }

/* Timeline */
[data-theme="light"] .timeline-line { background: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .timeline-date { color: var(--primary) !important; }
[data-theme="light"] .timeline-img { border-color: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .timeline-toggle { color: var(--primary) !important; background: rgba(255,107,0,0.05) !important; border-color: rgba(255,107,0,0.2) !important; }

/* Gallery */
[data-theme="light"] .gallery-overlay { background: rgba(255,255,255,0.88) !important; }
[data-theme="light"] .gallery-overlay span { color: #1a1a2e !important; }

/* WinOLS */
[data-theme="light"] .winols-section { background: rgba(255,255,255,0.6) !important; }
[data-theme="light"] .winols-verify-btn { color: var(--primary) !important; border-color: rgba(255,107,0,0.25) !important; }

/* Trust bar */
[data-theme="light"] .trust-bar { background: rgba(255,255,255,0.9) !important; border-color: rgba(0,0,0,0.06) !important; }

/* Map */
[data-theme="light"] .map-wrap { border-color: rgba(0,0,0,0.08) !important; }

/* Footer stays dark always */
[data-theme="light"] .site-footer { background: #0d0d18 !important; color: rgba(255,255,255,0.7) !important; }
[data-theme="light"] .footer-brand p { color: rgba(255,255,255,0.5) !important; }
[data-theme="light"] .footer-nav-col h4 { color: rgba(255,255,255,0.9) !important; }
[data-theme="light"] .footer-nav-col a { color: rgba(255,255,255,0.5) !important; }
[data-theme="light"] .footer-nav-col a:hover { color: var(--primary) !important; }
[data-theme="light"] .footer-contact a, [data-theme="light"] .footer-contact span { color: rgba(255,255,255,0.5) !important; }
[data-theme="light"] .footer-social a { color: rgba(255,255,255,0.5) !important; }
[data-theme="light"] .footer-social a:hover { color: var(--primary) !important; }
[data-theme="light"] .footer-bottom { background: rgba(0,0,0,0.3) !important; }
[data-theme="light"] .footer-bottom p, [data-theme="light"] .footer-bottom a { color: rgba(255,255,255,0.4) !important; }

/* WhatsApp float */
[data-theme="light"] .whatsapp-float { box-shadow: 0 4px 20px rgba(37,211,102,0.25) !important; }

/* Scroll reveal */
[data-theme="light"] .sr { opacity: 0; }
[data-theme="light"] .sr.visible { opacity: 1; }

/* Mobile nav */
@media (max-width: 768px) {
  [data-theme="light"] .main-nav { background: rgba(255,255,255,0.98) !important; border-color: rgba(0,0,0,0.06) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important; }
  [data-theme="light"] .nav-list li a { color: #1a1a2e !important; }
}

/* ── Portal Features Section ─────────────────────────────── */
.portal-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portal-feature-card {
  background: var(--glass-w); border: 1px solid var(--border-w); border-radius: var(--radius-lg);
  padding: 2rem; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); cursor: default;
}
.portal-feature-card:hover {
  border-color: rgba(255,107,0,0.3); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 30px rgba(255,107,0,0.06);
  background: rgba(255,255,255,0.06);
}
.portal-feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05));
  border: 1px solid rgba(255,107,0,0.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 1.25rem;
}
.portal-feature-card h3 { color: var(--text); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.portal-feature-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .portal-features-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .portal-features-grid { grid-template-columns: repeat(2, 1fr); } }

/* Portal features light mode */
[data-theme="light"] .portal-feature-card { background: rgba(255,255,255,0.92) !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important; }
[data-theme="light"] .portal-feature-card:hover { border-color: rgba(255,107,0,0.3) !important; box-shadow: 0 12px 36px rgba(0,0,0,0.08) !important; background: #fff !important; }
[data-theme="light"] .portal-feature-icon { background: rgba(255,107,0,0.08) !important; border-color: rgba(255,107,0,0.15) !important; }

/* ── TunerSuite Connect Plugin — Light Mode Override ───── */
[data-theme="light"] .tsc-vs {
  background: rgba(255,255,255,0.95) !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .tsc-vs-selects { border-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .tsc-vs-field label { color: #475569 !important; }
/* removed duplicate - consolidated below */
[data-theme="light"] .tsc-select-wrap select:hover,
[data-theme="light"] .tsc-select-wrap select:focus {
  border-color: #ff6b00 !important; background-color: rgba(255,107,0,0.03) !important;
}
[data-theme="light"] .tsc-select-wrap select option { background-color: #fff !important; color: #1a1a2e !important; }
[data-theme="light"] .tsc-dcard {
  background: rgba(255,255,255,0.98) !important; border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .tsc-dcard-head { border-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .tsc-dcard-title { color: #1a1a2e !important; text-shadow: none !important; }
[data-theme="light"] .tsc-dcard-sub { color: #64748b !important; }
[data-theme="light"] .tsc-stabs { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .tsc-stab { color: #475569 !important; background: transparent !important; }
[data-theme="light"] .tsc-stab:hover { color: #1a1a2e !important; }
[data-theme="light"] .tsc-stab--active, [data-theme="light"] .tsc-stab.active {
  background: #ff6b00 !important; color: #fff !important; border-color: #ff6b00 !important;
}
[data-theme="light"] .tsc-gauges-row { background: rgba(0,0,0,0.02) !important; border-color: rgba(0,0,0,0.04) !important; }
[data-theme="light"] .tsc-gauge-label { color: #64748b !important; }
[data-theme="light"] .tsc-gauge-num { color: #ff6b00 !important; text-shadow: none !important; }
[data-theme="light"] .tsc-gauge-gain { color: #16a34a !important; }
[data-theme="light"] .tsc-stage-badge { color: #ff6b00 !important; background: rgba(255,107,0,0.08) !important; border-color: rgba(255,107,0,0.2) !important; }
[data-theme="light"] .tsc-stage-gains { color: #475569 !important; }
[data-theme="light"] .tsc-compare { background: rgba(0,0,0,0.02) !important; border-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .tsc-compare-label { color: #64748b !important; }
[data-theme="light"] .tsc-compare-val { color: #1a1a2e !important; }
[data-theme="light"] .tsc-bar-fill { opacity: 0.8; }
[data-theme="light"] .tsc-fuel-row { background: rgba(34,197,94,0.06) !important; border-color: rgba(34,197,94,0.12) !important; }
[data-theme="light"] .tsc-fuel-label { color: #475569 !important; }
[data-theme="light"] .tsc-fuel-val { color: #16a34a !important; }
[data-theme="light"] .tsc-ctas { border-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .tsc-btn { color: #fff !important; }
[data-theme="light"] .tsc-btn-primary { color: #fff !important; }
[data-theme="light"] .tsc-btn-wa { color: #fff !important; }
[data-theme="light"] .tacho-ring-bg { stroke: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .tsc-fb-petrol { color: #16a34a !important; background: rgba(34,197,94,0.08) !important; }
[data-theme="light"] .tsc-fb-diesel { color: #2563eb !important; background: rgba(37,99,235,0.08) !important; }

/* ═══════════════════════════════════════════════════════════
   LIGHT MODE — Missing TunerSuite Connect Overrides
   ═══════════════════════════════════════════════════════════ */

/* Gauge SVG arcs — darker on light bg */
[data-theme="light"] .tsc-arc-bg { stroke: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .tsc-arc-fill { stroke: #ff6b00 !important; }
[data-theme="light"] .tsc-arc-glow { stroke: #ff6b00 !important; opacity: 0.15 !important; }

/* Compare bars */
[data-theme="light"] .tsc-cmp-label { color: #475569 !important; }
[data-theme="light"] .tsc-cmp-val { color: #1a1a2e !important; }
[data-theme="light"] .tsc-cmp-row { color: #475569 !important; }
[data-theme="light"] .tsc-cmp-track { background: rgba(0,0,0,0.06) !important; }

/* Fuel savings */
[data-theme="light"] .tsc-fuel-lbl { color: #475569 !important; }
[data-theme="light"] .tsc-fuel-icon { background: rgba(34,197,94,0.1) !important; }
[data-theme="light"] .tsc-fuel-icon svg { stroke: #16a34a !important; }

/* Gauge labels and units */
[data-theme="light"] .tsc-gauge-lbl-top { color: #64748b !important; }
[data-theme="light"] .tsc-gauge-unit { color: #94a3b8 !important; }

/* Stage chip between gauges */
[data-theme="light"] .tsc-stage-chip { color: #ff6b00 !important; background: rgba(255,107,0,0.08) !important; border-color: rgba(255,107,0,0.2) !important; }

/* Gains label below gauges */
[data-theme="light"] .tsc-vs-label { color: #16a34a !important; }

/* Hero search label ("Discover your vehicle's potential") */
[data-theme="light"] .hero-search-label { color: #1a1a2e !important; }
[data-theme="light"] .hero-search-label span { color: #1a1a2e !important; }
[data-theme="light"] .hero-search-label svg { stroke: #ff6b00 !important; }

/* select arrow consolidated into main rule */

/* Dyno card inner backgrounds for light */
[data-theme="light"] .tsc-gauges-row { box-shadow: none !important; }
[data-theme="light"] .tsc-compare { box-shadow: none !important; }
[data-theme="light"] .tsc-dcard { box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important; }

/* Ensure fuel badges readable */
[data-theme="light"] .tsc-fb-petrol { color: #16a34a !important; background: rgba(34,197,94,0.1) !important; border-color: rgba(34,197,94,0.3) !important; }
[data-theme="light"] .tsc-fb-diesel { color: #2563eb !important; background: rgba(37,99,235,0.1) !important; border-color: rgba(37,99,235,0.3) !important; }
[data-theme="light"] .tsc-fb-hybrid { color: #7c3aed !important; background: rgba(124,58,237,0.1) !important; border-color: rgba(124,58,237,0.3) !important; }
[data-theme="light"] .tsc-fb-electric { color: #0891b2 !important; background: rgba(8,145,178,0.1) !important; border-color: rgba(8,145,178,0.3) !important; }
[data-theme="light"] .tsc-fb-lpg { color: #d97706 !important; background: rgba(217,119,6,0.1) !important; border-color: rgba(217,119,6,0.3) !important; }
[data-theme="light"] .tsc-fb-other { color: #475569 !important; background: rgba(71,85,105,0.1) !important; border-color: rgba(71,85,105,0.3) !important; }

/* WhatsApp btn text stays white */
[data-theme="light"] .tsc-btn-wa { color: #25d366 !important; }
[data-theme="light"] .tsc-btn-wa:hover { color: #fff !important; }
