:root {
  --bg: #07080A;
  --surface: #0C1018;
  --card: #131C28;
  --card-h: #1A2535;
  --cyan: #00C8FF;
  --cyan-h: #33D4FF;
  --cyan-dim: rgba(0, 200, 255, 0.08);
  --cyan-b: rgba(0, 200, 255, 0.2);
  --orange: #FF4A00;
  --orange-dim: rgba(255, 74, 0, 0.1);
  --steel: #8C9BAD;
  --steel-d: rgba(140, 155, 173, 0.12);
  --text: #D8E6F0;
  --muted: #5E7287;
  --border: rgba(255, 255, 255, 0.07);
  --r: 14px;
  --r-sm: 9px;
  --fh: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fb: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 500;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.30s; }
.d6 { transition-delay: 0.36s; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: var(--fh);
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

.sec-h {
  font-family: var(--fh);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 10px;
}

.sec-sub {
  color: var(--steel);
  font-size: 0.95rem;
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.65;
}

/* NAVBAR */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--fh);
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--cyan);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.logo-sub {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--steel);
  cursor: pointer;
  font-family: var(--fb);
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan-b);
}

.nav-cta {
  background: var(--cyan);
  color: #000;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.25);
  cursor: pointer;
  border: none;
}

.nav-cta:hover {
  background: var(--cyan-h);
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.5);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
}

/* MOBILE MENU */
.mm {
  display: flex;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  flex-direction: column;
  max-height: 0;
  overflow-y: auto;
  padding: 0 28px;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), padding 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm.open {
  max-height: 80vh;
  padding: 18px 28px 26px;
}

.mm a {
  color: var(--steel);
  font-size: 0.86rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  transition: color 0.2s;
}

.mm a:last-of-type {
  border-bottom: none;
}

.mm a:hover {
  color: var(--cyan);
}

.mm-cta {
  background: var(--cyan) !important;
  color: #000 !important;
  text-align: center;
  border-radius: var(--r-sm);
  padding: 13px !important;
  font-weight: 800 !important;
  margin-top: 12px;
  border-bottom: none !important;
}

/* HERO */
.hero {
  padding: 120px 28px 84px;
  min-height: 94vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.pexels.com/photos/4489761/pexels-photo-4489761.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center 40%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 8, 10, 0.97) 40%, rgba(7, 8, 10, 0.85) 100%);
  z-index: 0;
}

canvas#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-light {
  position: absolute;
  top: -60px;
  left: 20%;
  width: 900px;
  height: 1100px;
  background: conic-gradient(from 0deg at 50% 0%, transparent 82%, rgba(0, 200, 255, 0.035) 86%, rgba(0, 200, 255, 0.07) 88%, rgba(0, 200, 255, 0.035) 90%, transparent 94%);
  transform-origin: 50% 0%;
  animation: sweep 12s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sweep {
  0% { transform: rotate(-20deg); }
  50% { transform: rotate(20deg); }
  100% { transform: rotate(-20deg); }
}

.hero-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: repeating-linear-gradient(90deg, rgba(0, 200, 255, 0.025) 0px, rgba(0, 200, 255, 0.025) 1px, transparent 1px, transparent 72px),
              repeating-linear-gradient(0deg, rgba(0, 200, 255, 0.025) 0px, rgba(0, 200, 255, 0.025) 1px, transparent 1px, transparent 72px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-b);
  color: var(--cyan);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 20px;
  margin-bottom: 22px;
  font-weight: 700;
  font-family: var(--fh);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: livepulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livepulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 200, 255, 0); }
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(2.8rem, 5.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: 20px;
}

.hero-title .line2 {
  display: block;
  color: var(--steel);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
}

.hero-sub {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 8px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-founder {
  font-size: 0.82rem;
  color: var(--steel);
  margin-bottom: 32px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--cyan);
  color: #000;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
  font-family: var(--fb);
}

.btn-primary:hover {
  background: var(--cyan-h);
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
}

.btn-sec {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: var(--fb);
}

.btn-sec:hover {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, 0.08);
  color: var(--cyan);
}

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.ht-item {
  display: flex;
  flex-direction: column;
}

.ht-num {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.ht-lbl {
  font-size: 0.72rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 500;
}

/* OBD CONSOLE */
.obd {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 200, 255, 0.1);
}

.obd-header {
  background: rgba(0, 200, 255, 0.06);
  border-bottom: 1px solid var(--cyan-b);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.obd-title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
  font-family: var(--fh);
  font-weight: 700;
}

.obd-dots {
  display: flex;
  gap: 6px;
}

.obd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.obd-body {
  padding: 16px 18px;
}

.obd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  gap: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, padding-left 0.2s;
}

.obd-row:hover {
  background: rgba(0, 200, 255, 0.05);
  padding-left: 6px;
  padding-right: 6px;
}

