/* ═══════════════════════════════════════════════════════════════
   GETPROSPECTLIST - Clean, Authoritative B2B Directory Design
   No AI slop · Pure clarity · High-contrast typography · Solid UX
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/static/fonts/space-grotesk-var.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/static/fonts/ibm-plex-sans-var.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/static/fonts/ibm-plex-mono-400.woff2') format('woff2');
}

:root {
  /* Surfaces */
  --bg: #f8fafc;
  --bg-subtle: #f1f5f9;
  --card: #ffffff;
  --header-bg: #ffffff;

  /* Brand / Action (Solid Authority Emerald) */
  --signal: #047857;
  --signal-deep: #065f46;
  --signal-soft: #f0fdf4;
  --signal-border: #bbf7d0;

  /* Categories & Tags */
  --cat-bg: #f8fafc;
  --cat-text: #1e293b;
  --cat-border: #cbd5e1;

  /* Typography & Neutrals */
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --dark-surface: #0f172a;
  --dark-border: #1e293b;

  /* Borders */
  --card-border: #e2e8f0;
  --card-border-hover: #cbd5e1;
  --rule-light: #f1f5f9;

  /* Elevation (Natural & Restrained) */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;

  /* Fonts */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-data: 'IBM Plex Mono', ui-monospace, monospace;
}

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

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

body > .site-header { flex-shrink: 0; }
body > .site-footer { margin-top: auto; }

a {
  color: var(--signal);
  text-decoration: none;
}
a:hover {
  color: var(--signal-deep);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}

/* ── Header ── */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.03);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-badge {
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 5px rgba(4, 120, 87, 0.25);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.logo-text em {
  font-style: normal;
  color: var(--signal);
}

/* Header Search */
.search-bar {
  display: flex;
  flex: 1;
  min-width: 280px;
  max-width: 540px;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.search-bar:focus-within {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-what { flex: 1.4; }
.search-where {
  flex: 1;
  border-left: 1px solid var(--card-border);
}

.search-field input {
  width: 100%;
  border: none;
  padding: 9px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  background: transparent;
  color: var(--ink);
}
.search-field input::placeholder {
  color: var(--ink-muted);
}

.btn-find {
  background: var(--signal);
  color: #ffffff;
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.15s ease;
}
.btn-find:hover {
  background: var(--signal-deep);
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-data-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}
.nav-data-link:hover {
  color: var(--ink);
  background: var(--bg-subtle);
  text-decoration: none;
}
.nav-data-link.btn-cta {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 7px 16px;
}
.nav-data-link.btn-cta:hover {
  background: #1e293b;
  color: #ffffff;
}

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .search-bar { order: 3; min-width: 100%; max-width: 100%; }
}

/* Autocomplete Suggest */
.suggest-box {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  z-index: 1100;
  box-shadow: var(--shadow-lg);
  max-height: 260px;
  overflow-y: auto;
  text-align: left;
}
.suggest-item {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}
.suggest-item + .suggest-item {
  border-top: 1px solid var(--rule-light);
}
.suggest-item:hover {
  background: var(--bg-subtle);
  color: var(--signal);
}

/* ── Clean Hero (Focused on Core Functionality) ── */
.hero-clean {
  background: radial-gradient(ellipse at 50% -10%, #ecfdf5 0%, #ffffff 68%);
  border-bottom: 1px solid var(--card-border);
  padding: 56px 20px 48px;
  position: relative;
}
.hero-clean-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--signal-deep);
  background: var(--signal-soft);
  border: 1px solid var(--signal-border);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 2px rgba(4, 120, 87, 0.06);
}

.hero-clean h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
  letter-spacing: -0.6px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (min-width: 901px) {
  .hero-clean h1 {
    white-space: nowrap;
  }
}

.hero-subtext {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 10px;
  margin-bottom: 14px;
}

/* Sample Company Card Preview */
.hero-record {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.07), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  position: relative;
}
.hero-record-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
}
.hero-record-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border-subtle, #f1f5f9);
}
.hero-record-row span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 500;
}
.hero-record-row strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-record-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 12px;
  background: var(--signal-soft);
  color: var(--signal-deep);
  border: 1px solid var(--signal-border);
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy {
    align-items: center;
  }
  .hero-eyebrow {
    align-self: center;
  }
  .hero-record {
    max-width: 360px;
    margin: 24px auto 0;
    width: 100%;
  }
}

/* Large Centered Search Bar */
.hero-search-bar {
  display: flex;
  background: #ffffff;
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.06);
  max-width: 720px;
  margin: 0 auto;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.hero-search-bar:focus-within {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.12), 0 8px 24px -4px rgba(15, 23, 42, 0.08);
}

