/* ==========================================================================
   VINCHECK™ DESIGN SYSTEM & STYLESHEET
   Aesthetic: Premium Dark Glassmorphism with Glowing Emerald Accents (#00D084)
   ========================================================================== */

:root {
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Color Palette */
  --bg-dark: #070A11;
  --bg-card: rgba(15, 23, 38, 0.75);
  --bg-card-solid: #0F1726;
  --bg-input: #141F33;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 208, 132, 0.35);

  --primary-green: #00D084;
  --primary-green-hover: #00B874;
  --primary-green-glow: rgba(0, 208, 132, 0.25);
  --accent-mint: #00FF9D;

  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-bright: #FFFFFF;

  --danger-red: #FF4D4D;
  --warning-amber: #FFAB00;
  --info-blue: #38BDF8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-main: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(0, 208, 132, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-bright);
  line-height: 1.25;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-mint);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Color Helpers */
.highlight-text { color: var(--primary-green); }
.text-green { color: var(--primary-green) !important; }
.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #009E63 100%);
  color: #04120C;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 208, 132, 0.45);
  background: linear-gradient(135deg, #00E390 0%, #00B874 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-bright);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #071710 0%, #0D2D20 50%, #071710 100%);
  border-bottom: 1px solid rgba(0, 208, 132, 0.2);
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-main);
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-link {
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 17, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle, var(--primary-green-glow) 0%, rgba(0,208,132,0.05) 100%);
  border: 1px solid var(--primary-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  box-shadow: 0 0 15px rgba(0, 208, 132, 0.25);
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-bright);
  letter-spacing: 0.5px;
}

.logo-tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 1px;
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 208, 132, 0.12) 0%, rgba(7, 10, 17, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(0, 208, 132, 0.08);
  border: 1px solid rgba(0, 208, 132, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.stars-row { color: #FFAB00; letter-spacing: 2px; }

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

/* Search Box Component */
.search-box-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-main), var(--shadow-glow);
  margin-bottom: 24px;
}

.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.search-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.search-tab.active {
  background: rgba(0, 208, 132, 0.12);
  color: var(--primary-green);
  border: 1px solid rgba(0, 208, 132, 0.3);
}

.search-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.vin-input {
  width: 100%;
  height: 56px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0 110px 0 18px;
  color: var(--text-bright);
  font-family: monospace;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.vin-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 15px rgba(0, 208, 132, 0.3);
}

.input-actions {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.char-counter {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-main);
}

.btn-paste {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-decode {
  height: 56px;
  padding: 0 28px;
  white-space: nowrap;
}

.sample-vins-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.sample-label { color: var(--text-muted); }

.sample-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sample-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sample-chip:hover {
  background: rgba(0, 208, 132, 0.15);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.sample-chip.warning {
  border-color: rgba(255, 171, 0, 0.4);
  color: var(--warning-amber);
}

.hero-guarantee-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Visual HUD Card */
.hud-car-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-main);
  position: relative;
}

.hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.hud-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-green);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-green);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.hud-vin-code {
  color: var(--text-muted);
  font-family: monospace;
}

.car-diagnostic-stage {
  position: relative;
  margin: 10px 0;
  text-align: center;
}

.car-hud-svg {
  width: 100%;
  max-height: 220px;
}

.pulse-node {
  animation: pulseGlow 2s infinite;
}

.hud-float-card {
  position: absolute;
  background: rgba(13, 20, 36, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hud-float-card strong { display: block; color: var(--text-bright); }
.hud-float-card small { color: var(--text-muted); display: block; }

.node-top-left { top: 10px; left: 10px; }
.node-top-right { top: 15px; right: 10px; }
.node-bottom-center { bottom: 10px; left: 50%; transform: translateX(-50%); }

.hud-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  text-align: center;
}

.metric-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
}

.metric-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Partners Bar */
.partners-bar {
  background: rgba(255, 255, 255, 0.02);
  border-y: 1px solid var(--border-color);
  padding: 24px 0;
}