.obd-row:last-child {
  border-bottom: none;
}

.obd-code {
  color: var(--cyan);
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0.06em;
  font-family: 'Courier New', monospace;
}

.obd-sys {
  color: var(--steel);
  font-size: 0.72rem;
  width: 80px;
  flex-shrink: 0;
}

.obd-desc {
  flex: 1;
  color: var(--text);
  font-size: 0.77rem;
}

.obd-status {
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ok { background: rgba(76, 175, 80, 0.15); color: #4caf50; }
.err { background: rgba(255, 74, 0, 0.15); color: var(--orange); }
.warn { background: rgba(255, 180, 0, 0.15); color: #FFB400; }
.scan { background: var(--cyan-dim); color: var(--cyan); }

.obd-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--cyan-b);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.obd-scanning {
  font-size: 0.72rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.scan-bar {
  width: 48px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.scan-bar::after {
  content: '';
  display: block;
  width: 55%;
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
  animation: scanmove 2s ease-in-out infinite;
}

@keyframes scanmove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.obd-vin {
  font-size: 0.68rem;
  color: var(--steel);
  font-family: 'Courier New', monospace;
}

/* BRANDS MARQUEE */
.brands {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(12, 16, 24, 0.5);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: mq 28s linear infinite;
  padding: 14px 0;
}

.brands:hover .brands-track {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  font-family: var(--fh);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

.brand-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan-b);
}

@keyframes mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION BACKGROUNDS & PARALLAX */
.process, .services, .team, .cases, .reviews, .booking, .estimator-sec, .beforeafter-sec, .hotspot-sec, .bay-radar-sec, .vin-ocr-sec, .defects-sec, .pricing-packages-sec, .sound-ai-sec, .lfp-sec, .status-tracker-sec, .amenities-sec, .predictive-sec, .tyre-sec, .fleet-sec, .wallet-sec {
  position: relative;
  overflow: hidden;
}

.process::before, .services::before, .team::before, .cases::before, .reviews::before, .booking::before, .estimator-sec::before, .beforeafter-sec::before, .hotspot-sec::before, .bay-radar-sec::before, .vin-ocr-sec::before, .defects-sec::before, .pricing-packages-sec::before, .sound-ai-sec::before, .lfp-sec::before, .status-tracker-sec::before, .amenities-sec::before, .predictive-sec::before, .tyre-sec::before, .fleet-sec::before, .wallet-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.process .wrap, .services .wrap, .team .wrap, .cases .wrap, .reviews .wrap, .booking .wrap, .faq .wrap, .gallery .wrap, .video-sec .wrap, .estimator-sec .wrap, .beforeafter-sec .wrap, .hotspot-sec .wrap, .bay-radar-sec .wrap, .vin-ocr-sec .wrap, .defects-sec .wrap, .pricing-packages-sec .wrap, .sound-ai-sec .wrap, .lfp-sec .wrap, .status-tracker-sec .wrap, .amenities-sec .wrap, .predictive-sec .wrap, .tyre-sec .wrap, .fleet-sec .wrap, .wallet-sec .wrap {
  position: relative;
  z-index: 2;
}

/* DAMAGE SCANNER & PDR ESTIMATOR */
.damage-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.damage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.damage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.damage-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  background: var(--card-h);
}

.damage-card.active {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}

/* OIL FINDER & FLUID ENGINE */
.oil-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.oil-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 860px) {
  .oil-card {
    grid-template-columns: 1fr;
  }
}

.engine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.engine-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--steel);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.engine-chip:hover {
  color: var(--text);
  border-color: var(--cyan);
}

.engine-chip.active {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}

/* WARRANTY CERTIFICATE CHECKER */
.warranty-sec {
  padding: 90px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.warranty-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 860px) {
  .warranty-card {
    grid-template-columns: 1fr;
  }
}

/* PREDICTIVE HEALTH & FLEET */
.predictive-sec, .tyre-sec, .fleet-sec, .wallet-sec {
  padding: 90px 0;
  border-top: 1px solid var(--border);
}

.predictive-sec { background: var(--surface); }
.tyre-sec { background: var(--bg); }
.fleet-sec { background: var(--surface); }
.wallet-sec { background: var(--bg); }

.predictive-card, .tyre-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 860px) {
  .predictive-card, .tyre-card {
    grid-template-columns: 1fr;
  }
}

.health-bar-wrapper {
  margin-bottom: 16px;
}

.health-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px;
}

.health-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.health-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.4s ease, background 0.4s ease;
}

/* HOTSPOT CAR BLUEPRINT & PINS */
.hotspot-sec {
  padding: 92px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hotspot-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hotspot-car-stage {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.08) 0%, rgba(7, 9, 14, 0.95) 75%);
  border: 1px solid var(--cyan-b);
  border-radius: 20px;
  padding: 24px;
  aspect-ratio: 600/320;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.car-blueprint-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hotspot-pin {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--fh);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.4);
  transform: translate(-50%, -50%);
}