.hero-field {
  display: flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
}
.hero-what { flex: 1.4; }
.hero-where {
  flex: 1;
  border-left: 1px solid var(--card-border);
}
.field-icon {
  color: var(--ink-muted);
  flex-shrink: 0;
  margin-right: 8px;
}
.hero-field input {
  width: 100%;
  padding: 15px 4px;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: transparent;
}
.hero-field input::placeholder {
  color: var(--ink-muted);
}

.hero-submit-btn {
  background: var(--signal);
  color: #ffffff;
  border: none;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  border-radius: 0 calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0;
}
.hero-submit-btn:hover {
  background: var(--signal-deep);
}

@media (max-width: 640px) {
  .hero-search-bar {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .hero-where {
    border-left: none;
    border-top: 1px solid var(--card-border);
  }
  .hero-submit-btn {
    padding: 13px;
    width: 100%;
    border-radius: 0 0 calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px);
  }
}

.hero-quick-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  text-align: center;
}
.hero-quick-categories,
.hero-quick-states {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-quick-links a {
  background: #ffffff;
  border: 1px solid var(--card-border);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-xs);
}
.hero-quick-links a:hover {
  background: #ffffff;
  color: var(--signal);
  border-color: var(--signal);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Live Authority Stats Bar */
.hero-stats-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding: 8px 20px;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-xs);
}
.hero-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-stat-item svg {
  color: var(--signal);
}
.hero-stat-item strong {
  color: var(--ink);
  font-weight: 700;
}
.hero-stat-dot {
  color: var(--card-border);
}

/* ── Main Layout ── */
.home-container, .page-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 16px 64px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb a:hover {
  color: var(--signal);
  text-decoration: none;
}
.breadcrumb .sep {
  color: var(--ink-muted);
}
.breadcrumb .current {
  color: var(--ink);
  font-weight: 600;
}

/* ── Data Strip (B2B Conversion Banner) ── */
.data-strip {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.12);
  position: relative;
}
.data-strip-text h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.data-strip-text p {
  color: #94a3b8;
  font-size: 14.5px;
  max-width: 620px;
  line-height: 1.5;
}
.data-strip-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.data-strip .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.data-strip .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.data-strip .btn-primary {
  background: var(--signal);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.35);
}
.data-strip .btn-primary:hover {
  background: var(--signal-deep);
}
@media (max-width: 860px) {
  .data-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .data-strip-actions {
    width: 100%;
    flex-direction: column;
  }
  .data-strip-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Buttons ── */
.btn {
  padding: 9px 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--signal);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--signal-deep);
  color: #ffffff;
  text-decoration: none;
}
.btn-outline {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--card-border);
}
.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--card-border-hover);
  color: var(--ink);
  text-decoration: none;
}
.btn-full { width: 100%; }
.btn-lg { padding: 12px 24px; font-size: 15px; }

/* ── Sections & Cards Grids ── */
.browse-section {
  margin-bottom: 48px;
}
.browse-section-header {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}
.browse-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.browse-section p.sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.cat-grid, .city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.cat-card, .city-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  transition: all 0.16s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xs);
}
.cat-card:hover, .city-card:hover {
  background: #ffffff;
  border-color: var(--signal);
  box-shadow: 0 4px 14px -2px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
  text-decoration: none;
}
.cat-name, .city-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.15s ease;
}
.cat-card:hover .cat-name, .city-card:hover .city-name {
  color: var(--signal);
}
.card-chevron {
  color: var(--ink-muted);
  font-size: 14px;
  transition: transform 0.15s ease, color 0.15s ease;
}
.cat-card:hover .card-chevron, .city-card:hover .card-chevron {
  color: var(--signal);
  transform: translateX(3px);
}

/* States Grid */
.state-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.state-card {
  width: 68px;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 10px 4px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xs);
}
.state-card:hover {
  border-color: var(--signal);
  color: var(--signal);
  background: var(--signal-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

/* ── Listing Cards (SERP / Category / City) ── */
.serp-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .serp-layout { grid-template-columns: 1fr; }
}

.serp-main { min-width: 0; }
.serp-header { margin-bottom: 20px; }
.serp-header h1 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
}
.serp-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.serp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.listing {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xs);
}
.listing:hover {
  border-color: var(--card-border-hover);
  border-left-color: var(--signal);
  box-shadow: 0 6px 18px -3px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.listing-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.listing-title-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.listing-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.listing-name a {
  color: var(--ink);
}
.listing-name a:hover {
  color: var(--signal);
  text-decoration: underline;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--signal-deep);
  background: var(--signal-soft);
  border: 1px solid var(--signal-border);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}

