/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --indigo:   #1a56db;
  --indigo-dk:#1140b0;
  --green-50: #ecfdf5;
  --green-500:#10b981;
  --green-600:#059669;
  --red-50:   #fef2f2;
  --red-400:  #f87171;
  --red-600:  #dc2626;
  --slate-50: #f8fafc;
  --slate-100:#f1f5f9;
  --slate-200:#e2e8f0;
  --slate-300:#cbd5e1;
  --slate-400:#94a3b8;
  --slate-500:#64748b;
  --slate-600:#475569;
  --slate-700:#334155;
  --slate-800:#1e293b;
  --slate-900:#0f172a;
  --white:    #ffffff;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.20);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 9999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xs);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon { width: 34px; height: 34px; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--indigo); letter-spacing: -.5px; }

.header-nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 6px 14px; border-radius: var(--r-full);
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--slate-600); transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--blue-50); color: var(--indigo); }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--slate-700); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--slate-200); padding: 8px 20px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 12px 0; font-size: 15px; font-weight: 500;
  color: var(--slate-700); text-decoration: none;
  border-bottom: 1px solid var(--slate-100);
}
.mobile-nav-link:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1a56db 0%, #1140b0 55%, #0e327a 100%);
  padding: 56px 0 64px;
  color: white;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .2;
}
.hero-blob-1 {
  width: 600px; height: 600px; top: -200px; right: -150px;
  background: radial-gradient(circle, #60a5fa, transparent);
}
.hero-blob-2 {
  width: 500px; height: 500px; bottom: -200px; left: -100px;
  background: radial-gradient(circle, #818cf8, transparent);
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.95); font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: var(--r-full);
  backdrop-filter: blur(8px); margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 14px;
}
.hero-accent { color: #93c5fd; }
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 36px;
  max-width: 520px;
}

/* ===== Big Search Box ===== */
.search-box {
  width: 100%; max-width: 720px;
  background: white; border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin-bottom: 32px;
}

/* Country tabs */
.country-tabs {
  display: flex; background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}
.ctab {
  flex: 1; padding: 13px 16px;
  background: transparent; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--slate-500);
  font-family: var(--font); display: flex; align-items: center;
  justify-content: center; gap: 8px;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.ctab.active {
  background: white; color: var(--indigo); font-weight: 600;
  border-bottom-color: var(--indigo);
}
.ctab:hover:not(.active) { color: var(--slate-700); background: var(--slate-50); }

/* Search type row */
.search-type-row {
  display: flex; gap: 4px;
  padding: 12px 16px 8px;
  border-bottom: 1px solid var(--slate-100);
}
.stype {
  padding: 6px 14px; border-radius: var(--r-full);
  background: transparent; border: 2px solid transparent;
  font-size: 13px; font-weight: 500; color: var(--slate-500);
  cursor: pointer; font-family: var(--font);
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.stype.active {
  background: var(--blue-50); color: var(--indigo);
  border-color: var(--blue-100); font-weight: 600;
}
.stype:hover:not(.active) { background: var(--slate-100); color: var(--slate-700); }

/* Search row (input + button) */
.search-row {
  display: flex; gap: 10px; align-items: center;
  padding: 16px;
}

.search-field { flex: 1; min-width: 0; }
.search-field.hidden { display: none; }

.search-input-wrap {
  position: relative; display: flex; align-items: center;
}
.field-icon {
  position: absolute; left: 13px; width: 18px; height: 18px;
  color: var(--slate-400); pointer-events: none; flex-shrink: 0;
}
.search-input {
  width: 100%; padding: 13px 40px 13px 42px;
  border: 2px solid var(--slate-200); border-radius: var(--r-md);
  font-size: 15px; font-family: var(--font);
  color: var(--slate-800); background: white; outline: none;
  -webkit-appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.search-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.search-input::placeholder { color: var(--slate-400); }

.input-clear-btn {
  position: absolute; right: 10px;
  background: none; border: none; cursor: pointer;
  color: var(--slate-400); font-size: 14px; padding: 4px;
  border-radius: var(--r-full); line-height: 1;
  transition: color .15s, background .15s;
}
.input-clear-btn:hover { color: var(--slate-700); background: var(--slate-100); }

/* City field */
.city-inputs { display: flex; gap: 10px; }
.city-wrap { flex: 1; }
.state-select {
  padding: 13px 36px 13px 14px;
  border: 2px solid var(--slate-200); border-radius: var(--r-md);
  font-size: 14px; font-family: var(--font);
  color: var(--slate-700); background: white; cursor: pointer;
  outline: none; min-width: 140px;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .15s;
}
.state-select:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }

/* Search submit button */
.search-submit-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 24px; flex-shrink: 0;
  background: var(--indigo); color: white;
  border: none; border-radius: var(--r-md);
  font-size: 15px; font-weight: 700; font-family: var(--font);
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(26,86,219,.4);
  transition: background .15s, box-shadow .15s, transform .1s;
}
.search-submit-btn:hover { background: var(--indigo-dk); box-shadow: 0 4px 18px rgba(26,86,219,.45); }
.search-submit-btn:active { transform: scale(.98); }
.search-submit-btn:disabled { background: var(--slate-300); box-shadow: none; cursor: not-allowed; }

/* Hero stats row */
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  color: rgba(255,255,255,.85);
}
.hstat { text-align: center; }
.hstat-num { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; color: white; }
.hstat-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .5px; }
.hstat-div { width: 1px; height: 32px; background: rgba(255,255,255,.25); }