.hotspot-pin:hover, .hotspot-pin.active {
  background: var(--cyan);
  color: #000;
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 26px rgba(0, 200, 255, 0.8);
}

.pin-engine { top: 38%; left: 32%; }
.pin-brakes { top: 68%; left: 25%; }
.pin-suspension { top: 68%; left: 77%; }
.pin-optics { top: 26%; left: 16%; }
.pin-climate { top: 38%; left: 62%; }

.hotspot-info-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 28px 24px;
}

.tyre-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* ═══════════ CAR BRAND MASTER HUB & WORKLOG ═══════════ */
.cars-hub-sec {
  padding: 100px 0;
  background: #06080d;
  border-bottom: 1px solid var(--border);
}

.brand-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}

.brand-filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--steel);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.brand-filter-btn:hover, .brand-filter-btn.active {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
}

.brand-showcase-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.brand-detail-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

@media (max-width: 960px) {
  .brand-detail-card {
    grid-template-columns: 1fr;
  }
}

.brand-card-media {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
}

.brand-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.2) 0%, rgba(7, 9, 14, 0.95) 100%);
}

.brand-media-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.brand-card-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid var(--cyan-b);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.brand-feature-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-feature-list li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.brand-feature-list li strong {
  color: var(--cyan);
}

/* ═══════════ LIVE WORKSHOP GARAGE LOG ═══════════ */
.worklog-sec {
  padding: 100px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.worklog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.worklog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.worklog-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 200, 255, 0.2);
}

.worklog-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}

.worklog-status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.worklog-status.done {
  background: rgba(39, 201, 63, 0.85);
  color: #000;
}

.worklog-status.progress {
  background: rgba(255, 189, 46, 0.85);
  color: #000;
}

.worklog-status.dyno {
  background: rgba(0, 200, 255, 0.85);
  color: #000;
}

.worklog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.worklog-model {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.worklog-engine {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 12px;
}

.worklog-desc {
  font-size: 12.5px;
  color: var(--steel);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.worklog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

/* ═══════════ 1. INTERACTIVE X-RAY CHASSIS & ANATOMY ═══════════ */
.xray-sec {
  padding: 100px 0;
  background: #05070a;
  border-bottom: 1px solid var(--border);
}

.xray-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

@media (max-width: 960px) {
  .xray-card { grid-template-columns: 1fr; padding: 24px; }
}

.xray-screen-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cyan-b);
  aspect-ratio: 16/10;
  background: radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.08) 0%, rgba(7, 9, 14, 0.98) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(0, 200, 255, 0.1);
}

.xray-layer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.xray-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.xray-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.xray-btn:hover, .xray-btn.active {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
}

.xray-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--cyan-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ═══════════ 2. LIVE TELEMETRY CAN-BUS OSCILLOSCOPE ═══════════ */
.telemetry-sec {
  padding: 100px 0;
  background: #080b11;
  border-bottom: 1px solid var(--border);
}

.telemetry-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 20px;
  padding: 36px;
}

.telemetry-canvas-frame {
  width: 100%;
  height: 240px;
  background: #030407;
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.telemetry-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.tel-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.tel-stat-val {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.tel-stat-lbl {
  font-size: 11px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rpm-slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--cyan-b);
  padding: 16px 24px;
  border-radius: 12px;
}

/* ═══════════ 3. MASTER ENGINE OVERHAUL 5-STAGE ═══════════ */
.engine-build-sec {
  padding: 100px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.engine-build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.engine-step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.engine-step-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  background: var(--card-h);
}

.engine-step-num {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

/* ═══════════ 4. VIP TELEGRAM BOT CLIENT SIMULATOR ═══════════ */
.tg-sim-sec {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, #0d1624 0%, #06090e 100%);
  border-bottom: 1px solid var(--border);
}

.tg-sim-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .tg-sim-layout { grid-template-columns: 1fr; }
}

.phone-mockup-frame {
  max-width: 360px;
  margin: 0 auto;
  background: #17212b;
  border-radius: 36px;
  border: 4px solid #2b3644;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.phone-mockup-header {
  background: #232e3c;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-mockup-body {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 400px;
}

.tg-msg-bubble {
  background: #232e3c;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tg-action-btn-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.tg-action-btn {
  flex: 1;
  background: rgba(0, 200, 255, 0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.tg-action-btn:hover {
  background: var(--cyan);
  color: #000;
}

/* ═══════════ B2B FLEET PORTAL ═══════════ */
.fleet-sec {
  padding: 92px 28px;
  background: linear-gradient(135deg, #0a121e 0%, #06090e 100%);
  border-bottom: 1px solid var(--border);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

/* SPECIALIZED EQUIPMENT SHOWCASE */
.equip-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.equip-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.equip-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  background: var(--card-h);
}

.equip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.equip-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-b);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* 120-POINT PRE-PURCHASE INSPECTION PROTOCOL */
.inspect-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.inspect-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 36px 30px;
}

.inspect-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.inspect-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--steel);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.inspect-tab-btn:hover {
  color: var(--text);
  border-color: var(--cyan);
}

.inspect-tab-btn.active {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}

.inspect-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.inspect-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}

