* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1A1A1A;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo-img {
  height: 36px;
  width: 36px;
  display: block;
  border-radius: 50%;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.3px;
}

.nav-logo-accent {
  color: #0A84FF;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #1A1A1A;
}

.nav-cta {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.9;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: transform 0.2s;
}

.hero {
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.1) 0%, transparent 60%);
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.reg-lookup-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 560px;
  margin: 0 auto 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.reg-input-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.reg-plate-container {
  flex: 1;
  display: flex;
  align-items: stretch;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.reg-plate-container:focus-within {
  border-color: #667eea;
}

.gb-band {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003399;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 12px;
  letter-spacing: 0.5px;
  min-width: 44px;
}

.reg-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 16px;
  font-family: 'Inter', monospace;
  letter-spacing: 2px;
  color: #1A1A1A;
  background: #FAFAFA;
}

.reg-input::placeholder {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #9CA3AF;
}

.check-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.check-btn-hero {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  padding: 18px 32px;
  font-size: 18px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
  animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(34, 197, 94, 0.55); }
}

.check-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.check-btn-hero:hover {
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.5);
}

.check-btn:active {
  transform: translateY(0);
}

.reg-hint {
  margin-top: 10px;
  font-size: 13px;
  color: #9CA3AF;
}

.urgency-line {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
  opacity: 0.92;
}

.trust-signals {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.free-preview-section {
  background: #F8F9FC;
  padding: 60px 24px;
}

.preview-container {
  max-width: 700px;
  margin: 0 auto;
}

.preview-header {
  text-align: center;
  margin-bottom: 24px;
}

.preview-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
}

.preview-reg {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 8px;
  margin-top: 12px;
  letter-spacing: 2px;
}

.preview-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.preview-loading {
  text-align: center;
  padding: 40px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E5E7EB;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.preview-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
}

.preview-label {
  color: #6B7280;
  font-size: 14px;
}

.preview-value {
  font-weight: 600;
  font-size: 14px;
  color: #1A1A1A;
}

.preview-cta {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #F3F4F6;
}

.preview-cta p {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 16px;
}

.preview-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.preview-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: #6B7280;
  font-size: 16px;
  margin-bottom: 48px;
}

.how-it-works {
  padding: 80px 24px;
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: #F8F9FC;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  color: #667eea;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.step-card p {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.6;
}

.free-includes-banner {
  max-width: 700px;
  margin: 0 auto 48px;
}

.free-includes-inner {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 2px solid #E5E7EB;
}

.free-includes-free,
.free-includes-paid {
  flex: 1;
  padding: 28px 24px;
}

.free-includes-free {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(22, 163, 74, 0.1));
}

.free-includes-paid {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.1));
}

.free-includes-divider {
  width: 2px;
  background: #E5E7EB;
  flex-shrink: 0;
}

.free-includes-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.free-includes-free .free-includes-label {
  color: #16A34A;
}

.free-includes-paid .free-includes-label {
  color: #667eea;
}

.free-includes-free p,
.free-includes-paid p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.comparison {
  padding: 80px 24px;
  background: #F8F9FC;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
}

.comparison-table thead th {
  background: #1A1A1A;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.comparison-table thead th.highlight-col {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.comparison-table tbody tr {
  border-bottom: 1px solid #F3F4F6;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: #FAFBFF;
}

.comparison-table td.highlight-col {
  background: rgba(102, 126, 234, 0.04);
}

.check-yes {
  color: #16A34A;
  font-weight: 600;
}

.check-no {
  color: #9CA3AF;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #E5E7EB;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #667eea;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.value-badge {
  background: linear-gradient(135deg, #22C55E, #16A34A);
}

.pricing-label {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 40px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -1px;
}

.pricing-per {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 4px;
}

.pricing-savings {
  color: #16A34A;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-btn {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.pricing-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.why-check {
  padding: 80px 24px;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.finance-icon {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.stolen-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.mileage-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.why-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.testimonials {
  padding: 80px 24px;
  background: #F8F9FC;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: #1A1A1A;
}

.author-location {
  font-size: 13px;
  color: #9CA3AF;
}

.faq {
  padding: 80px 24px;
  background: #fff;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.faq-item:first-child {
  border-top: 1px solid #E5E7EB;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  font-family: inherit;
  gap: 16px;
}

.faq-question:hover {
  color: #667eea;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: #9CA3AF;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #667eea;
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  background: #1A1A1A;
  color: #fff;
  padding: 64px 24px 32px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.footer-logo-img {
  height: 36px;
  width: 36px;
  display: block;
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.footer-logo-accent {
  color: #0A84FF;
}

.footer-desc {
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  color: #9CA3AF;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: #fff;
}

.footer-newsletter h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-newsletter p {
  color: #9CA3AF;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #2A2A2A;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  border-color: #667eea;
}

.newsletter-form input::placeholder {
  color: #6B7280;
}

.newsletter-form button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.newsletter-msg {
  margin-top: 8px;
  font-size: 13px;
  min-height: 20px;
}

.newsletter-msg.success {
  color: #22C55E;
}

.newsletter-msg.error {
  color: #EF4444;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #333;
  text-align: center;
}

.footer-bottom p {
  color: #6B7280;
  font-size: 13px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 16px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .reg-input-row {
    flex-direction: column;
  }

  .check-btn {
    justify-content: center;
  }

  .trust-signals {
    gap: 12px;
  }

  .trust-item {
    font-size: 12px;
  }

  .steps-grid,
  .why-grid,
  .testimonials-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .free-includes-inner {
    flex-direction: column;
  }

  .free-includes-divider {
    width: 100%;
    height: 2px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 13px;
  }

  .section-title {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-card.featured {
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .reg-input {
    font-size: 16px;
  }

  .pricing-amount {
    font-size: 32px;
  }
}
