/* SortedInspect AI Page Styles */

/* Hero */
.si-hero {
  text-align: center;
  padding: 3rem 2rem 1rem;
}

.si-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.si-hero p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Search Section */
.si-search {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  justify-content: center;
}

.si-search-card {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.si-reg-input-wrapper {
  display: flex;
  gap: 1px;
  align-items: stretch;
  justify-content: center;
  height: 52px;
}

/* UK Number Plate Style */
.si-reg-plate {
  display: flex;
  align-items: stretch;
  background: #FFD700;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  border: 2px solid #333;
  flex: 1;
}

.si-reg-band {
  background: #003399;
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.si-reg-plate input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding: 0 0.5rem;
  outline: none;
  font-family: 'Courier New', 'Courier', monospace;
  letter-spacing: 3px;
  min-width: 0;
}

.si-reg-plate input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 3px;
  font-family: 'Courier New', 'Courier', monospace;
}

.si-check-btn {
  white-space: nowrap;
  padding: 0 1.5rem !important;
  font-size: 0.95rem !important;
  border-radius: 0 8px 8px 0 !important;
  margin-top: 0 !important;
  border: 2px solid #333;
}

.si-disclaimer {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

/* Loading */
.si-loading {
  text-align: center;
  padding: 3rem 2rem;
}

.si-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: si-spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

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

.si-loading p {
  color: var(--text-dim);
  font-size: 1rem;
}

.si-processing-note {
  font-size: 0.85rem !important;
  margin-top: 0.5rem;
  opacity: 0.6;
}

/* Progress step indicator (replaces the simple spinner during /inspect/ load) */
.si-progress-card {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  text-align: left;
}
.si-progress-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  text-align: center;
}
.si-progress-sub {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.85rem !important;
  margin: 0 0 1.25rem !important;
  text-align: center;
}
.si-progress-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.si-progress-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.si-progress-step:last-child { border-bottom: none; }

.si-progress-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.16);
  transition: background 0.2s, border-color 0.2s;
}

.si-progress-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  transition: color 0.2s;
}

/* In-progress: orange ring, spinning */
.si-progress-step.is-active .si-progress-icon {
  border-color: #ff7a1a;
  border-top-color: transparent;
  animation: si-spin 0.8s linear infinite;
}
.si-progress-step.is-active .si-progress-label {
  color: #fff;
  font-weight: 600;
}

/* Done: green check, filled */
.si-progress-step.is-done .si-progress-icon {
  background: #22c55e;
  border-color: #22c55e;
}
.si-progress-step.is-done .si-progress-icon::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.si-progress-step.is-done .si-progress-label {
  color: rgba(255,255,255,0.78);
}

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

/* Error */
.si-error {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.si-error-card {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  text-align: center;
}

.si-error-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.si-error-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Results */
.si-results {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Vehicle Summary Card */
.si-vehicle-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.4),
    0 4px 16px rgba(0,0,0,0.12),
    0 12px 32px rgba(0,0,0,0.18);
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

.si-vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  pointer-events: none;
}

.si-vehicle-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.si-vehicle-reg {
  display: inline-flex;
  align-items: center;
  background: #FFD700;
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.3rem 1rem;
  border-radius: 6px;
  border: 2px solid #333;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.si-vehicle-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.si-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  position: relative;
}

.si-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.si-stat-label {
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.si-stat-value {
  font-size: 1rem;
  font-weight: 600;
}

.si-stat-value.si-pass {
  color: #22c55e;
}

.si-stat-value.si-fail {
  color: #ef4444;
}

/* Section Cards */
.si-section-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.5rem 2rem;
}

.si-section-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Research Results */
.si-research-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.si-research-item:last-child {
  border-bottom: none;
}

.si-research-issue {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.si-research-severity {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Top-Banner Disclaimer */
.si-top-disclaimer {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: #f59e0b;
  line-height: 1.6;
  text-align: center;
}

.si-top-disclaimer strong {
  color: #fbbf24;
}

/* Summary Card */
.si-summary-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.si-summary-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.7;
}

/* Question Cards */
.si-question-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0;                 /* padding lives on summary + answers now */
  margin-bottom: 0.6rem;
  transition: border-color 0.2s;
  overflow: hidden;
}

.si-question-card:hover {
  border-color: rgba(255,255,255,0.2);
}

.si-question-key {
  border-color: rgba(255,107,0,0.25);
}

/* <summary> is the always-visible accordion header */
.si-question-summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.75rem 1rem 1.25rem; /* extra right padding leaves room for the chevron */
  position: relative;
}
.si-question-summary::-webkit-details-marker { display: none; }
.si-question-summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  color: var(--text-dim);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s;
}
details.si-question-card[open] > .si-question-summary::after {
  content: '\2212'; /* en-dash / minus */
  color: #ff6b00;
}
details.si-question-card[open] {
  border-color: rgba(255,107,0,0.35);
  background: rgba(255,107,0,0.04);
}

.si-question-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.si-question-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.si-question-badge.key {
  background: rgba(255,107,0,0.15);
  color: #ff6b00;
  border: 1px solid rgba(255,107,0,0.3);
}

.si-question-badge.worth {
  background: rgba(37,99,235,0.12);
  color: #60a5fa;
  border: 1px solid rgba(37,99,235,0.25);
}

.si-question-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  opacity: 0.7;
}

.si-question-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
}

.si-question-answers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.9rem;
}

.si-answer {
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.si-answer-good {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15);
}

.si-answer-red {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
}