.inspect-check-icon {
  color: #10b981;
  font-weight: 800;
  font-size: 14px;
}

/* TIME SLOT SELECTION BUTTONS IN ESTIMATOR & BOOKING */
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.timeslot-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.timeslot-btn:hover {
  border-color: var(--cyan);
  background: var(--card-h);
}

.timeslot-btn.active {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, 0.12);
}

.timeslot-time {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.timeslot-slots {
  font-size: 10.5px;
  color: #10b981;
  margin-top: 2px;
}

/* WALNUT BLASTING CARBON REMOVAL CALLOUT */
/* DEALER VS FORGE COMPARISON MATRIX */
.compare-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.compare-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 36px 30px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.compare-table th, .compare-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.compare-table th {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-dealer {
  color: #ff5f56;
  background: rgba(255, 95, 86, 0.04);
}

.compare-forge {
  color: #10b981;
  background: rgba(0, 200, 255, 0.05);
  font-weight: 700;
}

/* CONCIERGE VALET PICKUP SIMULATOR */
.valet-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.valet-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 860px) {
  .valet-card {
    grid-template-columns: 1fr;
  }
}

.district-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.district-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--steel);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.district-chip:hover {
  color: var(--text);
  border-color: var(--cyan);
}

.district-chip.active {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}

/* MULTI-CAMERA LIVE WORKSHOP STREAM SIMULATOR */
.live-cam-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.live-cam-box {
  background: #000;
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.live-cam-header {
  background: rgba(12, 16, 24, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cam-switch-btns {
  display: flex;
  gap: 8px;
}

.cam-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--steel);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cam-btn.active {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
}

.live-feed-viewport {
  height: 420px;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: background-image 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.cam-overlay-badge {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(0, 200, 255, 0.3);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 12px;
  color: #fff;
}

/* DSR DIGITAL SERVICE BOOK PASSPORT */
.dsr-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.dsr-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.dsr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.dsr-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.dsr-entry {
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--cyan);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.dsr-entry-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dsr-metrics-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  background: rgba(0, 200, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 24px;
}

/* DYNO CHIPTUNING PERFORMANCE CALCULATOR */
.dyno-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.dyno-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 36px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .dyno-card {
    grid-template-columns: 1fr;
  }
}

.dyno-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.dyno-stat-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.dyno-stat-val {
  font-family: var(--fh);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  margin-top: 2px;
}

/* VISUAL SOUND FREQUENCY AI DIAGNOSTICS */
.spectrum-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.spectrum-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 860px) {
  .spectrum-card {
    grid-template-columns: 1fr;
  }
}

.symptom-chip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.symptom-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.symptom-btn:hover {
  border-color: var(--cyan);
}

.symptom-btn.active {
  background: rgba(0, 200, 255, 0.08);
  border-color: var(--cyan);
  color: #fff;
}

/* EV & HYBRID HIGH-VOLTAGE LAB */
.ev-sec {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.ev-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.ev-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

/* SPARE PARTS OEM WAREHOUSE SEARCH */
.parts-sec {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.parts-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}

.parts-table {
  width: 100%;
  border-collapse: collapse;
}

.parts-table th, .parts-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.parts-table th {
  background: rgba(0, 0, 0, 0.4);
  font-family: var(--fh);
  font-size: 11.5px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}




.fleet-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: 0.25s;
}

.fleet-feature-card:hover {
  border-color: var(--cyan-b);
  transform: translateY(-3px);
}

/* ═══════════ APPLE WALLET PASS GENERATOR ═══════════ */
.wallet-sec {
  padding: 92px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.wallet-card-preview {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 26px;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 200, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.wallet-card-preview::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

/* ═══════════ LIVE STATUS TRACKER BY PHONE ═══════════ */
.status-tracker-sec {
  padding: 80px 28px;
  background: linear-gradient(135deg, #0a111c 0%, #06090f 100%);
  border-bottom: 1px solid var(--border);
}

.tracker-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* ═══════════ AMENITIES & WAITING LOUNGE ═══════════ */
.amenities-sec {
  padding: 80px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.amenity-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 18px;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.amenity-card:hover {
  border-color: var(--cyan-b);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.1);
}

.amenity-ico {
  font-size: 26px;
  margin-bottom: 4px;
}

/* ═══════════ AI NOISE DIAGNOSTIC ANALYZER ═══════════ */
.sound-ai-sec {
  padding: 92px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.noise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.noise-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.noise-card:hover, .noise-card.active {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.08) 0%, var(--card) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 200, 255, 0.15);
}

.waveform-anim {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 22px;
}

.wave-bar {
  width: 3px;
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
  animation: waveBar 0.8s ease-in-out infinite alternate;
}

.wave-bar:nth-child(2) { animation-delay: 0.15s; }
.wave-bar:nth-child(3) { animation-delay: 0.3s; }
.wave-bar:nth-child(4) { animation-delay: 0.45s; }
.wave-bar:nth-child(5) { animation-delay: 0.6s; }

@keyframes waveBar {
  0% { height: 20%; opacity: 0.3; }
  100% { height: 100%; opacity: 1; }
}

/* ═══════════ LFP PAINT THICKNESS 3D INSPECTOR ═══════════ */
.lfp-sec {
  padding: 92px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.lfp-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.lfp-badge-oem { color: #10b981; background: rgba(16, 185, 129, 0.12); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 800; }
.lfp-badge-rep { color: #FFB400; background: rgba(255, 180, 0, 0.12); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 800; }
.lfp-badge-put { color: var(--orange); background: rgba(255, 74, 0, 0.12); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 800; }

/* ═══════════ AUTO-VIN / PLATE SCANNER ═══════════ */
.vin-ocr-sec {
  padding: 80px 28px;
  background: linear-gradient(135deg, #0a111c 0%, #06090f 100%);
  border-bottom: 1px solid var(--border);
}

.vin-scanner-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.plate-input-wrapper {
  display: flex;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #000;
  overflow: hidden;
  align-items: center;
  height: 52px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.plate-flag {
  background: #005BBB;
  color: #fff;
  width: 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  padding: 2px;
}

.plate-flag-ua {
  width: 16px;
  height: 10px;
  background: linear-gradient(to bottom, #005BBB 50%, #FFD500 50%);
  border-radius: 2px;
  margin-bottom: 2px;
}

.plate-input-field {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 14px;
  outline: none;
}

/* ═══════════ INTERACTIVE DEFECT SHEET ═══════════ */
.defects-sec {
  padding: 92px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.defect-table {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.defect-row {
  display: grid;
  grid-template-columns: 120px 1.5fr 1fr 140px 140px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.defect-row:last-child {
  border-bottom: none;
}

.defect-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-approve {
  background: #10b981;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-approve:hover {
  background: #059669;
}

/* ═══════════ B2B PACKAGES DECK & ROI CALCULATOR ═══════════ */
.pricing-packages-sec {
  padding: 92px 28px;
  background: linear-gradient(135deg, #090e17 0%, #060a10 100%);
  border-bottom: 1px solid var(--border);
}

.roi-box {
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  padding: 24px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-b);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.pkg-featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.08) 0%, var(--card) 100%);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.15);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════ HOTSPOT DIAGNOSTIC MATRIX ═══════════ */
.hotspot-sec {
  padding: 92px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hotspot-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hotspot-car-stage {
  position: relative;
  border-radius: var(--r);
  background: radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.08) 0%, rgba(12, 16, 24, 0.95) 75%);
  border: 1px solid var(--cyan-b);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  min-height: 380px;
}

.car-blueprint-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.15));
}

.hotspot-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.2);
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.5);
  font-size: 13px;
  color: #fff;
  font-weight: 800;
  z-index: 10;
}

.hotspot-pin::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot-pin:hover, .hotspot-pin.active {
  transform: scale(1.2);
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.9);
}

.pin-engine { top: 32%; left: 36%; }
.pin-brakes { top: 58%; left: 24%; }
.pin-suspension { top: 68%; left: 66%; }
.pin-optics { top: 22%; left: 20%; }
.pin-climate { top: 36%; left: 56%; }

.hotspot-info-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.hotspot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-b);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* ═══════════ LIVE BAY RADAR ═══════════ */
.bay-radar-sec {
  padding: 92px 28px;
  background: linear-gradient(135deg, #090e17 0%, #060a10 100%);
  border-bottom: 1px solid var(--border);
}

.bay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.bay-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.bay-card.bay-free {
  border-color: rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.06) 0%, var(--card) 100%);
}

