/* ===========================================================================
   SurgiTrack — Customer Tracking Page
   White, clean, professional medical aesthetic — matches surgimedex.in
   =========================================================================== */

:root {
  --st-primary:        #0b5fa5;
  --st-primary-dark:   #084a82;
  --st-accent:         #f7941d;
  --st-success:        #16a34a;
  --st-warning:        #d97706;
  --st-danger:         #dc2626;

  --st-bg:             #ffffff;
  --st-bg-alt:         #f9fafb;
  --st-surface:        #ffffff;
  --st-border:         #e5e7eb;
  --st-border-strong:  #d1d5db;

  --st-text:           #1f2937;
  --st-text-body:      #374151;
  --st-text-muted:     #6b7280;
  --st-text-light:     #9ca3af;

  --st-radius:         8px;
  --st-radius-lg:      12px;
  --st-shadow-sm:      0 1px 2px rgba(0,0,0,0.04);
  --st-shadow:         0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

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

body.surgitrack-tracking-body {
  background: var(--st-bg-alt);
  color: var(--st-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.st-page { display: flex; flex-direction: column; min-height: 100vh; }
.st-container { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ── Header (matches Surgimedex white clean header) ─────────────────────── */
.st-header {
  background: #ffffff;
  border-bottom: 1px solid var(--st-border);
  padding: 18px 0;
}
.st-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.st-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.15s;
}
.st-logo:hover { opacity: 0.85; }
.st-logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
}

.st-header-nav { display: flex; align-items: center; gap: 28px; }
.st-header-nav a {
  color: var(--st-text-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.st-header-nav a:hover { color: var(--st-primary); }

@media (max-width: 600px) {
  /* Stack the header so the logo sits above a centered, wrapping nav —
     instead of hiding Home/Shop/Contact entirely on narrow screens. */
  .st-header-inner {
    flex-direction: column;
    gap: 12px;
  }
  .st-header-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .st-header-nav a { font-size: 15px; }
  .st-logo img { height: 36px; }
}

/* ── Main ──────────────────────────────────────────────────────────────── */
.st-main { flex: 1; padding: 40px 0 56px; }

.st-intro { text-align: center; margin-bottom: 32px; }
.st-intro-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--st-text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.st-intro-sub {
  font-size: 15px;
  color: var(--st-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── Card ──────────────────────────────────────────────────────────────── */
.st-card {
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-lg);
  padding: 28px;
  box-shadow: var(--st-shadow-sm);
  margin-bottom: 20px;
}
.st-card-heading {
  font-size: 17px;
  font-weight: 600;
  color: var(--st-text);
  margin-bottom: 6px;
}
.st-card-desc {
  font-size: 14px;
  color: var(--st-text-muted);
  margin-bottom: 24px;
}

/* ── Lookup Form ───────────────────────────────────────────────────────── */
.st-lookup-card { max-width: 560px; margin: 0 auto 20px; }

.st-field { margin-bottom: 16px; }
.st-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--st-text-body);
  margin-bottom: 6px;
}
.st-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--st-border-strong);
  border-radius: var(--st-radius);
  background: #ffffff;
  color: var(--st-text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.st-field input:focus {
  border-color: var(--st-primary);
  box-shadow: 0 0 0 3px rgba(11,95,165,0.1);
}
.st-field input::placeholder { color: var(--st-text-light); }

.st-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--st-primary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: var(--st-radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  margin-top: 4px;
  transition: background 0.15s;
}
.st-btn-primary:hover:not(:disabled) { background: var(--st-primary-dark); }
.st-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.st-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--st-border-strong);
  color: var(--st-primary);
  background: #ffffff;
  padding: 9px 18px;
  border-radius: var(--st-radius);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.st-btn-outline:hover {
  background: var(--st-primary);
  color: #ffffff;
  border-color: var(--st-primary);
}

.st-error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: var(--st-radius);
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 14px;
}

/* ── Status Card ───────────────────────────────────────────────────────── */
.st-status-card { padding: 28px; }
.st-status-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--st-border);
  margin-bottom: 24px;
}
.st-status-icon {
  width: 56px;
  height: 56px;
  background: rgba(11, 95, 165, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  line-height: 1;
  margin-top: 2px;
}
.st-status-card.delivered .st-status-icon { background: rgba(22, 163, 74, 0.1); }
.st-status-card.exception .st-status-icon { background: rgba(220, 38, 38, 0.1); }

.st-status-info { flex: 1; }

/* ── Last-updated + Refresh button (sits to the right of the status info) ─ */
.st-status-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.st-last-synced {
  font-size: 11px;
  color: var(--st-text-muted, #64748b);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.3;
}
.st-refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid var(--st-border, #e2e8f0);
  border-radius: 8px;
  color: var(--st-primary, #0b5fa5);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}
.st-refresh-btn:hover:not(:disabled) {
  background: rgba(11, 95, 165, 0.06);
  border-color: var(--st-primary, #0b5fa5);
}
.st-refresh-btn:active:not(:disabled) { transform: translateY(1px); }
.st-refresh-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.st-refresh-btn.is-spinning .st-refresh-icon {
  animation: st-spin 0.8s linear infinite;
}
@keyframes st-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 600px) {
  .st-status-row { flex-wrap: wrap; }
  .st-status-meta { align-items: flex-start; width: 100%; margin-top: 4px; }
  .st-refresh-label { display: none; }
  .st-refresh-btn { padding: 7px 9px; }
}

.st-status-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--st-text-muted);
  margin-bottom: 4px;
}
.st-status-title { font-size: 20px; font-weight: 700; color: var(--st-text); margin-bottom: 4px; }
.st-status-card.delivered .st-status-title { color: var(--st-success); }
.st-status-card.exception .st-status-title { color: var(--st-danger); }
.st-status-sub { font-size: 13px; color: var(--st-text-muted); }

/* ── Progress steps ────────────────────────────────────────────────────── */
.st-progress-wrap { padding-top: 4px; }
.st-progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 14px;
}
.st-step { display: flex; flex-direction: column; align-items: center; flex: 1; }
.st-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--st-border-strong);
  border: 3px solid #ffffff;
  outline: 1px solid var(--st-border-strong);
  z-index: 2;
  transition: background 0.25s, outline-color 0.25s;
}
.st-step.active .st-step-dot {
  background: var(--st-primary);
  outline-color: var(--st-primary);
}
.st-step.done .st-step-dot {
  background: var(--st-success);
  outline-color: var(--st-success);
}
.st-step-label {
  font-size: 11px;
  color: var(--st-text-muted);
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
}
.st-step.active .st-step-label { color: var(--st-primary); font-weight: 600; }
.st-step.done .st-step-label { color: var(--st-success); font-weight: 600; }

