/* ─────────────────────────────────────────────
   MeterSahi? — Mumbai Auto Fare Checker
   Style: High-contrast civic utility tool.
   Palette: Near-black + saffron accent + clean white surfaces.
   Typography: DM Sans (UI) + DM Mono (numbers/data)
───────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --black:        #1a1a1a;
  --off-black:    #2c2c2c;
  --saffron:      #f59e0b;
  --saffron-dk:   #d97706;
  --saffron-lt:   #fef3c7;
  --green:        #16a34a;
  --green-lt:     #dcfce7;
  --green-dk:     #14532d;
  --red:          #dc2626;
  --red-lt:       #fee2e2;
  --red-dk:       #7f1d1d;
  --blue:         #2563eb;
  --blue-lt:      #eff6ff;
  --surface:      #ffffff;
  --surface-2:    #f8f8f6;
  --surface-3:    #f0efec;
  --border:       #e4e2dc;
  --border-md:    #ccc9c0;
  --text-primary: #1a1a1a;
  --text-secondary: #5c5a54;
  --text-hint:    #9c9a94;

  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --radius-xl:    20px;

  --font-ui:      'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Fira Mono', monospace;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--surface-2);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: var(--font-ui); cursor: pointer; border: none; background: none; }
input, select { font-family: var(--font-ui); }

/* ── CONTAINER ── */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ── */
.site-header {
  background: var(--black);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--saffron);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon { font-size: 26px; line-height: 1; }
.brand-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--saffron);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.brand-sub {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.2;
}
.tariff-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  border: 0.5px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.tariff-badge .ti { font-size: 13px; color: var(--saffron); }

/* ── HERO ── */
.hero {
  background: var(--black);
  color: #fff;
  padding: 36px 0 40px;
}
.hero-heading {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 560px;
  margin-bottom: 10px;
}
.hero-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--saffron);
  margin-top: 10px;
  border-radius: 2px;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.65;
}

/* ── MAIN GRID ── */
.main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  align-items: start;
}
@media (max-width: 760px) {
  .main-grid { grid-template-columns: 1fr; }
}

/* ── PANEL (shared card) ── */
.panel {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 4px;
}
.panel-header h2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.panel-step {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.panel-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 18px 0 0;
}

/* ── INPUT PANEL ── */
.input-panel { padding-bottom: 20px; }
.field-stack { padding: 12px 20px 0; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.field label .ti { font-size: 14px; color: var(--saffron-dk); }
.field input,
.field select {
  padding: 9px 12px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface-2);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--saffron-dk);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
  background: var(--surface);
}
.field input::placeholder { color: var(--text-hint); }

/* Route connector visual */
.route-connector {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 22px;
  gap: 3px;
  margin: 6px 0;
}
.connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
}
.connector-dot--end { background: var(--off-black); }
.connector-line {
  width: 2px;
  height: 14px;
  background: var(--border-md);
  margin-left: 3px;
  border-radius: 2px;
}

/* Options grid */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 20px 0;
}
@media (max-width: 460px) {
  .options-grid { grid-template-columns: 1fr; }
}

/* Actual fare input */
.actual-fare-field { padding: 12px 20px 0; }
.label-hint {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-hint);
  display: block;
  margin-top: 1px;
}
.rupee-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.rupee-input:focus-within {
  border-color: var(--saffron-dk);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
  background: var(--surface);
}
.rupee-symbol {
  padding: 9px 10px 9px 12px;
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  user-select: none;
}
.rupee-input input {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 9px 12px 9px 0;
  flex: 1;
  font-size: 16px;
  font-family: var(--font-mono);
  font-weight: 500;
  outline: none;
  box-shadow: none;
  min-width: 0;
}
.rupee-input input:focus { box-shadow: none; border-color: transparent; }

/* Calculate button */
.btn-calculate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 40px);
  margin: 18px 20px 0;
  padding: 13px;
  background: var(--black);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}
.btn-calculate .ti { font-size: 17px; }
.btn-calculate:hover { background: var(--saffron-dk); }
.btn-calculate:active { transform: scale(0.98); }
.btn-calculate:disabled { opacity: 0.4; pointer-events: none; }

/* Spinner */
.spinner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-secondary);
}
.spinner.visible { display: flex; }
.spinner-ring {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-md);
  border-top-color: var(--saffron-dk);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESULTS PANEL ── */
.results-panel { min-height: 480px; }

/* Empty state */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  text-align: center;
  min-height: 480px;
}
.empty-icon { font-size: 42px; margin-bottom: 14px; }
.empty-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.empty-body { font-size: 13px; color: var(--text-secondary); line-height: 1.65; max-width: 300px; }
.fare-card-preview {
  margin-top: 24px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  width: 100%;
  max-width: 320px;
}
.fare-card-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-hint);
  margin-bottom: 12px;
}
.fare-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fare-card-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fc-label { font-size: 11px; color: var(--text-hint); }
.fc-value { font-size: 18px; font-weight: 600; font-family: var(--font-mono); color: var(--text-primary); }

/* Result content */
.result-content { display: flex; flex-direction: column; gap: 0; }