.bay-card.bay-busy {
  border-color: rgba(255, 74, 0, 0.3);
}

.bay-card.bay-diagnostics {
  border-color: rgba(0, 200, 255, 0.3);
}

.bay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bay-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.tag-free { background: rgba(76, 175, 80, 0.15); color: #4caf50; }
.tag-busy { background: rgba(255, 74, 0, 0.15); color: var(--orange); }
.tag-diag { background: var(--cyan-dim); color: var(--cyan); }

.bay-car-name {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.bay-job-desc {
  font-size: 0.78rem;
  color: var(--steel);
  margin-bottom: 14px;
  line-height: 1.5;
}

.bay-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.74rem;
  color: var(--steel);
}

/* ═══════════ ESTIMATOR & MONOBANK 0% ═══════════ */
.estimator-sec {
  padding: 92px 28px;
  background: linear-gradient(135deg, #090e17 0%, #060a10 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.est-card {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 200, 255, 0.08);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.est-control-group {
  margin-bottom: 18px;
}

.est-label {
  display: block;
  font-size: 0.75rem;
  color: var(--steel);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.est-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.est-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--fb);
}

.est-chip:hover {
  border-color: var(--cyan-b);
  color: var(--cyan);
}

.est-chip.active {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.2);
}

/* ONE-CLICK CART BUMPS */
.cart-bumps-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.bump-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--text);
  cursor: pointer;
}