.st-progress-bar {
  height: 4px;
  background: var(--st-border);
  border-radius: 2px;
  margin: 0 7px;
  overflow: hidden;
}
.st-progress-fill {
  height: 100%;
  background: var(--st-primary);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Pending Notice ──────────────────────────────────────────────────────
   Shown only while no tracking events have been received yet. Soft brand-
   blue banner with an info icon, sits between the progress bar and the
   info-row cards. Auto-hides via JS once the first scan arrives. */
.st-pending-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: rgba(11, 95, 165, 0.06);
  border: 1px solid rgba(11, 95, 165, 0.2);
  border-left: 4px solid var(--st-primary, #0b5fa5);
  border-radius: 10px;
  color: var(--st-text, #1a2332);
}
.st-pending-icon {
  color: var(--st-primary, #0b5fa5);
  flex-shrink: 0;
  margin-top: 2px;
}
.st-pending-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.5;
}
.st-pending-text strong {
  font-weight: 700;
  color: var(--st-primary, #0b5fa5);
  font-size: 14px;
}
.st-pending-text span {
  color: var(--st-text-muted, #475569);
}
@media (max-width: 600px) {
  .st-pending-notice { padding: 14px 16px; gap: 10px; }
  .st-pending-text { font-size: 13px; }
}

/* ── Info Cards ────────────────────────────────────────────────────────── */
.st-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.st-info-card {
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-lg);
  padding: 16px 18px;
}
.st-info-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--st-text-muted);
  margin-bottom: 5px;
}
.st-info-value { font-size: 14px; font-weight: 600; color: var(--st-text); }
.st-info-value.mono { font-family: ui-monospace, "SF Mono", Monaco, monospace; font-size: 13px; }

/* ── Timeline ──────────────────────────────────────────────────────────── */
.st-timeline-event {
  display: flex;
  gap: 16px;
  padding-bottom: 18px;
}
.st-timeline-event:last-child { padding-bottom: 0; }
.st-timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16px;
  flex-shrink: 0;
}
.st-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--st-border-strong);
  border: 2px solid #ffffff;
  outline: 1px solid var(--st-border-strong);
}
.st-timeline-event:first-child .st-timeline-dot {
  background: var(--st-primary);
  outline-color: var(--st-primary);
}
.st-timeline-line {
  width: 2px;
  flex: 1;
  background: var(--st-border);
  margin-top: 4px;
  min-height: 16px;
}
.st-timeline-event:last-child .st-timeline-line { display: none; }
.st-timeline-content { flex: 1; padding-bottom: 2px; }
.st-timeline-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--st-primary);
  background: rgba(11, 95, 165, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.st-timeline-desc { font-size: 14px; font-weight: 500; color: var(--st-text); margin-bottom: 3px; }
.st-timeline-meta { font-size: 12px; color: var(--st-text-muted); }

/* ── Manually-confirmed badge — small subtle marker next to a manual event's
   status label. Signals to the customer that this update came from our team's
   independent verification, not from the courier's own scan feed. */
.st-manual-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--st-text-muted, #64748b);
  background: transparent;
  border: 1px solid var(--st-border, #e2e8f0);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.st-timeline-event.st-manual .st-timeline-status {
  color: var(--st-success, #16a34a);
  background: rgba(22, 163, 74, 0.10);
}
.st-timeline-event.st-manual .st-manual-badge {
  color: var(--st-success, #16a34a);
  border-color: rgba(22, 163, 74, 0.3);
}

.st-timeline-loading { text-align: center; padding: 24px; color: var(--st-text-muted); }
.st-spinner {
  width: 26px;
  height: 26px;
  border: 2.5px solid var(--st-border);
  border-top-color: var(--st-primary);
  border-radius: 50%;
  animation: stSpin 0.7s linear infinite;
  margin: 0 auto 10px;
}
@keyframes stSpin { to { transform: rotate(360deg); } }

/* ── Fallback & Support cards ──────────────────────────────────────────── */
.st-fallback-card {
  background: #fffbeb;
  border-color: #fde68a;
  text-align: center;
}
.st-fallback-card p { margin-bottom: 14px; font-size: 14px; color: #92400e; }

.st-support-card {
  display: flex;
  align-items: center;
  gap: 24px;
}
.st-support-content { flex: 1; }
.st-support-content h4 { font-size: 15px; font-weight: 600; color: var(--st-text); margin-bottom: 4px; }
.st-support-content p { font-size: 13px; color: var(--st-text-muted); }

@media (max-width: 600px) {
  .st-support-card { flex-direction: column; text-align: center; gap: 16px; }
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.st-footer {
  background: #ffffff;
  border-top: 1px solid var(--st-border);
  padding: 20px 0;
}
.st-footer-inner { text-align: center; }
.st-footer p { font-size: 13px; color: var(--st-text-muted); }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .st-intro-title { font-size: 24px; }
  .st-card { padding: 20px; }
  .st-status-row { gap: 14px; }
  .st-status-icon { width: 48px; height: 48px; font-size: 22px; }
  .st-info-row { grid-template-columns: 1fr 1fr; }
  .st-info-row .st-info-card:nth-child(3) { grid-column: 1 / -1; }
  .st-step-label { font-size: 9px; }
}
@media (max-width: 380px) {
  .st-container { padding: 0 16px; }
  .st-info-row { grid-template-columns: 1fr; }
  .st-info-row .st-info-card:nth-child(3) { grid-column: auto; }
}

/* ── Date-grouped timeline (collapsible) ──────────────────────────────────── */
.st-tl-group { border: 1px solid var(--st-border, #e2e8f0); border-radius: 10px; margin-bottom: 10px; overflow: hidden; background: #fff; }
.st-tl-group-header {
  width: 100%; display: flex; align-items: center; gap: 12px; cursor: pointer;
  padding: 13px 16px; background: #f8fafc; border: none; font: inherit; text-align: left;
  transition: background .15s;
}
.st-tl-group-header:hover { background: #f1f5f9; }
.st-tl-group-date { font-weight: 700; font-size: 14px; color: var(--st-text, #1a2332); }
.st-tl-group-count { font-size: 12px; color: var(--st-text-muted, #64748b); margin-left: auto; }
.st-tl-group-chevron { font-size: 12px; color: var(--st-text-muted, #64748b); transition: transform .2s; }
.st-tl-group.open .st-tl-group-chevron { transform: rotate(180deg); }
.st-tl-group-body { display: none; padding: 14px 16px 4px; }
.st-tl-group.open .st-tl-group-body { display: block; }

/* ── Replacement / sibling shipments ──────────────────────────────────────── */
.st-siblings-card { padding: 0; overflow: hidden; }
.st-sib-banner {
  background: #fff7ed; color: #9a3412; border-bottom: 1px solid #fed7aa;
  padding: 12px 18px; font-size: 13px; font-weight: 500;
}
.st-sib-list { padding: 8px 0; }
.st-sib-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 18px; border-bottom: 1px solid var(--st-border, #e2e8f0);
}
.st-sib-row:last-child { border-bottom: none; }
.st-sib-row.is-superseded { opacity: 0.72; }
.st-sib-row.is-current { background: #f0f7ff; }
.st-sib-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.st-sib-tag {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  padding: 2px 8px; border-radius: 20px;
}
.st-sib-tag.replacement { background: #dcfce7; color: #166534; }
.st-sib-tag.superseded  { background: #f1f5f9; color: #64748b; }
.st-sib-tag.original    { background: #e0f2fe; color: #075985; }
.st-sib-current { font-size: 11px; color: var(--st-primary, #0b5fa5); font-weight: 600; }
.st-sib-carrier { font-weight: 600; font-size: 14px; }
.st-sib-track { font-size: 12px; color: var(--st-text-muted, #64748b); font-family: ui-monospace, monospace; }
.st-sib-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap;
  background: #f1f5f9; color: #475569;
}
@media (max-width: 600px){
  .st-sib-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Full-width results + two-column timeline/map (desktop) ────────────────── */
/* The lookup form stays narrow (handled by .st-lookup-card), but the results
   area expands to use the full width on large screens. */
.st-container-results { max-width: 1320px; }

.st-track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
/* When the map is hidden (no geocoded points), the timeline spans full width. */
.st-track-grid.st-track-grid--single { grid-template-columns: 1fr; }
.st-track-grid.st-track-grid--single .st-track-right-col { max-width: 880px; margin: 0 auto; width: 100%; }

.st-map-card { position: sticky; top: 20px; }
.st-map-wrap { width: 100%; background: #f8fafc; border-radius: 10px; overflow: hidden; }
.st-india-svg { width: 100%; height: auto; max-height: 560px; display: block; }
.st-map-label { font-size: 12px; font-weight: 700; fill: #334155; paint-order: stroke; stroke: #fff; stroke-width: 3px; stroke-linejoin: round; }
.st-map-label.latest { fill: var(--st-primary, #0b5fa5); }
.st-map-status-line { text-align: center; margin-top: 12px; font-size: 13px; color: var(--st-text-muted, #64748b); }
.st-map-state { font-weight: 700; }
.st-map-legend { display: flex; gap: 18px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.st-map-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--st-text-muted, #64748b); }
.st-map-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.st-map-dot.origin { background: #16a34a; }
.st-map-dot.mid { background: #94a3b8; }
.st-map-dot.dest { background: #fff; border: 3px solid #0b5fa5; width: 8px; height: 8px; }
.st-map-label.dest { fill: #0b5fa5; }
.st-map-label.delivered { fill: #16a34a; }

/* Stack the two columns on tablet/mobile (map on top, timeline below). */
@media (max-width: 880px){
  .st-track-grid { grid-template-columns: 1fr; }
  .st-map-card { position: static; }
  .st-india-svg { max-height: 420px; }
}

/* ── Shared help + FAQ (shown on both form and results views) ──────────────── */
.st-shared-help { margin: 24px 0 0; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.st-faq-card { margin-top: 16px; }
.st-faq-search-wrap { position: relative; margin: 4px 0 16px; }
.st-faq-search-wrap .st-faq-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--st-text-muted, #64748b); opacity: 0.75; pointer-events: none;
  z-index: 2;
}
input.st-faq-search,
.st-faq-search-wrap .st-faq-search {
  width: 100% !important; box-sizing: border-box !important;
  padding: 12px 14px 12px 44px !important;
  border: 1px solid var(--st-border, #e2e8f0) !important; border-radius: 10px !important;
  font-size: 14px !important; font-family: inherit !important;
  color: var(--st-text, #1a2332) !important;
  background: #f8fafc !important; transition: border-color .15s, background .15s;
  text-indent: 0 !important;
}
input.st-faq-search:focus,
.st-faq-search-wrap .st-faq-search:focus {
  outline: none !important; border-color: var(--st-primary, #0b5fa5) !important; background: #fff !important;
}
.st-faq-search:focus ~ .st-faq-search-icon { color: var(--st-primary, #0b5fa5); opacity: 1; }

.st-faq-list { display: flex; flex-direction: column; gap: 8px; }
.st-faq-item { border: 1px solid var(--st-border, #e2e8f0); border-radius: 10px; overflow: hidden; background: #fff; }
.st-faq-q {
  width: 100%; display: flex; align-items: center; gap: 12px; cursor: pointer;
  padding: 15px 16px; background: transparent; border: none; font: inherit;
  text-align: left; color: var(--st-text, #1a2332); transition: background .15s;
}
.st-faq-q:hover { background: #f8fafc; }
.st-faq-q-text { flex: 1; font-weight: 600; font-size: 14px; line-height: 1.4; }
.st-faq-q-chevron { font-size: 12px; color: var(--st-text-muted, #64748b); transition: transform .2s; flex-shrink: 0; }
.st-faq-item.open .st-faq-q-chevron { transform: rotate(180deg); }
.st-faq-item.open .st-faq-q { color: var(--st-primary, #0b5fa5); }

/* Answer panel: collapsed by default, smooth reveal. */
.st-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.st-faq-item.open .st-faq-a { max-height: 800px; }
.st-faq-a-inner {
  padding: 0 16px 16px; font-size: 14px; line-height: 1.6;
  color: var(--st-text-muted, #475569);
}
.st-faq-a-inner a { color: var(--st-primary, #0b5fa5); font-weight: 600; }
.st-faq-a-inner p { margin: 0 0 8px; }
.st-faq-a-inner p:last-child { margin-bottom: 0; }
.st-faq-a-inner ul, .st-faq-a-inner ol { margin: 6px 0; padding-left: 20px; }

.st-faq-noresults { text-align: center; color: var(--st-text-muted, #64748b); font-size: 14px; padding: 16px; }

/* FAQ answer lines (addresses, contact blocks, indented/list-style content). */
.st-faq-a-inner .st-faq-line { line-height: 1.7; }
.st-faq-a-inner .st-faq-line + .st-faq-line { margin-top: 1px; }

/* Right column inside the two-column grid stacks timeline + support card. */
.st-track-right-col { display: flex; flex-direction: column; gap: 16px; }
/* Inline support card (under timeline on results view) — compact look. */
.st-support-card--inline { margin: 0; }
