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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f4f1ea url('../img/vehicles-backdrop.svg') top center / 1600px auto repeat;
  color: #1a1a2e;
  line-height: 1.5;
  font-size: 14px;
}

a { color: #1f3a5f; }
a:hover { color: #0a1560; }

/* ===== Header ===== */
.app-header {
  background: #fbf4e4;
  color: #1f3a5f;
  padding: 24px 0 16px;
  text-align: center;
  border-bottom: 3px solid #e8a21c;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.header-logo {
  /* Logo is the hero of the header */
  width: min(680px, 94vw);
  max-height: 230px;
  height: auto;
  object-fit: contain;
  display: block;
}
.app-header h1 {
  /* Now a subtext descriptor under the logo, not the main header */
  font-size: 17px;
  font-weight: 600;
  color: #1f3a5f;
  letter-spacing: 0.2px;
  margin-top: -8px;
}
.app-header .header-tagline {
  width: 100%;
  font-size: 12.5px;
  font-weight: 400;
  color: #6b7280;
  margin-top: 3px;
  letter-spacing: 0.4px;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 14px;
}
.lang-btn {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn:hover {
  color: #1f3a5f;
  border-color: #9ca3af;
  background: #f3f4f6;
}
.lang-btn.active {
  color: #fff;
  background: #1f3a5f;
  border-color: #1f3a5f;
}
.lang-sep {
  color: #d1d5db;
  font-size: 12px;
  user-select: none;
}

/* ===== Container ===== */
.container {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 16px;
}

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #e2e6ea;
}
.card h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1f3a5f;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8a21c;
}
.section-desc {
  color: #555;
  margin-bottom: 16px;
  font-size: 13px;
}

/* ===== Landing / Lookup Section ===== */
.lookup-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 320px;
}
.landing-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 16px 32px;
}
.landing-title {
  font-size: 26px;
  font-weight: 700;
  color: #1f3a5f;
  margin-bottom: 8px;
  border: none;
  padding: 0;
}
.landing-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 28px;
}
.landing-input-group {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 29, 122, 0.12);
  border: 2px solid #1f3a5f;
}
.landing-dot-input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a2e;
  outline: none;
  letter-spacing: 0.5px;
}
.landing-dot-input::placeholder {
  color: #b0b8c9;
  font-weight: 400;
}
.landing-go-btn {
  background: #e8a21c;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 1px;
}
.landing-go-btn:hover { background: #a07e24; }
.landing-go-btn:disabled { background: #c9b97a; cursor: not-allowed; }

/* Legacy lookup row (kept for status/summary reuse) */
.lookup-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.lookup-row .field { flex: 1; min-width: 180px; }
.lookup-row .field-btn { flex: 0 0 auto; }

.lookup-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.lookup-status.info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.lookup-status.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.lookup-status.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Not-found / MOTUS fallback notice */
.lookup-status.not-found {
  background: #fbf4e4;
  color: #1f3a5f;
  border: 1px solid #e8a21c;
  padding: 16px 18px;
  text-align: left;
}
.not-found-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.not-found-body { font-size: 13px; font-weight: 400; color: #374151; margin: 0 0 12px; line-height: 1.45; }
.not-found-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-motus {
  background: #1f3a5f;
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #1f3a5f;
}
.btn-motus:hover { background: #142a45; }
.btn-manual {
  background: #e8a21c;
  color: #fff;
  border: 1px solid #e8a21c;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-manual:hover { background: #c8861a; border-color: #c8861a; }

/* Carrier Summary */
.carrier-summary {
  margin-top: 16px;
  padding: 16px;
  background: #fbf4e4;
  border-radius: 6px;
  border: 1px solid #e8a21c;
  border-left: 4px solid #e8a21c;
}
.carrier-summary h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #1f3a5f;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 20px;
}
.summary-item { font-size: 13px; }
.summary-item .label { color: #6b7280; font-weight: 500; }
.summary-item .value { color: #111827; font-weight: 600; }

/* ===== Form Fields ===== */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.field input,
.field select,
.field textarea {
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 14px;
  color: #1a1a2e;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #e8a21c;
  box-shadow: 0 0 0 3px rgba(184,149,47,0.15);
}
.field input[readonly] {
  background: #f3f4f6;
  color: #6b7280;
}
.field small {
  margin-top: 3px;
  font-size: 11px;
  color: #9ca3af;
}

/* Upload row */
.upload-divider {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  margin: 10px 0 4px;
}
.drop-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, background .2s;
  cursor: pointer;
  position: relative;
}
.drop-zone:hover {
  border-color: #1b3a6b;
  background: #f0f4fa;
}
.drop-zone.drag-over {
  border-color: #c8861a;
  background: #fef9ee;
}
.drop-zone-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}
.btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.drop-zone-hint {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}
.upload-filetypes {
  display: block;
  font-size: 10px;
  color: #b0b7c3;
  margin-top: 4px;
  letter-spacing: .3px;
}
.upload-file-list {
  margin-top: 8px;
  text-align: left;
}
.upload-file-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  color: #374151;
  margin: 2px 4px 2px 0;
}
.upload-file-item .remove-file {
  cursor: pointer;
  color: #9ca3af;
  font-weight: 700;
  margin-left: 4px;
  font-size: 14px;
  line-height: 1;
}
.upload-file-item .remove-file:hover {
  color: #dc2626;
}

/* Required field asterisk */
.field label .req {
  color: #dc2626;
  margin-left: 2px;
  font-weight: 700;
}

/* Validation error state */
.field.field-error input,
.field.field-error select,
.field.field-error textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220,38,38,0.15);
}
.field.field-error label {
  color: #dc2626;
}

/* Validation banner */
.validation-msg {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  align-items: center;
  gap: 8px;
  animation: shake 0.4s ease;
  display: none;
}
.validation-msg.visible {
  display: flex;
}
.validation-msg .val-icon {
  font-size: 18px;
  flex-shrink: 0;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Width helpers */
.full { flex: 1 1 100%; }
.half { flex: 1 1 calc(50% - 7px); min-width: 200px; }
.third { flex: 1 1 calc(33.333% - 10px); min-width: 140px; }

/* Sub-heading */
.sub-heading {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-top: 18px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.inline-check {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.inline-check input[type="checkbox"] { cursor: pointer; }

/* ===== Tables ===== */
.table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table th {
  background: #f3f4f6;
  padding: 8px 6px;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid #e2e6ea;
}
table td {
  padding: 6px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
table input, table select {
  padding: 6px 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
  width: 100%;
}
table input.sm { width: 80px; }
table input:focus, table select:focus {
  outline: none;
  border-color: #e8a21c;
}

.btn-remove {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}
.btn-remove:hover { background: #fef2f2; }

/* ===== Buttons ===== */
.btn-secondary {
  background: #fff;
  color: #1f3a5f;
  border: 1px solid #1f3a5f;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.15s;
}
.btn-secondary:hover { background: #f0f4f8; }

.btn-primary {
  background: #1f3a5f;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: #142a45; }

.btn-danger {
  background: #fff;
  color: #dc2626;
  border: 1px solid #dc2626;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-danger:hover { background: #fef2f2; }

/* ===== Actions Bar ===== */
.actions-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.actions-bar[hidden] {
  display: none;
}
#mailingGroup[hidden],
#garagingGroup[hidden] {
  display: none;
}

/* ===== Coverage Grid ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.coverage-item {
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e2e6ea;
}
.coverage-item label {
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.coverage-item select {
  margin-top: 6px;
  padding: 6px 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
  width: 100%;
}
.inline-fields {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.sm-label {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sm-label input.sm {
  width: 90px;
  padding: 5px 7px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
}

/* ===== Coverage sub-wizard (Section 7 one-question flow) ===== */
.cov-substep {
  min-height: 220px;
  padding-top: 8px;
}
.cov-substep[hidden] { display: none; }
.cov-q-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f3a5f;
  margin: 18px 0 4px;
  text-align: center;
}
.cov-sub {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin: 0 0 18px;
}
.cov-date-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0 10px;
}
.cov-date {
  font-size: 18px;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
}
.cov-date:focus {
  outline: none;
  border-color: #16a34a;
}
.cov-date.field-error {
  border-color: #dc2626;
  background: #fef2f2;
}
.req-star {
  color: #dc2626;
  font-weight: 700;
}
.cov-error {
  color: #dc2626;
  font-size: 13px;
  text-align: center;
  margin: 8px 0 0;
}
.cov-error[hidden] { display: none; }
.cov-hint {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin: 6px 0 0;
}
.cov-toggle {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 8px 0 20px;
}
.cov-opt {
  min-width: 150px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s;
}
.cov-opt:hover { border-color: #9ca3af; background: #f9fafb; }
.cov-opt.cov-yes.active {
  border-color: #16a34a;
  background: #16a34a;
  color: #fff;
}
.cov-opt.cov-no.active {
  border-color: #9ca3af;
  background: #6b7280;
  color: #fff;
}
.cov-details {
  max-width: 360px;
  margin: 0 auto 8px;
}
.cov-details[hidden] { display: none; }
.cov-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}
.cov-field-label select,
.cov-field-label input {
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}
.cov-details .inline-fields { justify-content: center; }

/* ===== VIN Decoder ===== */
.vin-lookup-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin-top: 14px;
}
.vin-lookup-row > .field:first-child {
  flex: 1;
  min-width: 0;
}
.vin-lookup-row .field-btn {
  flex: 0 0 auto;
}
.vin-lookup-row .field-btn button {
  margin-top: 0;
}
.vin-result-card {
  margin-top: 16px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e8a21c;
  border-left: 4px solid #e8a21c;
  animation: wizardFadeIn 0.3s ease-out;
}
.vin-result-card .form-grid {
  margin-top: 0;
}
.btn-add-vehicle {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s;
}
.btn-add-vehicle:hover { background: #15803d; }

#vehicleTable {
  margin-top: 8px;
}
#vehicleTable td {
  font-size: 12px;
  white-space: nowrap;
}

/* ===== Insurance History ===== */
#insuranceHistoryTable td:last-child {
  font-size: 12px;
  max-width: 180px;
}

/* ===== Footer ===== */
.app-footer {
  text-align: center;
  padding: 20px;
  color: #9ca3af;
  font-size: 12px;
}

/* ===== Wizard Progress Bar ===== */
.wizard-progress {
  background: #fff;
  border-radius: 8px;
  padding: 16px 28px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #e2e6ea;
}
.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.progress-steps::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #e2e6ea;
  z-index: 0;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e6ea;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.step-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  transition: color 0.3s ease;
}
.progress-step.active .step-num {
  background: #1f3a5f;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(15, 29, 122, 0.15);
}
.progress-step.active .step-label {
  color: #1f3a5f;
  font-weight: 600;
}
.progress-step.completed .step-num {
  background: #16a34a;
  color: #fff;
}
.progress-step.completed .step-label {
  color: #166534;
}

/* ===== Carrier Banner (compact) ===== */
.carrier-banner[hidden] { display: none; }
.carrier-banner {
  background: #fbf4e4;
  border: 1px solid #e8a21c;
  border-left: 4px solid #e8a21c;
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.carrier-banner .banner-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.carrier-banner .banner-item .label { color: #6b7280; font-weight: 500; }
.carrier-banner .banner-item .value { color: #111827; font-weight: 600; }
.carrier-banner .banner-edit {
  font-size: 12px;
  color: #2563eb;
  cursor: pointer;
  text-decoration: underline;
  white-space: nowrap;
}

/* ===== Wizard Navigation ===== */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e2e6ea;
}
.btn-back {
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-back:hover { background: #f3f4f6; border-color: #9ca3af; }

.btn-next {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-next:hover { background: #15803d; }

.btn-finish {
  background: #1f3a5f;
}
.btn-finish:hover { background: #142a45; }

/* ===== Wizard Animations ===== */
@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-section.wizard-active {
  display: block !important;
  animation: wizardFadeIn 0.3s ease-out;
}

/* ===== Address Autocomplete Dropdown ===== */
.address-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  max-height: 220px;
  overflow-y: auto;
}
.address-option {
  padding: 10px 12px;
  font-size: 13px;
  color: #1a1a2e;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.1s;
}
.address-option:last-child {
  border-bottom: none;
}
.address-option:hover,
.address-option.active {
  background: #eef2ff;
  color: #1f3a5f;
}

/* ===== Print Styles ===== */
@media print {
  body { background: #fff !important; background-image: none !important; font-size: 12px; }
  .app-header { background: #fff !important; border-bottom: 2px solid #e8a21c; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .lookup-section { display: none; }
  .actions-bar { display: none !important; }
  .app-footer { display: none; }
  .card { box-shadow: none; border: 1px solid #ccc; page-break-inside: avoid; }
  .btn-remove { display: none; }
  .btn-secondary { display: none; }
  .wizard-progress { display: none !important; }
  .wizard-nav { display: none !important; }
  .cov-substep { display: block !important; }
  .cov-details { display: block !important; }
  .carrier-banner { display: none !important; }
  .form-section { display: block !important; }
  input, select, textarea {
    border: none !important;
    background: transparent !important;
    padding: 2px 0 !important;
    box-shadow: none !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .half, .third { flex: 1 1 100%; }
  .coverage-grid { grid-template-columns: 1fr; }
  .lookup-row { flex-direction: column; }
  .summary-grid { grid-template-columns: 1fr; }
  .step-label { display: none; }
  .step-num { width: 28px; height: 28px; font-size: 12px; }
  .wizard-progress { padding: 12px 16px; }
  .carrier-banner .banner-info { gap: 8px; }
  .btn-next { padding: 10px 18px; font-size: 14px; }
  .landing-hero { padding: 24px 8px 16px; }
  .landing-title { font-size: 22px; }
  .landing-dot-input { font-size: 16px; padding: 12px 14px; }
  .landing-go-btn { padding: 12px 24px; font-size: 16px; }
  .vin-lookup-row { flex-direction: column; }
  .vin-result-card { padding: 12px 14px; }
  #vehicleTable td { font-size: 11px; }
}