/* Map */
.map-box {
  width: 100%;
  height: 240px;
  background: var(--surface-3);
  border-bottom: 0.5px solid var(--border);
}

/* Metrics row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid var(--border);
}
.metric-card {
  padding: 14px 16px;
  border-right: 0.5px solid var(--border);
}
.metric-card:last-child { border-right: none; }
.metric-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-hint);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.metric-label .ti { font-size: 13px; }
.metric-value {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.metric-unit { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* Verdict box */
.verdict-box { padding: 18px 20px; border-bottom: 0.5px solid var(--border); }
.verdict--ok {
  background: var(--green-lt);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.verdict--tampered {
  background: var(--red-lt);
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.verdict--neutral {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.verdict-emoji { font-size: 24px; margin-bottom: 6px; line-height: 1; }
.verdict-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.verdict--ok .verdict-title { color: var(--green-dk); }
.verdict--tampered .verdict-title { color: var(--red-dk); }
.verdict--neutral .verdict-title { color: var(--text-primary); }
.verdict-body { font-size: 13px; line-height: 1.6; }
.verdict--ok .verdict-body { color: #166534; }
.verdict--tampered .verdict-body { color: var(--red-dk); }
.verdict--neutral .verdict-body { color: var(--text-secondary); }
.overcharge-amount {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
}

/* Breakdown */
.breakdown-box { padding: 18px 20px; }
.breakdown-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-hint);
  margin-bottom: 10px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 0.5px solid var(--border);
  color: var(--text-secondary);
}
.breakdown-row:last-child {
  border-bottom: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding-top: 10px;
}
.breakdown-row .amount {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-primary);
}
.breakdown-row:last-child .amount {
  font-size: 18px;
  color: var(--black);
}
.tag-night {
  display: inline-block;
  font-size: 11px;
  padding: 2px 7px;
  background: var(--saffron-lt);
  color: var(--saffron-dk);
  border-radius: 20px;
  font-weight: 500;
  margin-left: 6px;
}
.fare-band-label {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: 8px;
  text-align: right;
}

/* Manual fallback */
.manual-fallback {
  padding: 18px 20px;
  border-top: 0.5px solid var(--border);
}
.manual-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.manual-title .ti { font-size: 15px; color: var(--saffron-dk); }
.manual-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6; }
.manual-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
@media (max-width: 480px) {
  .manual-inputs { grid-template-columns: 1fr; }
}
.btn-manual {
  padding: 9px 18px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-manual:hover { background: var(--saffron-dk); }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 48px 0;
  margin-top: 16px;
}
.section-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.how-card {
  padding: 18px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
}
.how-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--saffron-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.how-icon .ti { font-size: 20px; color: var(--saffron-dk); }
.how-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.how-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* ── COMPLAINT SECTION ── */
.complaint-section {
  padding: 40px 0;
  background: var(--black);
  color: #fff;
}
.complaint-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 660px) {
  .complaint-inner { grid-template-columns: 1fr; }
}
.complaint-text h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.35;
}
.complaint-text p { font-size: 13px; color: rgba(255,255,255,0.5); }
.complaint-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.complaint-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}
.complaint-card .ti { font-size: 18px; color: var(--saffron); margin-bottom: 4px; }
.cc-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.05em; }
.cc-value { font-size: 15px; font-weight: 600; color: #fff; }
.cc-hint { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── FOOTER ── */
.site-footer {
  padding: 18px 0;
  background: var(--off-black);
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.site-footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.6;
}

/* ── GOOGLE MAPS AUTOCOMPLETE DROPDOWN ── */
.pac-container {
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border-md) !important;
  box-shadow: var(--shadow-md) !important;
  font-family: var(--font-ui) !important;
  margin-top: 2px !important;
}
.pac-item { font-size: 13px !important; padding: 8px 12px !important; }
.pac-item:hover { background: var(--saffron-lt) !important; }
.pac-item-query { font-weight: 500 !important; }

/* ── UTILITY ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────────
   ADDITIONS: optional tag, feedback, vehicle report,
   searchable select dropdowns
───────────────────────────────────────────── */

/* Optional tag on step label */
.optional-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-hint);
  background: var(--surface-3);
  border: 0.5px solid var(--border-md);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── FEEDBACK SECTION ── */
