: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: 20px;
  list-style: none;
}

.nav-links a {
  color: var(--steel);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  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;
}

.sound-toggle-btn, .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;
}

.sound-toggle-btn:hover, .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: hidden;
  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: 520px;
  padding: 18px 28px 26px;
}

.mm a {
  color: var(--steel);
  font-size: 0.88rem;
  padding: 11px 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 {
  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 {
  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 {
  position: relative;
  z-index: 2;
}

@keyframes cyanDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -35px) scale(1.08); }
  66% { transform: translate(-30px, 25px) scale(0.95); }
}

.process::after, .team::after, .reviews::after, .estimator-sec::after, .hotspot-sec::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.05) 0%, transparent 65%);
  top: -250px;
  right: -250px;
  z-index: 0;
  pointer-events: none;
  animation: cyanDrift 18s ease-in-out infinite;
}

.team::after {
  left: -250px;
  right: auto;
  animation-delay: -6s;
}

/* ═══════════ NEW: 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;
}

/* ═══════════ NEW: 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);
}

.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: 6px;
}

.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::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.08) 0%, transparent 65%);
  top: -100px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
  animation: cyanDrift 14s ease-in-out infinite;
}

.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; }
  .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: 100px 20px 60px; }
  .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; }
  .wow-badge { bottom: 84px; }
}

@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; }
}