/* ============================================================
   RESULTS
   ============================================================ */
.results-section { padding: 40px 0 64px; }

.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.results-info { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.results-title { font-size: 1.35rem; font-weight: 700; color: var(--slate-800); }
.results-meta { font-size: 13px; color: var(--slate-500); }

.new-search-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r-full);
  border: 2px solid var(--slate-200); background: white;
  font-size: 13px; font-weight: 500; color: var(--slate-600);
  cursor: pointer; font-family: var(--font);
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.new-search-btn:hover { border-color: var(--indigo); color: var(--indigo); }

/* Skeleton */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.sk-card {
  background: white; border-radius: var(--r-md);
  border: 1px solid var(--slate-200); padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.sk {
  background: linear-gradient(90deg, var(--slate-100) 0%, var(--slate-200) 50%, var(--slate-100) 100%);
  background-size: 200% 100%;
  border-radius: var(--r-sm);
  animation: shimmer 1.4s ease-in-out infinite;
}
.sk-avatar { width: 48px; height: 48px; border-radius: 50%; }
.sk-line { height: 13px; }
.sk-w80 { width: 80%; } .sk-w75 { width: 75%; }
.sk-w70 { width: 70%; } .sk-w65 { width: 65%; }
.sk-w55 { width: 55%; } .sk-w45 { width: 45%; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Error box */
.error-box {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--red-50); border: 1px solid var(--red-400);
  border-radius: var(--r-md); padding: 14px 18px;
  color: var(--red-600); font-size: 14px; margin-bottom: 20px;
}
.error-box svg { flex-shrink: 0; margin-top: 2px; }

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* ===== Provider Card ===== */
.chiro-card {
  background: white; border-radius: var(--r-md);
  border: 1px solid var(--slate-200); padding: 20px;
  box-shadow: var(--shadow-xs); cursor: pointer;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .18s, border-color .2s;
  animation: fadeUp .3s ease both;
  outline: none;
}
.chiro-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--slate-300); }
.chiro-card:focus-visible { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(26,86,219,.2); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.card-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: white;
}
.card-title { flex: 1; min-width: 0; }
.card-name {
  font-size: 15px; font-weight: 600; color: var(--slate-900);
  line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-cred {
  display: inline-block; margin-top: 4px;
  font-size: 11px; font-weight: 600; color: var(--indigo);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 2px 8px; border-radius: var(--r-full);
}

.card-divider { height: 1px; background: var(--slate-100); margin: 0 -20px 14px; }

.card-info { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-info-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--slate-600); line-height: 1.4;
}
.card-info-row svg { flex-shrink: 0; margin-top: 2px; color: var(--slate-400); }

