/* ============================================
   CarShots Dealer Homepage - Optimized CSS
   ============================================ */

/* CSS Variables */
:root {
  --bg: #050505;
  --fg: #ffffff;
  --primary: #CEDC00;
  --primary-fg: #000000;
  --muted: #262626;
  --muted-fg: #9ca3af;
  --card: #0a0a0a;
  --border: #333333;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
  --red-500: #ef4444;
  
  --font-display: 'Unbounded', sans-serif;
  --font-mono: 'Rajdhani', monospace;
  --font-sans: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection {
  background: var(--primary);
  color: black;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================
   Layout Utilities
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* Grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Pointer */
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.cursor-pointer { cursor: pointer; }
.cursor-ew-resize { cursor: ew-resize; }

/* ============================================
   Typography
   ============================================ */

.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }
.font-sans { font-family: var(--font-sans); }

.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { word-wrap: break-word; }
.line-through { text-decoration: line-through; }

/* Colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-primary { color: var(--primary); }
.text-white-40 { color: rgba(255,255,255,0.4); }
.text-white-50 { color: rgba(255,255,255,0.5); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-red { color: var(--red-500); }

/* ============================================
   Backgrounds & Borders
   ============================================ */

.bg-black { background-color: #000000; }
.bg-white { background-color: #ffffff; }
.bg-primary { background-color: var(--primary); }
.bg-neutral-900 { background-color: var(--neutral-900); }
.bg-neutral-950 { background-color: var(--neutral-950); }
.bg-primary-5 { background-color: rgba(206,220,0,0.05); }
.bg-primary-10 { background-color: rgba(206,220,0,0.1); }
.bg-primary-20 { background-color: rgba(206,220,0,0.2); }
.bg-white-5 { background-color: rgba(255,255,255,0.05); }
.bg-white-10 { background-color: rgba(255,255,255,0.1); }
.bg-black-40 { background-color: rgba(0,0,0,0.4); }
.bg-black-50 { background-color: rgba(0,0,0,0.5); }
.bg-black-80 { background-color: rgba(0,0,0,0.8); }
.bg-neutral-900-50 { background-color: rgba(23,23,23,0.5); }

.border { border: 1px solid; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top: 1px solid; }
.border-r { border-right: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-l { border-left: 1px solid; }
.border-y { border-top: 1px solid; border-bottom: 1px solid; }
.border-t-4 { border-top-width: 4px; }
.border-r-4 { border-right-width: 4px; }
.border-b-4 { border-bottom-width: 4px; }
.border-l-4 { border-left-width: 4px; }
.border-b-2 { border-bottom-width: 2px; }
.border-l-2 { border-left-width: 2px; }
.border-y-4 { border-top-width: 4px; border-bottom-width: 4px; }

.border-white-10 { border-color: rgba(255,255,255,0.1); }
.border-white-20 { border-color: rgba(255,255,255,0.2); }
.border-primary { border-color: var(--primary); }
.border-primary-5 { border-color: rgba(206,220,0,0.05); }
.border-primary-20 { border-color: rgba(206,220,0,0.2); }
.border-primary-30 { border-color: rgba(206,220,0,0.3); }
.border-black { border-color: #000000; }
.border-white { border-color: #ffffff; }

.rounded-full { border-radius: 9999px; }

/* ============================================
   Spacing
   ============================================ */

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-32 { padding-top: 8rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-40 { padding-bottom: 10rem; }
.pl-6 { padding-left: 1.5rem; }

.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-auto { margin-bottom: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }

/* ============================================
   Effects & Transforms
   ============================================ */

.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-primary { box-shadow: 0 25px 50px -12px rgba(206,220,0,0.2); }

.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-60 { opacity: 0.6; }

.grayscale { filter: grayscale(100%); }

.skew-left { transform: skewX(-10deg); }
.skew-right { transform: skewX(10deg); }
.skew-left-5 { transform: skewX(-5deg); }
.skew-right-5 { transform: skewX(5deg); }

.scale-95 { transform: scale(0.95); }

.-translate-half { transform: translate(-50%, -50%); }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-500 { transition-duration: 500ms; }

/* ============================================
   Custom Components
   ============================================ */

/* Grid Pattern Background */
.bg-grid-pattern {
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Text Stroke */
.text-stroke {
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  color: transparent;
}
.text-stroke-primary {
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
}

/* Aspect Ratios */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-4-3 { aspect-ratio: 4 / 3; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: padding 0.3s ease;
  mix-blend-mode: difference;
}

.site-header.scrolled {
  padding: 1rem 0;
}

.header-logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover { color: var(--primary); }

.nav-link svg {
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-link:hover svg {
  opacity: 1;
  transform: translate(2px, -2px);
}

.btn-demo {
  background: #fff;
  color: #000;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: skewX(-10deg);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-demo:hover {
  background: var(--primary);
  transform: skewX(0);
}

.btn-demo span {
  display: inline-block;
  transform: skewX(10deg);
  transition: transform 0.3s ease;
}

.btn-demo:hover span {
  transform: skewX(0);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  padding-bottom: 10rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 50vh;
  background: rgba(206,220,0,0.1);
  filter: blur(150px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  background: rgba(206,220,0,0.1);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 2rem;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-desc {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  max-width: 42rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: skewX(-10deg);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #fff;
}

.btn-primary span {
  display: inline-block;
  transform: skewX(10deg);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: skewX(-10deg);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.btn-secondary span {
  display: inline-block;
  transform: skewX(10deg);
}

/* Hero Slider */
.hero-slider-wrap {
  position: relative;
  z-index: 10;
  border: 4px solid rgba(255,255,255,0.1);
  background: #000;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(206,220,0,0.2);
}

.hero-corner {
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-color: var(--primary);
  border-style: solid;
  border-width: 0;
}

.hero-corner-tr { top: -1rem; right: -1rem; border-top-width: 4px; border-right-width: 4px; }
.hero-corner-bl { bottom: -1rem; left: -1rem; border-bottom-width: 4px; border-left-width: 4px; }

/* ============================================
   Before/After Slider
   ============================================ */

.before-after-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.slider-after-wrap,
.slider-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-after-wrap img,
.slider-before-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-before-wrap {
  clip-path: inset(0 50% 0 0);
}

.slider-label {
  position: absolute;
  top: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
}

.slider-label-before { left: 1rem; }
.slider-label-after { right: 1rem; }

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.5);
  cursor: ew-resize;
  z-index: 20;
  left: 50%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.slider-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* ============================================
   Marquee
   ============================================ */

.marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 1rem 0;
  background: var(--primary);
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #000;
  white-space: nowrap;
}

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

/* ============================================
   Features Section
   ============================================ */

.features-section {
  padding: 8rem 0;
  background: #000;
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.features-title .highlight {
  color: var(--primary);
}

.features-desc {
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  max-width: 28rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: var(--neutral-900);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: #262626;
}

.feature-card-slider {
  padding: 0.25rem;
  min-height: 300px;
}

.feature-card-slider .before-after-slider {
  height: 100%;
}

.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

.feature-overlay h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #000;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.6);
}

.feature-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(206,220,0,0.2);
  filter: blur(50px);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.feature-card:hover .feature-glow {
  background: rgba(206,220,0,0.3);
}

.progress-bars {
  display: flex;
  gap: 0.5rem;
}

.progress-bar {
  flex: 1;
  height: 0.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary);
  width: 70%;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-section {
  padding: 8rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: var(--neutral-950);
}

.how-grid {
  display: grid;
  gap: 3rem;
}

.how-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
}

.how-bar {
  width: 5rem;
  height: 0.5rem;
  background: var(--primary);
  margin-bottom: 2rem;
}

.how-desc {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
}

.step-card {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  transition: color 0.3s ease;
}

.step-card:hover .step-number {
  color: rgba(206,220,0,0.1);
}

.step-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.step-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   Video Section
   ============================================ */

.video-section {
  padding: 8rem 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.video-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  background: rgba(206,220,0,0.1);
  color: var(--primary);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.video-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.video-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 2rem;
}

.video-desc {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 1.5rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.video-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-stat {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1rem;
}

.video-stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

.video-stat-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary);
  text-transform: uppercase;
}

/* Video Player */
.video-player {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid rgba(206,220,0,0.3);
  background: #000;
  aspect-ratio: 16 / 9;
  transition: border-color 0.3s ease;
}

.video-player:hover {
  border-color: var(--primary);
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-info {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  z-index: 20;
}

.video-overlay-info.top { top: 1rem; left: 1rem; }
.video-overlay-info.bottom { bottom: 1rem; right: 1rem; }

.video-frame-lines {
  position: absolute;
  inset: 0;
  border: 20px solid rgba(206,220,0,0.05);
  z-index: 10;
  pointer-events: none;
}

.video-crosshair-h,
.video-crosshair-v {
  position: absolute;
  background: rgba(206,220,0,0.2);
  z-index: 10;
  pointer-events: none;
}

.video-crosshair-h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.video-crosshair-v {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  background: rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.video-player:hover .play-overlay {
  background: rgba(0,0,0,0.2);
}

.play-btn {
  width: 6rem;
  height: 6rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-10deg);
  transition: transform 0.3s ease;
  box-shadow: 0 0 30px rgba(206,220,0,0.5);
}

.play-btn:hover {
  transform: skewX(-10deg) scale(1.1);
}

.play-btn svg {
  transform: skewX(10deg);
  margin-left: 4px;
}

.playing-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.playing-indicator.visible {
  opacity: 1;
}

.playing-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--red-500);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.playing-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #fff;
}

.video-meta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Metrics Section
   ============================================ */

.metrics-section {
  padding: 8rem 0;
  background: var(--neutral-950);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.metrics-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

.metrics-grid {
  display: grid;
  gap: 1rem;
}

.metric-card {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.metric-card:hover {
  background: rgba(255,255,255,0.05);
}

.metric-icon-wrap {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(206,220,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
}

.metric-card:hover .metric-icon-wrap {
  border-color: var(--primary);
  transform: scale(1.1);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.metric-desc {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Why Section (Problem/Solution)
   ============================================ */

.why-section {
  padding: 6rem 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.why-problem {
  padding: 2.5rem;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
}

.why-solution {
  padding: 2.5rem;
  background: rgba(206,220,0,0.05);
  border: 1px solid rgba(206,220,0,0.2);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.why-problem .why-title {
  color: var(--red-500);
}

.why-solution .why-title {
  color: var(--primary);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.why-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.why-problem .why-list li svg {
  color: var(--red-500);
}

.why-solution .why-list li svg {
  color: var(--primary);
}

/* ============================================
   Comparison Table
   ============================================ */

.comparison-section {
  padding: 8rem 0;
  background: var(--neutral-950);
}

.comparison-table {
  max-width: 64rem;
  margin: 0 auto;
}

.comparison-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.comparison-header-cell {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-header-cell:nth-child(1) { color: #fff; }
.comparison-header-cell:nth-child(2) { color: rgba(255,255,255,0.4); text-align: center; }
.comparison-header-cell:nth-child(3) { color: var(--primary); text-align: center; }

.comparison-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  transition: background-color 0.3s ease;
}

.comparison-row:hover {
  background: rgba(255,255,255,0.05);
}

.comparison-row-metric {
  color: #fff;
  font-weight: 700;
}

.comparison-row-old {
  text-align: center;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.5);
}

.comparison-row-new {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
  padding: 8rem 0;
  background: #000;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: -2.5rem;
  user-select: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  position: relative;
  z-index: 10;
}

.gallery-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--neutral-900);
  border: 1px solid rgba(255,255,255,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.gallery-item-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.gallery-item-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: #000;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* ============================================
   Comparison Section
   ============================================ */

.compare-section {
  padding: 8rem 0;
  background: var(--neutral-950);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.compare-header {
  text-align: center;
  margin-bottom: 4rem;
}

.compare-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.compare-subtitle {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
}

.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 4rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.compare-table th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.02);
}

.compare-table th.compare-highlight {
  color: var(--primary);
  background: rgba(206,220,0,0.1);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
}

.compare-table td.compare-highlight {
  background: rgba(206,220,0,0.05);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.compare-table tbody tr:last-child td.compare-highlight {
  border-bottom: 2px solid var(--primary);
}

.compare-table td.compare-feature {
  text-align: left;
  color: #fff;
  font-weight: 600;
}

.compare-check {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.compare-x {
  color: var(--red-500);
  font-size: 1.25rem;
}

.compare-yes {
  color: var(--primary);
  font-weight: 700;
}

.compare-no {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.compare-partial {
  color: rgba(255,255,255,0.5);
}

.compare-cta {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: rgba(206,220,0,0.05);
  border: 1px solid rgba(206,220,0,0.2);
}

.compare-cta-text {
  margin-bottom: 1.5rem;
}

.compare-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.compare-cta-text p {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.compare-cta-text strong {
  color: var(--primary);
}

.compare-links {
  margin-top: 3rem;
  text-align: center;
}

.compare-links-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.compare-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.compare-links-grid a {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.compare-links-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(206,220,0,0.05);
}

@media (max-width: 767px) {
  .compare-table {
    font-size: 0.75rem;
  }
  
  .compare-table th,
  .compare-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .compare-cta {
    padding: 1.5rem;
  }
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
  padding: 8rem 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pricing-card {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--neutral-900);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary), transparent, var(--primary));
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.pricing-card:hover .pricing-card-gradient {
  opacity: 0.4;
}

.pricing-card-inner {
  background: #000;
  padding: 3rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-bar {
  width: 4rem;
  height: 0.25rem;
  background: var(--primary);
  margin-bottom: 2rem;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  margin-bottom: 2rem;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.pricing-value .stroke {
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  text-align: left;
  margin-bottom: 3rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.pricing-feature-dot {
  width: 0.25rem;
  height: 0.25rem;
  background: var(--primary);
}

.btn-pricing {
  display: block;
  width: 100%;
  background: #fff;
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  transform: skewX(-5deg);
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background: var(--primary);
}

.btn-pricing span {
  display: inline-block;
  transform: skewX(5deg);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.footer-brand .highlight {
  color: var(--primary);
}

.footer-text {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.4);
  max-width: 24rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-compare-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-compare-links a {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 4rem;
    align-items: flex-start;
  }
}

/* ============================================
   Animation Classes
   ============================================ */

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in-section {
    opacity: 1;
    transform: none;
  }
  
  .marquee-track {
    animation: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Mobile-first breakpoints */
@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-hidden { display: none; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md-flex-row { flex-direction: row; }
  .md-text-right { text-align: right; }
  .md-mt-0 { margin-top: 0; }
  
  .features-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .features-grid { grid-template-columns: repeat(12, 1fr); }
  .feature-large { grid-column: span 8; min-height: 400px; }
  .feature-small { grid-column: span 4; }
  .feature-medium { grid-column: span 5; }
  .feature-slider { grid-column: span 7; min-height: 300px; }
  
  .how-grid { grid-template-columns: 1fr 2fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  
  .video-grid { flex-direction: row; }
  .video-content { width: 50%; }
  .video-player-wrap { width: 50%; }
  
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
  
  .challenge-row { grid-template-columns: repeat(2, 1fr); }
  
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

@media (min-width: 1024px) {
  .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg-col-span-1 { grid-column: span 1; }
  .lg-col-span-2 { grid-column: span 2; }
  .lg-col-span-5 { grid-column: span 5; }
  .lg-col-span-7 { grid-column: span 7; }
  .lg-flex-row { flex-direction: row; }
  .lg-w-half { width: 50%; }
  
  .hero-grid { grid-template-columns: 7fr 5fr; }
  .hero-title { font-size: 6rem; }
}

/* Mobile optimizations - remove heavy effects */
@media (max-width: 767px) {
  .hero { padding-bottom: 8rem; }
  .hero-glow { display: none; }
  .feature-glow { display: none; }
  
  .marquee-track span { font-size: 1.5rem; }
  
  .video-frame-lines { border-width: 10px; }
  
  .nav-desktop { display: none; }
  .nav-mobile { display: flex; }
  
  .pricing-features { grid-template-columns: 1fr; }
  
  .footer-links { flex-wrap: wrap; }
}

/* Hide on mobile */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

/* Hide on desktop */
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* ============================================
   Capture App Section
   ============================================ */

.capture-section {
  padding: 8rem 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.capture-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .capture-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.capture-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/10;
  background: #1a1a1a;
  border-radius: 12px;
  border: 3px solid #333;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #050505;
  display: flex;
}

.capture-ui {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.capture-ui-top {
  padding: 12px;
  display: flex;
  justify-content: flex-start;
}

.capture-car-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18,18,20,0.9);
  border: 2px solid rgba(206,220,0,0.5);
  border-radius: 8px;
  padding: 6px 12px;
}

.capture-car-icon {
  width: 24px;
  height: 24px;
  background: rgba(206,220,0,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.capture-car-badge span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.capture-ui-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.capture-guide-overlay {
  width: 100%;
  max-width: 250px;
  opacity: 0.8;
}

.capture-guide-overlay svg {
  width: 100%;
  height: auto;
}

.capture-ui-bottom {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.capture-angle-label {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(206,220,0,0.4);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--primary);
}

.capture-angle-label span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.capture-btn-ring {
  width: 50px;
  height: 50px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(206,220,0,0.4);
}

.capture-btn-inner {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
}

.capture-progress {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.capture-sidebar {
  width: 70px;
  background: #121214;
  border-left: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}

.sidebar-tab {
  padding: 8px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  color: rgba(255,255,255,0.4);
  border-bottom: 2px solid transparent;
}

.sidebar-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(206,220,0,0.05);
}

.sidebar-angles {
  flex: 1;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  align-content: start;
}

.angle-thumb {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}

.angle-thumb.done {
  background: rgba(34,197,94,0.2);
  border-color: #22c55e;
}

.angle-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(206,220,0,0.4);
}

/* Capture Content */
.capture-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.capture-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.capture-title .highlight {
  color: var(--primary);
}

.capture-desc {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
}

.capture-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.capture-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.capture-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
}

.capture-feature-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.capture-feature-content p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Hero Price Badge & Trust
   ============================================ */

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(206,220,0,0.1);
  border: 1px solid rgba(206,220,0,0.3);
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
}

.hero-price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-price-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-trust-item svg {
  color: var(--primary);
}

/* ============================================
   Enhanced Pricing Section
   ============================================ */

.pricing-main-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pricing-main-subtitle {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
}

.pricing-hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.pricing-per {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.25rem;
}

.pricing-car-cost {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.pricing-car-cost strong {
  color: #fff;
}

.pricing-includes {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-includes-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #10b981;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  width: 100%;
}

.pricing-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

.pricing-compare {
  margin-bottom: 0.5rem;
}

.pricing-compare-old {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.6);
}

.pricing-overage {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.pricing-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(206,220,0,0.1);
  border: 1px solid rgba(206,220,0,0.3);
  margin-bottom: 1.5rem;
  width: 100%;
}

.pricing-savings-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-savings-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.pricing-savings-text strong {
  color: var(--primary);
}

.pricing-volume {
  text-align: center;
  margin-top: 2rem;
}

.pricing-volume p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

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

.pricing-volume a:hover {
  color: #fff;
}

/* Pricing Calculator */
.pricing-calculator {
  max-width: 48rem;
  margin: 3rem auto 0;
  text-align: center;
}

.calculator-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .calculator-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.calculator-item {
  background: var(--neutral-900);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.calculator-item:hover {
  border-color: var(--primary);
}

.calculator-item-highlight {
  background: rgba(206,220,0,0.1);
  border-color: rgba(206,220,0,0.3);
}

.calculator-cars {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.calculator-cost {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--primary);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 8rem 0;
  background: var(--neutral-950);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
}

.faq-grid {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-cta-text {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.faq-cta-subtext {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* ============================================
   Sticky CTA Bar
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(206,220,0,0.3);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sticky-cta-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.sticky-cta-text strong {
  color: var(--primary);
}

.sticky-cta-btn {
  background: var(--primary);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
  background: #fff;
}

@media (max-width: 767px) {
  .sticky-cta-text {
    font-size: 0.75rem;
  }
  
  .sticky-cta-btn {
    font-size: 0.75rem;
    padding: 0.625rem 1rem;
  }
  
  .hero-price-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .hero-trust {
    gap: 1rem;
  }
  
  .pricing-features-grid {
    grid-template-columns: 1fr;
  }
}