.partners-title {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.partners-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Section Header */
.section-header {
  margin-bottom: 48px;
}

.section-header.center { text-align: center; }

.section-tagline {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-green);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Features Grid Section */
.features-section {
  padding: 90px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-green { background: rgba(0, 208, 132, 0.12); color: var(--primary-green); }
.icon-orange { background: rgba(255, 171, 0, 0.12); color: var(--warning-amber); }
.icon-blue { background: rgba(56, 189, 248, 0.12); color: var(--info-blue); }
.icon-purple { background: rgba(168, 85, 247, 0.12); color: #A855F7; }
.icon-emerald { background: rgba(16, 185, 129, 0.12); color: #10B981; }
.icon-teal { background: rgba(20, 184, 166, 0.12); color: #14B8A6; }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.feature-mini-visual {
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.mini-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.tag-danger { background: rgba(255, 77, 77, 0.2); color: var(--danger-red); }
.tag-warning { background: rgba(255, 171, 0, 0.2); color: var(--warning-amber); }
.tag-success { background: rgba(0, 208, 132, 0.2); color: var(--primary-green); }
.tag-info { background: rgba(56, 189, 248, 0.2); color: var(--info-blue); }

/* Live Sample Report Section */
.sample-report-section {
  padding: 90px 0;
  background: rgba(255, 255, 255, 0.015);
  border-y: 1px solid var(--border-color);
}

.report-viewer-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main), var(--shadow-glow);
  overflow: hidden;
}

.report-top-bar {
  padding: 24px 30px;
  background: rgba(13, 20, 36, 0.95);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.car-summary-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.car-avatar {
  font-size: 2.2rem;
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.report-car-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.report-meta-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 0.78rem;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.pill-green {
  background: rgba(0, 208, 132, 0.15);
  color: var(--primary-green);
  font-weight: 700;
}

.pill-red {
  background: rgba(255, 77, 77, 0.2);
  color: var(--danger-red);
  font-weight: 700;
}

.report-score-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.score-circle-wrap {
  position: relative;
  width: 64px;
  height: 64px;
}

.score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-val-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-bright);
}

.score-labels strong { display: block; font-size: 0.9rem; }
.score-labels small { color: var(--primary-green); font-weight: 600; }

/* Report Tabs */
.report-nav-tabs {
  display: flex;
  background: #0A0E1A;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.report-tab {
  padding: 14px 22px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.report-tab:hover {
  color: var(--text-bright);
}

.report-tab.active {
  color: var(--primary-green);
  border-bottom-color: var(--primary-green);
  background: rgba(0, 208, 132, 0.05);
}

.report-tab-content {
  padding: 30px;

}

.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Overview Pane */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.overview-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon { font-size: 1.8rem; }
.stat-data label { display: block; font-size: 0.78rem; color: var(--text-muted); }
.stat-data strong { font-size: 0.95rem; }

.specs-table-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.specs-table-card h4 { margin-bottom: 16px; font-size: 1.1rem; }

.specs-table { display: flex; flex-direction: column; gap: 10px; }

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 8px;
}

.spec-row span { color: var(--text-muted); }

/* Mileage Pane */
.pane-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.pane-subtitle { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }

.status-badge {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-success { background: rgba(0, 208, 132, 0.15); color: var(--primary-green); border: 1px solid var(--primary-green); }
.badge-warning { background: rgba(255, 171, 0, 0.2); color: var(--warning-amber); border: 1px solid var(--warning-amber); }

.chart-container {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.mileage-chart-svg {
  width: 100%;
  height: 220px;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border-left: 4px solid var(--primary-green);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.88rem;
}

.timeline-item.warning { border-left-color: var(--danger-red); background: rgba(255, 77, 77, 0.1); }

.timeline-date { color: var(--text-muted); font-size: 0.8rem; width: 100px; }
.timeline-source { font-weight: 600; flex: 1; }
.timeline-mileage { font-family: monospace; font-weight: 700; color: var(--primary-green); }

/* Accidents Pane */
.accidents-interactive-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.car-damage-blueprint {
  background: #09101C;
  border: 1px stroke var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.blueprint-svg { width: 100%; max-height: 220px; }

.damage-zone-hotspot {
  cursor: pointer;
  transition: all 0.2s ease;
}

.damage-zone-hotspot:hover {
  transform: scale(1.2);
  fill: var(--primary-green);
}

.warning-pulse {
  animation: pulseWarning 1.5s infinite;
}

@keyframes pulseWarning {
  0% { r: 16px; opacity: 0.8; }
  50% { r: 22px; opacity: 1; }
  100% { r: 16px; opacity: 0.8; }
}

.accident-card-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.accident-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

/* Specs & Recalls List */
.factory-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.option-chip-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* VIN Location Guide Section */
.vin-location-section {
  padding: 90px 0;
}

.location-interactive-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  align-items: center;
}

.vin-car-location-svg { width: 100%; max-height: 280px; }

.vin-spot-btn { cursor: pointer; }
.vin-spot-btn:hover circle { transform: scale(1.15); fill: var(--accent-mint); }
.spot-pulse { animation: pulseGlow 2s infinite; }

.location-detail-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 28px;
}

.spot-number-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-green);
  background: rgba(0,208,132,0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

.location-spot-header h3 {
  font-size: 1.3rem;
  margin: 10px 0 12px 0;
}

.location-detail-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.spot-tip {
  background: rgba(255, 171, 0, 0.1);
  border-left: 3px solid var(--warning-amber);
  padding: 10px 14px;
  font-size: 0.82rem;
  border-radius: 4px;
}

/* Pricing Section */
.pricing-section {
  padding: 90px 0;
  background: rgba(255, 255, 255, 0.015);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: #04120C;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-card-header h3 { font-size: 1.4rem; margin-bottom: 6px; }
.pricing-card-header p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}

.currency { font-size: 1.5rem; font-weight: 700; color: var(--text-bright); }
.amount { font-size: 3.2rem; font-weight: 800; color: var(--text-bright); font-family: var(--font-heading); }
.cents { font-size: 1.5rem; font-weight: 700; color: var(--text-bright); }
.per-unit { margin-left: 12px; font-size: 0.85rem; color: var(--primary-green); font-weight: 600; }
.price-period { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.pricing-features li { display: flex; align-items: center; gap: 10px; color: var(--text-main); }

/* Reviews Section */
.reviews-section {
  padding: 90px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.review-stars { color: #FFAB00; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; font-style: italic; color: var(--text-main); margin-bottom: 20px; }

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: rgba(0, 208, 132, 0.2);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.review-user strong { display: block; font-size: 0.9rem; }
.review-user small { color: var(--text-muted); font-size: 0.75rem; }

/* FAQ Section */
.faq-section {
  padding: 80px 0 100px 0;
  background: rgba(255, 255, 255, 0.01);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-bright);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg { transition: transform 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

.faq-answer p { color: var(--text-muted); font-size: 0.92rem; }

/* Footer */
.site-footer {
  background: #04070D;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 16px 0 20px 0;
  max-width: 320px;
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-col a:hover { color: var(--text-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card-solid);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-main), var(--shadow-glow);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Scanning Radar Modal */
.scanning-card { text-align: center; }

.spinner-radar {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(0, 208, 132, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px auto;
  position: relative;
  animation: radarSpin 2s linear infinite;
}

.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: var(--primary-green);
  transform-origin: left center;
  box-shadow: 0 0 10px var(--primary-green);
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scan-status-text {
  color: var(--primary-green);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 8px 0 20px 0;
}

.scan-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 24px;
}

.scan-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-mint));
  transition: width 0.3s ease;
}

.scan-steps-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}

.scan-step-item { color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.scan-step-item.done { color: var(--text-bright); font-weight: 600; }
.scan-step-item.done .step-icon { color: var(--primary-green); }

/* Checkout Form */
.checkout-header { margin-bottom: 20px; }
.checkout-header h3 { font-size: 1.3rem; }

.form-group { margin-bottom: 16px; text-align: left; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }

.form-control {
  width: 100%;
  height: 46px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  color: var(--text-bright);
  font-size: 0.92rem;
}

.form-control:focus { outline: none; border-color: var(--primary-green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }

.checkout-guarantee {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* Responsive Layout Breakpoints */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 32px auto; }
  .search-box-card { text-align: left; }
  .hero-guarantee-row { justify-content: center; }
  .overview-grid { grid-template-columns: 1fr; }
  .accidents-interactive-layout { grid-template-columns: 1fr; }
  .location-interactive-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-title { font-size: 2.2rem; }
  .search-input-group { flex-direction: column; }
  .btn-decode { width: 100%; }
  .pricing-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