.bump-item:hover {
  border-color: var(--cyan-b);
}

.bump-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
  cursor: pointer;
}

.est-summary-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.est-total-num {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.est-time-num {
  font-size: 0.9rem;
  color: var(--steel);
}

/* MONOBANK 0% INSTALLMENTS SLIDER */
.mono-installment-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(0, 200, 255, 0.3);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 12px;
}

.mono-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mono-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: #000;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mono-slider {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
  accent-color: var(--cyan);
}

/* ═══════════ BEFORE & AFTER SLIDER ═══════════ */
.beforeafter-sec {
  padding: 92px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ba-cases-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ba-nav-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--steel);
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--fb);
}

.ba-nav-btn.active, .ba-nav-btn:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
}

.ba-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cyan-b);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  width: 50%;
  border-right: 2px solid var(--cyan);
  box-shadow: 2px 0 15px rgba(0, 200, 255, 0.4);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--cyan);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
  cursor: ew-resize;
  pointer-events: auto;
}

.ba-handle svg {
  width: 20px;
  height: 20px;
  stroke: #000;
}

.ba-badge {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  z-index: 5;
}

.ba-badge-before {
  left: 18px;
  background: rgba(255, 74, 0, 0.7);
  color: #fff;
}

.ba-badge-after {
  right: 18px;
  background: rgba(0, 200, 255, 0.7);
  color: #000;
}

/* PROCESS */
.process {
  padding: 92px 28px;
  background: url('https://images.pexels.com/photos/4488640/pexels-photo-4488640.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}

.process::before {
  background: linear-gradient(135deg, rgba(7, 8, 10, 0.96) 40%, rgba(0, 8, 18, 0.93) 100%);
}

.proc-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.proc-track::before {
  content: '';
  position: absolute;
  top: 29px;
  left: calc(10% + 10px);
  right: calc(10% + 10px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-b) 15%, var(--cyan-b) 85%, transparent);
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.proc-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--cyan-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 16px;
  z-index: 1;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.1);
}

.proc-step:hover .proc-num {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(0, 200, 255, 0.3);
}

.proc-step-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  font-family: var(--fh);
}

.proc-step-desc {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.55;
}

/* SERVICES */
.services {
  padding: 92px 28px;
  background: url('https://images.pexels.com/photos/4488642/pexels-photo-4488642.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}

.services::before {
  background: linear-gradient(135deg, rgba(12, 16, 24, 0.96) 0%, rgba(8, 12, 18, 0.94) 100%);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.sc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  z-index: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(0, 200, 255, 0.06) 50%, transparent 70%);
  background-size: 300% 100%;
  background-position: -200% 0;
  transition: background-position 0.75s ease;
}

.sc:hover::before {
  background-position: 220% 0;
}

.sc::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: 0.3s;
}

.sc:hover {
  border-color: var(--cyan-b);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 200, 255, 0.1);
}

.sc:hover::after {
  opacity: 1;
}

.sc-ico {
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--cyan);
  border: 1px solid var(--cyan-b);
  position: relative;
  z-index: 1;
}

.sc-name {
  font-weight: 800;
  font-size: 0.98rem;
  margin-bottom: 4px;
  font-family: var(--fh);
  position: relative;
  z-index: 1;
}