.card-phone-link {
  font-weight: 600; color: var(--green-600); text-decoration: none;
  transition: color .15s;
}
.card-phone-link:hover { color: var(--green-500); text-decoration: underline; }

.card-actions { display: flex; gap: 8px; margin-top: 16px; }
.card-btn {
  flex: 1; padding: 9px 10px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
  text-align: center; text-decoration: none; border: none;
  font-family: var(--font); display: flex; align-items: center;
  justify-content: center; gap: 5px;
  transition: background .15s, box-shadow .15s;
}
.card-btn-call { background: var(--green-600); color: white; box-shadow: 0 1px 4px rgba(5,150,105,.3); }
.card-btn-call:hover { background: var(--green-500); }
.card-btn-directions { background: var(--blue-50); color: var(--indigo); border: 1px solid var(--blue-100); }
.card-btn-directions:hover { background: var(--blue-100); }
.card-btn-details { background: var(--slate-100); color: var(--slate-700); border: 1px solid var(--slate-200); }
.card-btn-details:hover { background: var(--slate-200); }

.card-country-chip {
  font-size: 11px; font-weight: 500; padding: 3px 8px;
  border-radius: var(--r-full); display: inline-flex; align-items: center; gap: 4px;
  align-self: flex-start;
}
.chip-usa  { background: var(--blue-50);  color: var(--blue-700); }
.chip-ca   { background: #fff1f2; color: #be123c; }

/* No results */
.no-results {
  grid-column: 1 / -1; text-align: center;
  padding: 60px 20px; color: var(--slate-500);
}
.no-results-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--slate-100); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
  color: var(--slate-400);
}
.no-results h3 { font-size: 18px; color: var(--slate-700); margin-bottom: 8px; }
.no-results p { font-size: 14px; max-width: 300px; margin: 0 auto; }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 40px; flex-wrap: wrap;
}
.page-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--r-sm);
  border: 2px solid var(--slate-200); background: white;
  font-size: 14px; font-weight: 500; font-family: var(--font);
  color: var(--slate-700); cursor: pointer;
  transition: border-color .15s, color .15s;
}
.page-btn:hover:not(:disabled) { border-color: var(--indigo); color: var(--indigo); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }
.page-indicator { font-size: 14px; color: var(--slate-500); min-width: 80px; text-align: center; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  animation: overlayIn .2s ease;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: white; width: 100%; max-width: 560px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 28px 24px 40px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: slideUp .28s cubic-bezier(.32,.72,0,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.modal-box::before {
  content: ''; display: block;
  width: 40px; height: 4px; border-radius: 2px;
  background: var(--slate-300);
  margin: -8px auto 20px;
}

@media (min-width: 640px) {
  .modal-overlay { align-items: center; padding: 20px; }
  .modal-box {
    border-radius: var(--r-xl); max-height: 85vh;
    animation: scaleIn .22s cubic-bezier(.32,.72,0,1);
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(.96) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
}

.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: var(--slate-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500); transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--slate-200); color: var(--slate-800); }

.modal-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: white; margin-bottom: 14px;
}
.modal-name {
  font-size: 1.3rem; font-weight: 700; color: var(--slate-900);
  margin-bottom: 6px; padding-right: 40px; line-height: 1.3;
}
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.modal-tag {
  font-size: 12px; font-weight: 500; padding: 3px 10px;
  border-radius: var(--r-full);
}
.modal-tag-specialty { background: var(--blue-50); color: var(--blue-700); }
.modal-tag-country   { background: var(--slate-100); color: var(--slate-600); }

.modal-divider { height: 1px; background: var(--slate-100); margin: 16px 0; }
.modal-section-label {
  font-size: 11px; font-weight: 700; color: var(--slate-400);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px;
}
.modal-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--slate-700); padding: 8px 0;
  border-bottom: 1px solid var(--slate-50);
}
.modal-row:last-of-type { border-bottom: none; }
.modal-row-icon { flex-shrink: 0; color: var(--slate-400); margin-top: 2px; }
.modal-link { color: var(--indigo); text-decoration: none; font-weight: 500; }
.modal-link:hover { text-decoration: underline; }