.feedback-section {
  padding: 18px 20px;
  border-top: 0.5px solid var(--border);
}
.feedback-question {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.feedback-question .ti { font-size: 17px; color: var(--saffron-dk); }
.feedback-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.feedback-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
}
.feedback-btn .ti { font-size: 15px; }
.feedback-btn--yes {
  background: var(--green-lt);
  color: var(--green-dk);
  border-color: #bbf7d0;
}
.feedback-btn--yes:hover { background: #bbf7d0; }
.feedback-btn--no {
  background: var(--red-lt);
  color: var(--red-dk);
  border-color: #fecaca;
}
.feedback-btn--no:hover { background: #fecaca; }

/* Selected state — clear visual confirmation of click */
.feedback-btn.selected {
  box-shadow: 0 0 0 2px currentColor;
  transform: scale(0.97);
}
.feedback-btn--yes.selected {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.feedback-btn--no.selected {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Brief press pulse animation */
.feedback-btn.pulse {
  animation: feedback-pulse 0.35s ease-out;
}
@keyframes feedback-pulse {
  0%   { transform: scale(0.94); }
  60%  { transform: scale(1.03); }
  100% { transform: scale(0.97); }
}

/* Thank-you confirmation after "Yes" */
.feedback-thanks {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--green-lt);
  border: 0.5px solid #bbf7d0;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--green-dk);
  font-weight: 500;
  animation: feedback-fade-in 0.25s ease-out;
}
.feedback-thanks .ti { font-size: 16px; flex-shrink: 0; }
@keyframes feedback-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── REPORT VEHICLE SECTION ── */
.report-vehicle-section {
  margin-top: 18px;
  background: var(--surface-2);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.report-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red-dk);
  margin-bottom: 4px;
}
.report-header .ti { font-size: 16px; }
.report-subtext {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Vehicle number plate row */
.vehicle-number-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.vn-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 70px;
  max-width: 110px;
}
.vn-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-hint);
}
.vn-sep {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-hint);
  padding-bottom: 6px;
  flex-shrink: 0;
}

/* ── SEARCHABLE SELECT ── */
.searchable-select {
  position: relative;
}
.ss-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-primary);
  background: var(--surface);
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  caret-color: transparent; /* hide caret when read-only */
}
.ss-input.editable {
  caret-color: var(--text-primary);
  cursor: text;
}
.ss-input:focus {
  border-color: var(--saffron-dk);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.ss-input.has-value {
  background: var(--saffron-lt);
  border-color: var(--saffron-dk);
  color: var(--off-black);
}

.ss-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 160px;
  max-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 999;
  overflow: hidden;
  flex-direction: column;
}
.ss-dropdown.open { display: flex; }

.ss-search-wrap {
  padding: 8px 10px 6px;
  border-bottom: 0.5px solid var(--border);
}
.ss-search {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-ui);
  outline: none;
  background: var(--surface-2);
}
.ss-search:focus { border-color: var(--saffron-dk); }

.ss-list {
  max-height: 200px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ss-list::-webkit-scrollbar { width: 4px; }
.ss-list::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 4px; }

.ss-option {
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.1s;
  white-space: nowrap;
}
.ss-option:hover { background: var(--saffron-lt); color: var(--off-black); }
.ss-option.selected { background: var(--saffron-lt); font-weight: 600; }
.ss-no-results {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-hint);
  text-align: center;
}

/* Report submit button */
.btn-report {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--red-dk);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-report:hover { background: var(--red); }
.btn-report .ti { font-size: 15px; }

/* Report confirmation */
.report-confirmation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--green-lt);
  border: 0.5px solid #bbf7d0;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--green-dk);
  font-weight: 500;
}
.report-confirmation .ti { font-size: 16px; flex-shrink: 0; }

/* Plate preview badge */
.plate-preview {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  background: #fff9e6;
  border: 2px solid var(--saffron-dk);
  border-radius: 6px;
  padding: 4px 12px;
  letter-spacing: 0.05em;
  color: var(--off-black);
  margin: 12px 0;
}

/* ─────────────────────────────────────────────
   SEO ADDITIONS: hero chips, tariff table,
   FAQ accordion, updated footer
───────────────────────────────────────────── */

/* Hero chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.18);
  padding: 5px 12px;
  border-radius: 20px;
}
.hero-chip .ti { font-size: 13px; color: var(--saffron); }

/* Section sub-heading */
.section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: -16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── TARIFF TABLE SECTION ── */
.tariff-section {
  background: var(--surface-2);
  border-top: 0.5px solid var(--border);
  padding: 48px 0;
}
.tariff-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface);
}
.tariff-table thead tr {
  background: var(--black);
  color: #fff;
}
.tariff-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tariff-table td {
  padding: 11px 16px;
  border-bottom: 0.5px solid var(--border);
  color: var(--text-primary);
  vertical-align: top;
}
.tariff-table td:nth-child(2) {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--off-black);
  white-space: nowrap;
}
.tariff-table tbody tr:last-child td { border-bottom: none; }
.tariff-table tbody tr:hover { background: var(--saffron-lt); }
.tariff-note {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.tariff-note .ti { font-size: 14px; color: var(--saffron-dk); flex-shrink: 0; margin-top: 2px; }

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  padding: 48px 0;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 740px; }
.faq-item {
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.faq-item[open] { border-color: var(--saffron-dk); }
.faq-q {
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-hint);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after {
  content: '–';
  color: var(--saffron-dk);
}
.faq-q:hover { background: var(--surface-2); }
.faq-a {
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 0.5px solid var(--border);
  padding-top: 12px;
}
.faq-a strong { color: var(--text-primary); }

/* ── FOOTER LINKS ── */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--saffron); text-decoration: none; }
.site-footer a { color: rgba(255,255,255,0.3); }
.site-footer a:hover { color: var(--saffron); text-decoration: none; }
