/* ============================================================
   VELOCITY PARTS PRO — Industrial Luxury Template
   Theme: Deep Navy + Amber Gold + Bright White
   Fonts: Bebas Neue (display) + Outfit (body) + JetBrains Mono
   ============================================================ */

:root {
  --navy:        #0a0f1e;
  --navy-2:      #0d1528;
  --navy-3:      #111e38;
  --navy-light:  #1a2744;
  --gold:        #f5a623;
  --gold-dark:   #d4880a;
  --gold-light:  #ffc55a;
  --gold-pale:   #fff4d6;
  --steel:       #2a3a5c;
  --steel-2:     #3a4f78;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-light:  #e8edf5;
  --gray:        #94a3b8;
  --text-dark:   #0d1528;
  --text-mid:    #4a5878;
  --success:     #22c55e;
  --danger:      #ef4444;

  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --shadow-gold:  0 8px 32px rgba(245,166,35,0.25);
  --shadow-navy:  0 20px 60px rgba(10,15,30,0.4);
  --shadow-card:  0 4px 24px rgba(10,15,30,0.08);

  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
  --ease-bounce:  cubic-bezier(0.34,1.56,0.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ============================================================ CURSOR */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(245,166,35,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: all 0.15s ease;
}
.cursor-ring.hover {
  transform: translate(-50%, -50%) scale(2);
  border-color: var(--gold);
  background: rgba(245,166,35,0.05);
}

/* ============================================================ SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================ UTILITY */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 110px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 4px;
  background: rgba(245,166,35,0.06);
  margin-bottom: 18px;
}
.tag::before { content: '//'; opacity: 0.5; }

.title-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--navy);
}
.title-xl .gold { color: var(--gold); }
.title-xl .stroke {
  -webkit-text-stroke: 2px var(--navy);
  color: transparent;
}

.title-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--navy);
}
.title-lg .gold { color: var(--gold); }

.title-inv { color: var(--white); }
.title-inv .gold { color: var(--gold); }

.body-lg { font-size: 17px; line-height: 1.75; color: var(--text-mid); font-weight: 400; }
.body-lg.inv { color: rgba(255,255,255,0.65); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 15px 32px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(245,166,35,0.4); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.btn-navy:hover { background: var(--navy-3); transform: translateY(-3px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

.btn-wide { width: 100%; justify-content: center; }

/* ============================================================ TOPBAR */
.topbar {
  background: var(--gold);
  padding: 9px 0;
  text-align: center;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--navy);
  letter-spacing: 0.3px;
}
.topbar-inner a { color: var(--navy); opacity: 0.85; }
.topbar-inner a:hover { opacity: 1; text-decoration: underline; }
.tb-sep { opacity: 0.4; }

/* ============================================================ NAVBAR */
.navbar {
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { top: 0; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  max-width: 1360px;
  margin: 0 auto;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: var(--transition);
}
.navbar.scrolled .nav-inner {
  padding: 14px 40px;
  background: rgba(10,15,30,0.98);
  border-bottom-color: rgba(245,166,35,0.25);
}

.logo {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  font-family: var(--font-display);
}
.logo-name {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-name span:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
}
.logo-name span:last-child {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links > li > a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  position: relative;
  text-transform: uppercase;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-links > li > a:hover { color: var(--white); }
.nav-links > li > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.has-drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%);
  min-width: 240px;
  background: var(--navy-2);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--r-lg);
  padding: 10px;
  display: none;
  box-shadow: var(--shadow-navy);
  z-index: 200;
}
.has-drop:hover .drop-menu { display: block; }
.drop-menu a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: var(--transition);
}
.drop-menu a:hover { background: rgba(245,166,35,0.1); color: var(--gold); }
.drop-menu a .icon { font-size: 16px; width: 24px; text-align: center; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 16px;
  border-radius: var(--r-sm);
}
.nav-phone:hover { background: rgba(245,166,35,0.1); color: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ============================================================ HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Particle Canvas */
#particles { position: absolute; inset: 0; z-index: 0; }

/* Diagonal Slice */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
  z-index: 2;
}

/* Grid lines overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; align-items: center;
  padding-top: 120px;
  padding-bottom: 160px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 40px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .line2 {
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
  color: transparent;
}
.hero-title .line3 { color: var(--gold); }

.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-proof {
  display: flex; gap: 36px; flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 10px; }
.proof-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
  max-width: 60px;
}

/* HERO SLIDER CARD */
.hero-slider-wrap {
  position: relative;
}
.hero-slider {
  position: relative;
  height: 480px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px) scale(0.96);
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-info-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.95), transparent);
  padding: 32px 24px 24px;
}
.slide-info-bar .si-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.slide-info-bar h4 {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  letter-spacing: 1px;
}