.sc-spec {
  font-size: 0.76rem;
  color: var(--steel);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.sc-detail {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.sc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.sc-price {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.02em;
}

.sc-time {
  font-size: 0.74rem;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* PROMO AURORA */
@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promo {
  padding: 56px 28px;
  background: linear-gradient(-45deg, #07080A, #0D2238, #061A2E, #07080A, #0E1E34, #07080A);
  background-size: 500% 500%;
  animation: aurora 20s ease infinite;
  border-top: 1px solid rgba(0, 200, 255, 0.12);
  border-bottom: 1px solid rgba(0, 200, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.promo-in {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.promo-title {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.promo-sub {
  color: var(--steel);
  font-size: 0.92rem;
}

/* TEAM */
.team {
  padding: 92px 28px;
  background: url('https://images.pexels.com/photos/23228370/pexels-photo-23228370.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}

.team::before {
  background: linear-gradient(135deg, rgba(7, 8, 10, 0.95) 0%, rgba(5, 10, 18, 0.91) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.tc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.tc:hover {
  border-color: rgba(0, 200, 255, 0.25);
  box-shadow: 0 0 32px rgba(0, 200, 255, 0.08);
}

.tc-top {
  padding: 24px 22px 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tc-av {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #000;
}

.tc-name {
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--fh);
  margin-bottom: 2px;
}

.tc-role {
  font-size: 0.78rem;
  color: var(--steel);
  margin-bottom: 8px;
}

.tc-cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-b);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
}

.tc-body {
  padding: 0 22px 22px;
  border-top: 1px solid var(--border);
}

.tc-stats {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  margin-bottom: 12px;
}

.tc-stat-n {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.tc-stat-l {
  font-size: 0.68rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.tc-spec {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
}

/* GALLERY */
.gallery {
  padding: 92px 28px;
  background: var(--bg);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gal-item {
  overflow: hidden;
  border-radius: var(--r);
  position: relative;
  cursor: pointer;
}

.gal-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/8; }
.gal-item:nth-child(2) { aspect-ratio: 4/5; }
.gal-item:nth-child(3) { aspect-ratio: 1; }
.gal-item:nth-child(4) { aspect-ratio: 1; }
.gal-item:nth-child(5) { aspect-ratio: 1; }
.gal-item:nth-child(6) { grid-column: span 2; aspect-ratio: 16/8; }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.4s ease;
  display: block;
  filter: brightness(0.85) saturate(0.85);
}

.gal-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(0.95);
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(7, 8, 10, 0.65));
  pointer-events: none;
}

.gal-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

/* VIDEO SECTION */
.video-sec {
  padding: 92px 28px;
  background: var(--surface);
}

.video-outer {
  max-width: 980px;
  margin: 48px auto 0;
}

.video-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--cyan-b);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
}

.video-ovl {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(7, 8, 10, 0.65));
  pointer-events: none;
}

.video-badge {
  position: absolute;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(7, 8, 10, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
}

.vb-text {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.video-caption {
  text-align: center;
  margin-top: 14px;
  color: var(--steel);
  font-size: 0.86rem;
}

.video-caption span {
  color: var(--cyan);
}

/* CASES */
.cases {
  padding: 92px 28px;
  background: url('https://images.pexels.com/photos/4488640/pexels-photo-4488640.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}

.cases::before {
  background: linear-gradient(135deg, rgba(12, 16, 24, 0.97) 30%, rgba(8, 12, 20, 0.95) 100%);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.cc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.cc:hover {
  border-color: rgba(0, 200, 255, 0.25);
  box-shadow: 0 0 28px rgba(0, 200, 255, 0.06);
}

.cc-photo {
  height: 175px;
  overflow: hidden;
}

.cc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.85);
  transition: transform 0.5s ease, filter 0.4s ease;
  display: block;
}

.cc:hover .cc-photo img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(0.95);
}

.cc-head {
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--border);
}

.cc-car {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cc-model {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 0.98rem;
}

.cc-year {
  font-size: 0.72rem;
  color: var(--steel);
  background: var(--steel-d);
  padding: 2px 8px;
  border-radius: 6px;
}

.cc-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 2px 8px;
  border-radius: 6px;
}

.cc-problem {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.55;
  font-style: italic;
}

.cc-body {
  padding: 16px 20px;
}

.cc-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 9px;
}

.cc-row:last-child {
  margin-bottom: 0;
}

.cc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.dot-ok { background: #4caf50; }
.dot-warn { background: var(--orange); }
.dot-cyan { background: var(--cyan); }

.cc-text {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.55;
}

.cc-result {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--cyan);
}

.cc-result strong {
  display: block;
  font-weight: 800;
  margin-bottom: 2px;
  font-family: var(--fh);
}

/* REVIEWS */
.reviews {
  padding: 92px 28px;
  background: url('https://images.pexels.com/photos/4489761/pexels-photo-4489761.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}

.reviews::before {
  background: linear-gradient(135deg, rgba(7, 8, 10, 0.88) 0%, rgba(7, 8, 10, 0.82) 100%);
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.rc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.rc:hover {
  border-color: rgba(0, 200, 255, 0.22);
  box-shadow: 0 0 28px rgba(0, 200, 255, 0.06);
}

.rc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.rc-stars {
  color: #FFB800;
  display: flex;
  gap: 3px;
}

.rc-car-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--steel);
  background: var(--steel-d);
  padding: 3px 9px;
  border-radius: 8px;
}

.rc-txt {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.rc-auth {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.rc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.rc-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.rc-src {
  font-size: 0.72rem;
  color: var(--steel);
  margin-top: 1px;
}

/* FAQ */
.faq {
  padding: 92px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--fh);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--cyan);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--cyan);
  transition: transform 0.32s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 320px;
}

.faq-a-in {
  padding-bottom: 22px;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* BOOKING */
.booking {
  padding: 92px 28px;
  background: url('https://images.pexels.com/photos/4488642/pexels-photo-4488642.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}

.booking::before {
  background: rgba(10, 14, 22, 0.96);
}

.bk-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.bk-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bk-ico {
  width: 40px;
  height: 40px;
  background: var(--cyan-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  border: 1px solid var(--cyan-b);
}

.bk-h {
  font-weight: 700;
  font-size: 0.94rem;
  margin-bottom: 3px;
  font-family: var(--fh);
}

.bk-p {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.55;
}

.bk-trust {
  margin-top: 24px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: var(--r);
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.7;
}

.bk-trust strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 5px;
  font-family: var(--fh);
  font-weight: 800;
}

.bk-form {
  background: var(--card);
  border: 1px solid var(--cyan-b);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.form-ttl {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cyan);
  margin-bottom: 22px;
}

.fg {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 0.72rem;
  color: var(--steel);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

input, select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--fb);
  transition: border-color 0.2s;
  outline: none;
  height: 45px;
}

input:focus, select:focus {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, 0.03);
}

select option {
  background: var(--card);
  color: var(--text);
}

.btn-form {
  width: 100%;
  background: var(--cyan);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fb);
  height: 50px;
  margin-top: 10px;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.25);
}

.btn-form:hover {
  background: var(--cyan-h);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.45);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--steel);
  margin-top: 12px;
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 28px 22px;
}

.ft-in {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.ft-logo {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}

.ft-logo-mark {
  width: 26px;
  height: 26px;
  background: var(--cyan);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.ft-links a {
  color: var(--steel);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  text-transform: uppercase;
  font-weight: 600;
}

.ft-links a:hover {
  color: var(--cyan);
}

.ft-credit {
  font-size: 0.74rem;
  color: var(--steel);
}

.ft-credit a {
  color: var(--cyan);
  font-weight: 700;
}

/* FLOATING WIDGETS */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--card);
  border: 1px solid var(--cyan-b);
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  z-index: 999;
  transition: transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.fab {
  position: fixed;
  bottom: 26px;
  right: 24px;
  z-index: 150;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255, 74, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(14px);
  font-family: var(--fb);
}

.fab.on {
  opacity: 1;
  transform: translateY(0);
}

.fab:hover {
  background: #ff6020;
}

.wow-badge {
  position: fixed;
  bottom: 26px;
  left: 24px;
  z-index: 148;
  background: rgba(12, 16, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 50px;
  padding: 9px 16px 9px 13px;
  font-size: 0.74rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  backdrop-filter: blur(14px);
  white-space: nowrap;
}

.wow-badge:hover {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, 0.08);
  color: var(--cyan);
}

.wow-badge .wb-ico {
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#spb {
  position: fixed;
  top: 64px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-h));
  z-index: 201;
  width: 0%;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* RESPONSIVENESS */
@media(max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; }
  .obd { display: none; }
  .bk-wrap { grid-template-columns: 1fr; }
  .est-card { grid-template-columns: 1fr; }
  .hotspot-layout { grid-template-columns: 1fr; }
  .vin-scanner-card { grid-template-columns: 1fr; }
  .tracker-card { grid-template-columns: 1fr; }
  .predictive-card { grid-template-columns: 1fr; }
  .tyre-card { grid-template-columns: 1fr; }
  .defect-row { grid-template-columns: 80px 1fr 1fr; }
  .lfp-card { grid-template-columns: 1fr; }
  .roi-box { grid-template-columns: 1fr; }
  .proc-track { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proc-track::before { display: none; }
}

@media(max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero { min-height: auto; padding: 90px 18px 50px; }
  .hero-title {
    font-size: clamp(2rem, 8.5vw, 3.2rem);
    word-break: keep-all;
    hyphens: none;
    line-height: 1.08;
  }
  .hero-title .line2 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    line-height: 1.15;
    margin-top: 4px;
  }
  .promo-in { flex-direction: column; align-items: flex-start; }
  .proc-track { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .gal-item:nth-child(6) { grid-column: span 2; aspect-ratio: 16/9; }
  .hotspot-car-stage { aspect-ratio: 500/280; padding: 10px; }
  .hotspot-pin { width: 30px; height: 30px; font-size: 11px; }
  .wow-badge { display: none; }
  .fab { bottom: 16px; right: 16px; padding: 10px 18px; font-size: 0.74rem; }
  #conciergePopup { bottom: 70px; right: 16px; left: 16px; max-width: calc(100% - 32px); }
}

@media(prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .brands-track, .hero-light { animation: none; }
  .fab { transition: none; }
  .live-dot, .scan-bar::after { animation: none; }
}