.modal-actions { display: flex; gap: 10px; margin-top: 24px; }
.modal-btn {
  flex: 1; padding: 13px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; font-family: var(--font);
  cursor: pointer; border: none; text-align: center; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .15s;
}
.modal-btn-call { background: var(--green-600); color: white; box-shadow: 0 2px 8px rgba(5,150,105,.3); }
.modal-btn-call:hover { background: var(--green-500); }
.modal-btn-map { background: var(--blue-50); color: var(--indigo); border: 2px solid var(--blue-100); }
.modal-btn-map:hover { background: var(--blue-100); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: white; border-top: 1px solid var(--slate-200);
  padding: 72px 0;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--slate-900); margin-bottom: 10px; }
.section-sub { font-size: 16px; color: var(--slate-500); max-width: 480px; margin: 0 auto; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.step-card {
  position: relative; padding: 28px;
  background: var(--slate-50); border-radius: var(--r-lg);
  border: 1px solid var(--slate-200); text-align: center;
}
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--indigo); color: white;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  width: 60px; height: 60px; border-radius: var(--r-md);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--indigo);
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--slate-800); }
.step-card p  { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.coverage-section { padding: 72px 0; background: var(--slate-50); }

.sources-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 40px;
}
.source-card {
  background: white; border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; gap: 12px;
}
.source-flag { font-size: 32px; }
.source-body h3 { font-size: 15px; font-weight: 700; color: var(--slate-800); margin-bottom: 6px; }
.source-body p  { font-size: 13px; color: var(--slate-500); line-height: 1.65; margin-bottom: 12px; }
.source-tag {
  display: inline-flex;
  background: var(--blue-50); color: var(--indigo);
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: var(--r-full); border: 1px solid var(--blue-100);
}

.state-coverage {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--r-lg); padding: 24px;
}
.state-coverage h3 {
  font-size: 15px; font-weight: 700; color: var(--slate-800);
  margin-bottom: 10px;
}
.state-coverage p {
  font-size: 13px; color: var(--slate-500); line-height: 1.75;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: white; border-top: 1px solid var(--slate-200);
  padding: 72px 0;
}

.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}

.faq-item {
  border: 1px solid var(--slate-200); border-radius: var(--r-md);
  overflow: hidden; background: var(--slate-50);
}
.faq-item[open] { background: white; border-color: var(--blue-100); }

.faq-q {
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--slate-800);
  transition: color .15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 300; flex-shrink: 0;
  color: var(--slate-400); transition: transform .2s, color .2s;
  line-height: 1;
}
.faq-item[open] .faq-q { color: var(--indigo); }
.faq-item[open] .faq-q::after { content: '−'; color: var(--indigo); }
.faq-q:hover { color: var(--indigo); }

.faq-a {
  padding: 0 20px 18px;
  font-size: 14px; color: var(--slate-600); line-height: 1.75;
}
.faq-a strong { color: var(--slate-800); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--slate-900); color: rgba(255,255,255,.6);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 280px; }
.footer-logo-text { font-size: 20px; font-weight: 800; color: white; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none;
  transition: color .15s;
}
.footer-link:hover { color: white; }
.footer-bottom { padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.4); text-align: center; }
.footer-domain { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-domain:hover { color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .search-row { flex-direction: column; gap: 12px; }
  .search-submit-btn { width: 100%; justify-content: center; }
  .city-inputs { flex-direction: column; }
  .state-select { min-width: unset; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sources-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 40px 0 52px; }
  .hero-title { font-size: 2rem; }
  .search-type-row { gap: 2px; }
  .stype { font-size: 12px; padding: 6px 10px; }
  .results-section { padding: 24px 0 48px; }
  .results-grid { grid-template-columns: 1fr; }
  .card-actions { gap: 6px; }
  .modal-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 420px) {
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hstat-div { display: none; }
  .stype { font-size: 11px; padding: 6px 8px; }
}