.si-answer-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.si-answer-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.si-answer-good .si-answer-label { color: #22c55e; }
.si-answer-red .si-answer-label { color: #f59e0b; }
.si-answer-good .si-answer-text { color: #86efac; }
.si-answer-red .si-answer-text { color: #fcd34d; }

/* Recall Card */
.si-recall-card {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-top: 0.75rem;
}

.si-recall-icon { font-size: 1.1rem; flex-shrink: 0; }
.si-recall-text { font-size: 0.82rem; color: #fbbf24; line-height: 1.5; }

/* Questions Disclaimer */
.si-questions-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  opacity: 0.7;
}

/* What This Report Is NOT */
.si-not-list {
  list-style: none;
  padding: 0;
}

.si-not-list li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}

.si-not-list li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.si-not-cta {
  font-size: 0.85rem;
  color: #f59e0b;
  margin-top: 0.75rem;
  font-weight: 600;
}

.si-research-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.si-research-check {
  font-size: 0.85rem;
  color: #93c5fd;
  margin-top: 0.3rem;
  line-height: 1.5;
}

.si-research-check strong {
  color: #3b82f6;
}

.si-research-source {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
  opacity: 0.6;
  font-style: italic;
}

.si-research-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1rem;
  opacity: 0.7;
  text-align: center;
}

/* Mileage Chart */
#mileage-chart {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.si-mileage-avg {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  font-weight: 500;
}

/* AI Disclaimer */
.si-ai-disclaimer {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* AI Tag */
.ai-tag {
  font-size: 9px;
  font-weight: 700;
  background: rgba(255,107,0,0.15);
  color: #ff6b00;
  border: 1px solid rgba(255,107,0,0.3);
  padding: 2px 6px;
  border-radius: 99px;
  letter-spacing: 0.8px;
  vertical-align: middle;
  margin-left: 6px;
}

/* Upgrade CTA */
.si-upgrade-card {
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(37,99,235,0.08) 100%);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
}

.si-upgrade-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.si-upgrade-card > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.si-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.si-tier {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.si-tier:hover {
  border-color: var(--primary);
  background: rgba(255,107,0,0.08);
  transform: translateY(-2px);
}

.si-tier-popular {
  border-color: var(--primary);
  background: rgba(255,107,0,0.06);
}

.si-tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 10px;
  white-space: nowrap;
}

.si-tier-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.si-tier-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.si-tier-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.si-tier-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.si-tier-features li {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 0.15rem 0 0.15rem 1rem;
  position: relative;
}

.si-tier-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.si-tier-note {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

/* Email Lead Capture */
.si-email-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-align: center;
}

.si-email-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.si-email-card > p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.si-email-fields {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto 0.75rem;
}

.si-email-fields input {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.si-email-fields input:focus {
  border-color: var(--primary);
}

.si-email-fields input::placeholder {
  color: var(--text-dim);
}

.si-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 0.75rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  cursor: pointer;
  text-align: left;
}

.si-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #ff6b00;
  flex-shrink: 0;
}

.si-checkbox-label a {
  color: #ff6b00;
  text-decoration: underline;
}

.si-send-btn {
  margin-top: 0 !important;
  padding: 0.6rem 2rem !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
}

.si-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.si-soft-optin {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  opacity: 0.6;
}

/* ============================================
   PHOTO UPLOAD STYLES
   ============================================ */

.si-upload-intro {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.si-photos-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.si-photos-optional {
  margin-top: 1.5rem;
}

.si-optional-note {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.si-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.si-photo-slot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.si-photo-slot:hover {
  border-color: rgba(255,255,255,0.2);
}

.si-photo-slot.uploaded {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.06);
}

.si-photo-optional {
  opacity: 0.7;
}

.si-photo-optional:hover {
  opacity: 1;
}

.si-photo-preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.si-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.si-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-dim);
}

.si-photo-icon {
  font-size: 1.5rem;
  opacity: 0.4;
}

.si-photo-number {
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.4;
}

.si-photo-info {
  margin-bottom: 0.5rem;
}

.si-photo-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.si-photo-instruction {
  font-size: 0.7rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.si-photo-input {
  display: none;
}

.si-photo-btn {
  width: 100%;
  padding: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  color: #ff6b00;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.si-photo-btn:hover {
  background: rgba(255,107,0,0.2);
}

.si-photo-slot.uploaded .si-photo-btn {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #22c55e;
}

/* Upload Progress */
.si-upload-progress {
  margin-top: 1rem;
}

.si-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.si-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0%;
}

/* Submit */
.si-upload-submit {
  text-align: center;
  margin-top: 1.5rem;
}

.si-upload-count {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.si-submit-btn {
  padding: 0.8rem 3rem !important;
  font-size: 1rem !important;
}

.si-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Trust Section */
.si-trust {
  max-width: 800px;
  margin: 1rem auto 2rem;
  padding: 0 2rem;
}

.si-trust-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.si-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.si-trust-icon {
  font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .si-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .si-hero h1 {
    font-size: 2.2rem;
  }

  .si-reg-input-wrapper {
    flex-direction: column;
    height: auto;
  }

  .si-reg-plate {
    border-radius: 8px 8px 0 0;
    border: 2px solid #333;
    border-bottom: none;
    height: 52px;
    width: 100%;
  }

  .si-check-btn {
    border-radius: 0 0 8px 8px !important;
    border: 2px solid #333 !important;
    border-top: none !important;
    width: 100%;
    height: 48px !important;
  }

  .si-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .si-tiers {
    grid-template-columns: 1fr;
  }

  .si-trust-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .si-email-fields {
    flex-direction: column;
  }

  .si-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