.listing-cat, .mip-category {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
  transition: all 0.15s ease;
}
.listing-cat:hover, .mip-category:hover {
  color: var(--ink);
  background: #e2e8f0;
  text-decoration: none;
}

.mip-geo-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}

.listing-link,
.listing-more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
  text-decoration: none;
}
.listing:hover .listing-link,
.listing:hover .listing-more {
  color: #ffffff;
  background: var(--signal);
  border-color: var(--signal);
  text-decoration: none;
}

.listing-address {
  font-size: 13.5px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.listing-address::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.listing-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.detail-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.detail-item svg {
  color: var(--ink-muted);
}
.phone-link {
  color: var(--ink-soft);
  font-family: var(--font-data);
}
.phone-link:hover {
  color: var(--signal);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.page-btn:hover {
  background: var(--bg-subtle);
  text-decoration: none;
}
.page-btn.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* ── Sidebar ── */
.serp-sidebar, .mip-sidebar {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.data-cta {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.data-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.data-cta p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}
.data-cta .btn + .btn {
  margin-top: 8px;
}

.filter-box, .sidebar-block {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.filter-box h3, .sidebar-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule-light);
}
.top-list, .related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top-list li, .related-list li {
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
}
.top-list li a, .related-list li a {
  font-weight: 600;
  color: var(--ink);
}
.top-list li a:hover, .related-list li a:hover {
  color: var(--signal);
  text-decoration: underline;
}
.top-list li small, .related-list li small {
  color: var(--ink-muted);
  font-size: 12px;
  margin-top: 1px;
}

/* ── Company Dossier (`company.html`) ── */
.mip-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .mip-layout { grid-template-columns: 1fr; }
}

.mip-main { min-width: 0; }

.mip-header {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.mip-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}
.mip-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.mip-quick-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  color: var(--ink);
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-chip:hover {
  background: #ffffff;
  border-color: var(--card-border-hover);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
}
.btn-chip-primary {
  background: var(--signal-soft);
  border-color: var(--signal-border);
  color: var(--signal-deep);
}
.btn-chip-primary:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: #ffffff;
}
.mip-tags-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Sections & Tables */
.info-section {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--rule-light);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table th {
  padding: 12px 14px 12px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: left;
  vertical-align: top;
  width: 150px;
}
.info-table td {
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--ink);
}
.link-small {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--signal);
}

/* Social Buttons */
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: var(--bg-subtle);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.social-btn:hover {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--card-border-hover);
}

/* Contact Gate */
.contact-gate {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-subtle);
  border: 1px dashed var(--card-border);
  padding: 20px;
}
.contact-gate-blur {
  filter: blur(5px);
  user-select: none;
  opacity: 0.5;
  pointer-events: none;
}
.contact-gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px;
  text-align: center;
}
.contact-gate-text {
  font-size: 13.5px;
  color: var(--ink);
  max-width: 300px;
}

/* ── State Page Header ── */
.state-header {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--signal);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.state-header-content {
  flex: 1;
  min-width: 280px;
}
.state-header-action {
  flex-shrink: 0;
}
.state-header h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.state-header p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 0;
}
.state-header-code { display: none; }

/* ── Forms ── */
.custom-layout { width: 100%; }
.custom-header { margin-bottom: 24px; }
.custom-header h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.custom-header p {
  font-size: 15px;
  color: var(--ink-soft);
}

.custom-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .custom-cards { grid-template-columns: 1fr; }
}
.custom-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.custom-card.highlight {
  border-color: var(--signal);
  background: var(--signal-soft);
}
.custom-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.custom-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--ink);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.hp-field { display: none !important; }

/* Alerts */
.alert-success {
  background: var(--signal-soft);
  color: var(--signal-deep);
  border: 1px solid var(--signal-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── Contact Page ── */
.contact-page-layout { width: 100%; }
.contact-header { margin-bottom: 24px; }
.contact-header h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--signal-soft);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 0;
  line-height: 1.45;
}
.contact-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--signal);
  text-decoration: none;
  margin-top: 6px;
}
.contact-link:hover {
  text-decoration: underline;
}