.slide-nav {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.slide-nav-btn {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.slide-nav-btn.active { background: var(--gold); width: 60px; }

.slide-arrows {
  position: absolute;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
  z-index: 5;
}
.slide-arrow-btn {
  width: 40px; height: 40px;
  background: var(--navy-2);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slide-arrow-btn:hover { background: var(--gold); color: var(--navy); }

/* ============================================================ TICKER */
.ticker-wrap {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--navy);
  padding: 0 32px;
}
.ticker-item .dot { width: 6px; height: 6px; background: var(--navy); border-radius: 50%; opacity: 0.4; }

/* ============================================================ QUICK QUOTE WIZARD */
.wizard-section {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.wizard-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.wizard-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }

.wizard-left { position: sticky; top: 110px; }
.wizard-left .body-lg { margin: 16px 0 32px; }

.wizard-features { display: flex; flex-direction: column; gap: 16px; }
.wf-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.wf-item:hover { border-color: rgba(245,166,35,0.3); transform: translateX(6px); }
.wf-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(245,166,35,0.06));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.wf-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.wf-text p  { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* WIZARD FORM */
.wizard-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-navy);
  border: 1px solid var(--gray-light);
}

.wizard-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.wizard-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
}
.wizard-header .step-indicator {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 5px 14px;
  border-radius: 4px;
}

/* Step progress bar */
.wizard-progress {
  display: flex;
  background: var(--navy-2);
}
.wp-step {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  transition: background 0.4s ease;
  position: relative;
}
.wp-step.done { background: var(--gold); }
.wp-step.active { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.wizard-body { padding: 32px; }

/* Form wizard steps */
.step-pane { display: none; }
.step-pane.active { display: block; animation: fadeSlide 0.4s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.08);
}
.form-input::placeholder { color: #aab0bf; }
.form-textarea { resize: vertical; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }

/* Part selector tiles */
.part-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.part-tile {
  padding: 14px 16px;
  background: var(--off-white);
  border: 2px solid var(--gray-light);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.part-tile:hover { border-color: var(--gold); color: var(--navy); background: var(--gold-pale); }
.part-tile.selected { border-color: var(--gold); background: var(--gold-pale); color: var(--navy); }
.part-tile.selected .pt-icon { background: var(--gold); }
.pt-icon {
  width: 32px; height: 32px;
  background: var(--gray-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}

/* Wizard footer */
.wizard-footer {
  padding: 20px 32px 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gray-light);
}
.wizard-back {
  background: none; border: none; cursor: pointer;
  color: var(--text-mid);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  transition: var(--transition);
}
.wizard-back:hover { color: var(--navy); }

/* Success State */
.wizard-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.success-ring {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  animation: popIn 0.5s var(--ease-bounce);
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.wizard-success h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 10px;
}
.wizard-success p { color: var(--text-mid); font-size: 15px; line-height: 1.65; }

/* ============================================================ PARTS SHOWCASE */
.parts-section {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.parts-section::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.parts-section::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.parts-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.parts-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.part-block {
  background: rgba(255,255,255,0.02);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.part-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.part-block:hover { background: rgba(245,166,35,0.05); }
.part-block:hover::before { opacity: 1; }
.part-block:hover .pb-icon { background: var(--gold); color: var(--navy); }
.part-block:hover .pb-arrow { opacity: 1; transform: translateX(0); }

.pb-num {
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
  letter-spacing: -2px;
}
.pb-icon {
  width: 52px; height: 52px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.part-block h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.part-block p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 16px; }
.pb-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}
.pb-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

/* ============================================================ WHY US — SPLIT */
.why-section {
  padding: 110px 0;
  background: var(--off-white);
}
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 700px; align-items: stretch; }

.why-visual {
  background: var(--navy);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 65%);
}
.why-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 32px;
}
.wg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: var(--transition);
}
.wg-card:hover { background: rgba(245,166,35,0.06); border-color: rgba(245,166,35,0.2); }
.wg-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.wg-label { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; }

.why-testimonial-big {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.04));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: auto;
}
.wtb-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.wtb-quote { color: rgba(255,255,255,0.75); font-size: 15px; font-style: italic; line-height: 1.6; margin-bottom: 14px; }
.wtb-author { display: flex; align-items: center; gap: 12px; }
.wtb-av {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--navy);
}
.wtb-author strong { color: white; font-size: 14px; display: block; }
.wtb-author span { color: rgba(255,255,255,0.45); font-size: 12px; }

