/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  background: #f4f6f9;
  color: #1a1a2e;
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: #0466CB;
  color: #fff;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.logo span { color: #0466CB; }
.logo-white { color: #fff; }
.logo-white span { color: #60a5fa; }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #4a5568;
  transition: color 0.2s;
}

.nav-links a:hover { color: #0466CB; }

.btn-nav {
  background: linear-gradient(135deg, #D74141, #F98425);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a3a6b 50%, #0466CB 100%);
  padding: 72px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero h1 span { color: #F98425; }

.hero > .container > p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ===== SEARCH BOX ===== */
.search-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px 24px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.search-tab {
  flex: 1;
  padding: 10px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #718096;
  cursor: pointer;
  transition: all 0.2s;
}

.search-tab.active {
  background: #0466CB;
  border-color: #0466CB;
  color: #fff;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #1a1a2e;
  letter-spacing: 1.5px;
  font-weight: 700;
  transition: border-color 0.2s;
}

.input-row input:focus {
  outline: none;
  border-color: #0466CB;
}

.input-row input::placeholder {
  letter-spacing: 0;
  font-weight: 400;
  color: #a0aec0;
}

.country-select {
  padding: 14px 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  color: #1a1a2e;
  background: #fff;
  cursor: pointer;
}

.btn-check {
  background: linear-gradient(135deg, #D74141, #F98425);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  letter-spacing: 1px;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-check:hover { opacity: 0.9; transform: translateY(-1px); }

.search-hint {
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 10px;
  text-align: left;
}

/* ===== STATS ===== */
.stats {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 8px 48px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #0466CB;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.82rem;
  color: #718096;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #e2e8f0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.section-header p {
  font-size: 1.05rem;
  color: #718096;
  max-width: 520px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: #ebf4ff;
  color: #0466CB;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* ===== CHECKS SECTION ===== */
.checks {
  padding: 80px 0;
  background: #f4f6f9;
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.check-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.check-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4,102,203,0.1);
  border-color: #bee3f8;
}

.check-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.check-icon svg { width: 100%; height: 100%; }

.check-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.check-card p {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  width: 260px;
  padding: 0 20px;
}

.step-num {
  width: 56px;
  height: 56px;
  background: #0466CB;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(4,102,203,0.3);
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: #718096; }

.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #0466CB, #F98425);
  max-width: 100px;
  opacity: 0.4;
  margin-bottom: 36px;
}

/* ===== REPORT PREVIEW ===== */
.report-preview {
  padding: 80px 0;
  background: #f4f6f9;
}

.report-preview-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

.report-preview-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.report-preview-text > p {
  color: #718096;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.report-features {
  margin-bottom: 32px;
}

.report-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #2d3748;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 700;
}

.report-features li:last-child { border: none; }

.rf-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.rf-icon.green { background: #c6f6d5; color: #16a34a; }

.btn-orange {
  display: inline-block;
  background: linear-gradient(135deg, #D74141, #F98425);
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: opacity 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-orange:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== REPORT MOCKUP ===== */
.report-mockup { position: relative; }

.mockup-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.mockup-header {
  background: #1a1a2e;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.mockup-logo span { color: #60a5fa; }

.mockup-vin {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mockup-car {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}

.mockup-car-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: #1a1a2e;
}

.mockup-car-sub {
  font-size: 0.82rem;
  color: #718096;
  margin-top: 2px;
}

.mockup-rows { padding: 8px 0; }

.mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.875rem;
  color: #2d3748;
  font-weight: 700;
}

.mockup-row:last-child { border: none; }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.green { background: #16a34a; }
.dot.orange { background: #f59e0b; }

.tag {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.tag.green { background: #d1fae5; color: #16a34a; }
.tag.orange { background: #fef3c7; color: #d97706; }

.mockup-footer {
  background: #f8fafc;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: #718096;
  border-top: 1px solid #e2e8f0;
}

.mockup-pages {
  background: #ebf4ff;
  color: #0466CB;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: #1a1a2e;
  color: #fff;
}

.pricing .section-header h2 { color: #fff; }
.pricing .section-header p { color: #94a3b8; }

.plans {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.plan {
  background: #16213e;
  border: 1px solid #2d3a5a;
  border-radius: 16px;
  padding: 36px 32px;
  width: 340px;
  position: relative;
  transition: transform 0.2s;
}

.plan:hover { transform: translateY(-4px); }

.plan-featured {
  background: #0466CB;
  border-color: #0466CB;
  transform: scale(1.04);
}

.plan-featured:hover { transform: scale(1.04) translateY(-4px); }

.plan-badge {
  background: #F98425;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 2px;
}

.plan-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.plan-list { margin-bottom: 32px; }

.plan-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-list li:last-child { border: none; }

.plan-list li.yes::before {
  content: '✓';
  color: #4ade80;
  font-weight: 900;
  flex-shrink: 0;
}

.plan-list li.no {
  color: rgba(255,255,255,0.3);
}

.plan-list li.no::before {
  content: '✗';
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #D74141, #F98425);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}

.btn-plan:hover { opacity: 0.9; }

.btn-plan-white {
  background: #fff;
  color: #0466CB;
}

.btn-plan-white:hover { background: #f0f9ff; opacity: 1; }

/* ===== WHY US ===== */
.why-us {
  padding: 80px 0;
  background: #fff;
}

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

.why-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  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 { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: #718096; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: #0f1f3d; color: #94a3b8; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 260px;
}

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

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; }

.footer-trust {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
}

/* ===== PRICING PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, #0f1f3d, #1a3a6b);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.page-hero h1 { font-size: 2.6rem; font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: #94a3b8; font-size: 1.05rem; }

.pricing-page { padding: 60px 0 80px; background: #f4f6f9; }

.plans-light { background: transparent; padding: 0; }

.plans-light .plan {
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #1a1a2e;
}

.plans-light .plan-featured {
  background: #0466CB;
  border-color: #0466CB;
  color: #fff;
}

.plans-light .plan .plan-name { color: #718096; }
.plans-light .plan .plan-price { color: #1a1a2e; }
.plans-light .plan .plan-note { color: #a0aec0; }
.plans-light .plan-featured .plan-price { color: #fff; }
.plans-light .plan-featured .plan-name { color: rgba(255,255,255,0.7); }
.plans-light .plan-featured .plan-note { color: rgba(255,255,255,0.5); }
.plans-light .plan .plan-list li { color: #2d3748; border-bottom-color: #f1f5f9; }
.plans-light .plan .plan-list li.no { color: #cbd5e0; }
.plans-light .plan-featured .plan-list li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.1); }
.plans-light .plan-featured .plan-list li.no { color: rgba(255,255,255,0.3); }

.faq {
  max-width: 720px;
  margin: 64px auto 0;
}

.faq h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 32px;
  text-align: center;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 12px;
}

.faq-item h4 { font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 0.9rem; color: #718096; }

/* ===== CHECK PAGE ===== */
.check-page {
  padding: 56px 0 80px;
  min-height: 70vh;
  background: #f4f6f9;
}

.check-page h1 { font-size: 2rem; font-weight: 900; margin-bottom: 6px; }
.check-page .step-subtitle { color: #718096; margin-bottom: 28px; font-size: 1rem; }

.check-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px;
  max-width: 540px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.check-box label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.check-box input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #1a1a2e;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: border-color 0.2s;
}

.check-box input[type="email"] { letter-spacing: 0; font-weight: 400; }

.check-box input:focus {
  outline: none;
  border-color: #0466CB;
}

.vin-hint {
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 8px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D74141, #F98425);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; margin-top: 20px; display: block; }

.btn-back {
  background: none;
  border: none;
  color: #718096;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 14px;
  padding: 4px 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.btn-back:hover { color: #0466CB; }

.error-msg { color: #e53e3e; font-size: 0.82rem; margin-top: 6px; }

/* ===== PLAN SELECT ===== */
.plan-select {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
  margin-bottom: 16px;
}

.plan-option {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.plan-option:hover { border-color: #90cdf4; }
.plan-option-selected { border-color: #0466CB !important; box-shadow: 0 0 0 4px rgba(4,102,203,0.1); }
.plan-option-featured { border-color: #bee3f8; background: #f0f9ff; }

.badge-small {
  background: #F98425;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.plan-option-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.plan-option-left h3 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.plan-option-left p { font-size: 0.8rem; color: #718096; }

.plan-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e0;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s;
  position: relative;
}

.radio-selected { border-color: #0466CB; background: #0466CB; }

.radio-selected::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.plan-price-tag {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1a1a2e;
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 22px;
  max-width: 540px;
  margin-bottom: 24px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.order-row:last-child { border: none; }
.order-total { font-weight: 700; font-size: 1.05rem; color: #1a1a2e; }

/* ===== STRIPE CARD ===== */
#card-element {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 4px;
  transition: border-color 0.2s;
}

.secure-note {
  text-align: center;
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 10px;
}

/* ===== SUCCESS ===== */
.success-box {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #16a34a;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(22,163,74,0.3);
}

.success-box h1 { font-size: 1.8rem; margin-bottom: 14px; }
.success-box p { color: #4a5568; margin-bottom: 8px; font-size: 0.95rem; }
.success-sub { font-size: 0.85rem; color: #a0aec0; margin-bottom: 32px !important; }

/* ===== VEHICLE TYPES ===== */
.vehicle-types {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}

.vehicle-types-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vt-label {
  font-size: 0.8rem;
  font-weight: 900;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.vt-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vt-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f4f6f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a5568;
  transition: all 0.2s;
  cursor: default;
}

.vt-item:hover {
  background: #ebf4ff;
  border-color: #bee3f8;
  color: #0466CB;
}

/* ===== LIVE TICKER ===== */
.live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 7px 16px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

.live-dot-pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

.live-text {
  transition: opacity 0.4s ease;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ===== ONLINE DOT ===== */
.online-dot {
  width: 9px; height: 9px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.live-online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.3rem !important;
  color: #0466CB;
}

/* ===== ACTIVITY FEED ===== */
.activity-feed {
  background: #edf2f7;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
  overflow: hidden;
}

.activity-feed-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.feed-label {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: #0466CB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.feed-scroll {
  display: flex;
  gap: 32px;
  overflow: hidden;
  flex: 1;
}

.feed-item {
  font-size: 0.82rem;
  color: #4a5568;
  white-space: nowrap;
  padding: 4px 0;
}

.feed-item-new {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feed-item-new.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: #f4f6f9;
}

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

.review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 42px; height: 42px;
  background: #0466CB;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: #718096; margin-top: 1px; }

.review-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-card p {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.7;
  font-style: italic;
}

.review-date {
  font-size: 0.75rem;
  color: #a0aec0;
  margin-top: 14px;
}

/* ===== TODAY BANNER ===== */
.today-banner {
  background: linear-gradient(135deg, #0f1f3d, #0466CB);
  padding: 32px 0;
  color: #fff;
}

.today-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.today-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.today-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #4ade80;
}

.today-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.today-mid { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.9); }

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  max-width: 320px;
}

.toast.show { transform: translateY(0); opacity: 1; }

.toast-flag { font-size: 1.8rem; flex-shrink: 0; }

.toast-body { flex: 1; }

.toast-title { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; }

.toast-sub { font-size: 0.78rem; color: #718096; margin-top: 2px; }

.toast-close {
  font-size: 1.2rem;
  color: #a0aec0;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  padding: 2px 4px;
}

.toast-close:hover { color: #1a1a2e; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .checks-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .report-preview-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .today-inner { flex-direction: column; text-align: center; }
  .today-left { justify-content: center; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .stats-inner { gap: 0; }
  .stat { padding: 8px 24px; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-line { width: 2px; height: 40px; margin: 0 0 0 0; transform: none; }
  .plans { flex-direction: column; align-items: center; }
  .plan-featured { transform: none; }
  .search-box { padding: 20px; }
  .topbar-inner { gap: 16px; }
  .nav-links { gap: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .checks-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .input-row { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .topbar-inner span:not(:first-child) { display: none; }
  .toast { left: 16px; right: 16px; max-width: none; bottom: 16px; }
  .feed-scroll { gap: 16px; }
}