/* Accordions */
details.industry-group {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
details.industry-group summary {
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
details.industry-group summary:hover {
  background: var(--bg-subtle);
}
details.industry-group[open] summary {
  border-bottom: 1px solid var(--rule-light);
}
details.industry-group .cat-grid {
  padding: 16px;
}

/* Legal text */
.info-section.legal {
  width: 100%;
  margin: 0 0 40px;
  line-height: 1.65;
}
.info-section.legal .info-table th {
  width: auto;
}
.info-section.legal h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 24px 0 8px;
}
.info-section.legal p, .info-section.legal ul {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.info-section.legal ul { padding-left: 20px; }

/* ── Blog Article & Content ── */
.blog-article {
  width: 100%;
  margin: 0 0 40px;
  padding: 36px 40px;
  line-height: 1.75;
}
.blog-article .mip-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.6px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.blog-article .serp-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border-subtle, #f1f5f9);
  width: 100%;
}
.blog-body {
  font-size: 16px;
  color: #334155;
}
.blog-body p {
  margin-bottom: 20px;
  line-height: 1.75;
}
.blog-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin: 38px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border-subtle, #f1f5f9);
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 12px;
}
.blog-body hr {
  border: none;
  border-top: 1px solid var(--card-border-subtle, #f1f5f9);
  margin: 32px 0;
}
.blog-body ul, .blog-body ol {
  margin: 16px 0 24px 24px;
}
.blog-body li {
  margin-bottom: 10px;
  line-height: 1.65;
  color: #334155;
}
.blog-body li strong {
  color: var(--ink);
}
.blog-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 28px 0;
  font-size: 14px;
  box-shadow: var(--shadow-xs);
}
.blog-body th {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--card-border-subtle, #f1f5f9);
  color: #475569;
  vertical-align: middle;
}
.blog-body tr:last-child td {
  border-bottom: none;
}
.blog-body tr:hover td {
  background: #fbfcfd;
}
.blog-body code {
  background: #f1f5f9;
  color: var(--signal-deep);
  border: 1px solid #e2e8f0;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  font-family: Consolas, Monaco, 'Courier New', monospace;
  font-weight: 600;
}
.blog-body pre {
  background: #0f172a;
  color: #f8fafc;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 24px 0;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.12);
  border: 1px solid #1e293b;
}
.blog-body pre code {
  background: transparent;
  color: inherit;
  border: none;
  padding: 0;
  font-size: inherit;
  font-weight: 400;
}
.blog-body blockquote {
  background: var(--signal-soft);
  border-left: 4px solid var(--signal);
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  color: var(--signal-deep);
  font-size: 15px;
  line-height: 1.65;
}
.blog-body blockquote p {
  margin: 0;
  color: inherit;
}
.blog-body blockquote p + p {
  margin-top: 10px;
}
.blog-body blockquote strong {
  color: #064e3b;
}
.blog-body a {
  color: var(--signal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.15s ease;
}
.blog-body a:hover {
  color: var(--signal-deep);
  border-bottom-color: var(--signal);
}
@media (max-width: 640px) {
  .blog-article {
    padding: 24px 18px;
  }
  .blog-article .mip-title {
    font-size: 1.65rem;
  }
  .blog-body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ── Footer ── */
.site-footer {
  background: var(--dark-surface);
  color: #94a3b8;
  border-top: 1px solid var(--dark-border);
  padding: 48px 20px 32px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e293b;
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-logo-text em {
  font-style: normal;
  color: var(--signal);
}
.footer-brand p {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 300px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr; gap: 20px; }
}
.footer-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  color: #94a3b8;
}
.footer-col ul a:hover {
  color: #ffffff;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #64748b;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Cookie Notice */
.cookie-notice[hidden] { display: none; }
.cookie-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid var(--rule-light);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.16), 0 8px 16px -4px rgba(15, 23, 42, 0.08);
  z-index: 9999;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.22s ease-in, opacity 0.2s ease-in;
  animation: cookieNoticeSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.cookie-notice.cookie-closing {
  transform: translateY(16px);
  opacity: 0;
}
@keyframes cookieNoticeSlide {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-notice-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cookie-notice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--signal-soft);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--signal-border);
}
.cookie-notice-body {
  flex: 1;
  min-width: 0;
}
.cookie-notice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cookie-notice-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.cookie-notice-close {
  background: transparent;
  border: none;
  padding: 4px;
  margin: -4px -4px 0 0;
  cursor: pointer;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}
.cookie-notice-close:hover {
  color: var(--ink);
  background: var(--bg-subtle);
}
.cookie-notice-desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 14px 0;
  line-height: 1.5;
}
.cookie-notice-desc a {
  color: var(--signal);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-notice-desc a:hover {
  color: var(--signal-deep);
}
.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-cookie-ok {
  background: var(--signal);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.25);
  transition: background 0.15s, transform 0.1s;
}
.btn-cookie-ok:hover {
  background: var(--signal-deep);
}
.btn-cookie-ok:active {
  transform: scale(0.98);
}
.btn-cookie-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.btn-cookie-link:hover {
  color: var(--ink);
  text-decoration: underline;
}
@media (max-width: 520px) {
  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 16px;
  }
}