.why-content {
  background: var(--white);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  padding: 60px 52px;
  border: 1px solid var(--gray-light);
  border-left: none;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.wl-item {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.wl-item:hover { border-color: rgba(245,166,35,0.3); background: var(--gold-pale); transform: translateX(8px); }
.wl-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.wl-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wl-text p  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ============================================================ HOW IT WORKS */
.how-section { padding: 110px 0; background: var(--navy); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(245,166,35,0.1);
}
.how-step {
  padding: 40px 28px;
  background: rgba(255,255,255,0.02);
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: rgba(245,166,35,0.04); }
.how-step:hover .hs-line { width: 100%; }

.hs-line {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  background: var(--gold);
  width: 0;
  transition: width 0.5s ease;
  border-radius: 0 3px 3px 0;
}
.hs-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.hs-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.how-step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.how-step p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ============================================================ TESTIMONIALS */
.testi-section { padding: 110px 0; background: var(--off-white); }
.testi-slider-wrap { position: relative; overflow: hidden; margin-top: 56px; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  flex-shrink: 0;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-navy); border-color: rgba(245,166,35,0.2); }
.testi-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-color: rgba(245,166,35,0.25);
}
.tc-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.tc-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-card.featured .tc-text { color: rgba(255,255,255,0.65); }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--navy); font-size: 14px;
  flex-shrink: 0;
}
.tc-info strong { display: block; font-size: 15px; color: var(--navy); }
.testi-card.featured .tc-info strong { color: var(--white); }
.tc-info span { font-size: 13px; color: var(--text-mid); }
.testi-card.featured .tc-info span { color: rgba(255,255,255,0.4); }
.tc-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 4px 10px;
  border-radius: 4px;
}

.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.tn-btn {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--gray-light);
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
}
.tn-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============================================================ CONTACT */
.contact-section { padding: 110px 0; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; }

.contact-form-wrap {}
.contact-form-wrap h2 { margin-bottom: 10px; }
.contact-form-wrap .body-lg { margin-bottom: 32px; }

.cf-form { display: flex; flex-direction: column; gap: 16px; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 0; }

.cs-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.cs-card:hover { border-color: rgba(245,166,35,0.3); background: var(--gold-pale); }
.cs-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.cs-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: 0.5px; text-transform: uppercase; font-family: var(--font-mono); }
.cs-card a, .cs-card span { display: block; color: var(--text-mid); font-size: 15px; }
.cs-card a:hover { color: var(--gold); }

.map-placeholder {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  border: 1px solid rgba(245,166,35,0.15);
  margin-top: 4px;
}
.map-placeholder span { font-size: 40px; }
.map-placeholder p { color: rgba(255,255,255,0.4); font-size: 13px; font-family: var(--font-mono); }

/* ============================================================ FOOTER */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.fs-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px; font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
}
.fs-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); transform: translateX(5px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); font-family: var(--font-mono); }
.footer-bottom p a { color: rgba(255,255,255,0.35); }
.footer-bottom p a:hover { color: var(--gold); }

.footer-trust { display: flex; gap: 12px; }
.ft-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 4px;
}

/* ============================================================ BACK TO TOP */
.btt {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none; border-radius: var(--r-md);
  font-size: 20px; font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.btt.show { opacity: 1; pointer-events: all; }
.btt:hover { transform: translateY(-5px) scale(1.05); }

.cart-status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(13,21,40,0.12);
  background: rgba(247,249,252,0.9);
  color: var(--text-mid);
}
.cart-status:empty { display: none; }
.cart-status.success { border-color: rgba(34,197,94,0.35); background: rgba(34,197,94,0.08); color: #15803d; }
.cart-status.error { border-color: rgba(239,68,68,0.35); background: rgba(239,68,68,0.08); color: #b91c1c; }
.cart-status.info { border-color: rgba(245,166,35,0.35); background: rgba(245,166,35,0.10); color: var(--navy-2); }

/* ============================================================ ANIMATIONS */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================ MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 990;
  display: none;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 12px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-slider-wrap { display: none; }
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .why-content { border-radius: 0 0 var(--r-xl) var(--r-xl); border-left: 1px solid var(--gray-light); border-top: none; }
  .wizard-layout { grid-template-columns: 1fr; }
  .wizard-left { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .parts-grid-6 { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { min-width: calc(100% - 0px); }
  .form-row-2, .form-row-3, .cf-row { grid-template-columns: 1fr; }
  .part-tiles { grid-template-columns: 1fr; }
  .topbar-inner span:nth-child(3), .topbar-inner span:nth-child(4) { display: none; }
  .tb-sep { display: none; }
  .hero-proof { gap: 20px; }
  .why-grid-2 { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 14px 20px; }
  .section-pad { padding: 76px 0; }
  .mobile-nav a { font-size: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .wf-item:hover, .wl-item:hover, .testi-card:hover, .footer-col a:hover { transform: none; }
}

@media (max-width: 540px) {
  .parts-grid-6 { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(48px, 12vw, 80px); }
  .why-grid-2 { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .section-pad { padding: 64px 0; }
  .mobile-nav { padding: 90px 22px 34px; }
  .mobile-nav a { font-size: 24px; }
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
