/* Home Alarm Installation — ADT-style brand palette */
:root {
  --primary: #0a2a5e;
  --primary-dark: #06204a;
  --primary-light: #1a4488;
  --accent: #d32027;
  --accent-dark: #a4181d;
  --neutral-50: #f8f9fb;
  --neutral-100: #eef1f6;
  --neutral-200: #dfe4ec;
  --neutral-400: #9ba6b8;
  --neutral-600: #5c6878;
  --neutral-800: #2a3344;
  --neutral-900: #10141d;
  --success: #1f8a4c;
  --warning: #e0a020;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(10,42,94,.08);
  --shadow: 0 4px 16px rgba(10,42,94,.10);
  --shadow-lg: 0 16px 48px rgba(10,42,94,.14);
  --max-width: 1200px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  color: var(--neutral-900);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
a:hover { color: var(--accent); border-bottom-color: var(--accent); }

h1, h2, h3, h4 {
  color: var(--neutral-900);
  line-height: 1.2;
  margin-top: 1.5em;
  margin-bottom: .5em;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.6rem; border-bottom: 2px solid var(--neutral-100); padding-bottom: .35em; }
h3 { font-size: 1.2rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Top bar */
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: .9rem;
  padding: 8px 0;
}
.topbar a { color: #fff; }
.topbar-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar .phone { font-weight: 700; font-size: 1rem; }
.topbar .badge { background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: .8rem; font-weight: 600; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--primary);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 50;
}
.header-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.logo {
  font-weight: 800; font-size: 1.35rem;
  color: var(--primary);
  text-decoration: none; border: none;
  display: flex; align-items: center; gap: 8px;
}
.logo .logo-icon {
  display: inline-block; width: 32px; height: 32px;
  background: var(--primary); border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 16px;
}
.logo .logo-icon::after { content: "HS"; }
.logo .accent-dot { color: var(--accent); }

nav.main-nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
nav.main-nav a {
  color: var(--neutral-800);
  font-weight: 600; font-size: .95rem;
  border: none;
}
nav.main-nav a:hover { color: var(--accent); }

.cta-btn, .btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  font-weight: 700; font-size: .95rem;
  border-radius: var(--radius); border: none;
  cursor: pointer; text-decoration: none;
  transition: background .15s, transform .15s;
}
.cta-btn:hover, .btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); color: #fff !important; }

.btn-secondary {
  display: inline-block;
  background: #fff; color: var(--primary) !important;
  padding: 10px 20px; font-weight: 700; font-size: .95rem;
  border-radius: var(--radius); border: 2px solid var(--primary);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--primary); color: #fff !important; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; padding: 56px 0 64px;
}
.hero h1 { color: #fff; font-size: 2.5rem; margin-top: 0; }
.hero p.lede { font-size: 1.2rem; opacity: .95; max-width: 720px; }
.hero .badges { display: flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 24px; }
.hero .badges span { background: rgba(255,255,255,.12); padding: 4px 12px; border-radius: 99px; font-size: .85rem; }

/* Lead form */
.lead-form {
  background: #fff; color: var(--neutral-900);
  border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-lg);
  max-width: 460px; margin-top: 16px;
}
.lead-form h3 { margin-top: 0; color: var(--primary); }
.lead-form .form-row { margin-bottom: 12px; }
.lead-form label { display: block; font-size: .85rem; font-weight: 600; color: var(--neutral-800); margin-bottom: 4px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--neutral-200); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--primary);
}
.lead-form .form-cta { width: 100%; margin-top: 8px; padding: 14px; font-size: 1rem; }
.lead-form .privacy-note { font-size: .8rem; color: var(--neutral-600); margin-top: 8px; }

.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

/* Sections */
section.section { padding: 48px 0; }
section.alt { background: var(--neutral-50); }

.card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
}
.cards-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* AI-extraction-optimized answer block */
.answer-block {
  background: var(--neutral-50);
  border-left: 4px solid var(--accent);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.answer-block .q { font-weight: 700; color: var(--primary); font-size: 1.05rem; margin-bottom: 4px; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.price-table th, .price-table td {
  text-align: left; padding: 10px 12px;
  border-bottom: 1px solid var(--neutral-100);
}
.price-table th { background: var(--primary); color: #fff; font-weight: 600; }
.price-table tr:nth-child(even) td { background: var(--neutral-50); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--neutral-100); padding: 14px 0; }
.faq-item summary { font-weight: 700; color: var(--primary); cursor: pointer; padding: 6px 0; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+ "; color: var(--accent); font-weight: 900; }
.faq-item[open] summary::before { content: "− "; }
.faq-item p { margin: 8px 0 0; color: var(--neutral-800); }

/* Quick-link grid */
.link-grid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin: 16px 0;
}
.link-grid a {
  display: block; padding: 10px 14px;
  background: #fff; border: 1px solid var(--neutral-200);
  border-radius: var(--radius); font-size: .92rem;
  color: var(--neutral-800); border-bottom: 1px solid var(--neutral-200);
}
.link-grid a:hover { border-color: var(--primary); color: var(--primary); }

/* Breadcrumb */
.breadcrumb {
  font-size: .85rem; color: var(--neutral-600);
  padding: 12px 0;
}
.breadcrumb a { color: var(--neutral-600); border: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { padding: 0 6px; color: var(--neutral-400); }

/* Comparison table */
.compare {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin: 24px 0;
}
.compare .card { padding: 20px; }
.compare h3 { color: var(--primary); margin-top: 0; }
.compare ul { padding-left: 20px; }
.compare .pros li::marker { content: "✓ "; color: var(--success); }
.compare .cons li::marker { content: "⚠ "; color: var(--warning); }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* Footer */
footer.site-footer {
  background: var(--neutral-900); color: var(--neutral-200);
  padding: 48px 0 24px; margin-top: 64px;
}
footer.site-footer a { color: var(--neutral-200); border: none; }
footer.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-top: 0; margin-bottom: 12px; border: none; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; font-size: .9rem; }
.disclaimer {
  border-top: 1px solid var(--neutral-800);
  margin-top: 32px; padding-top: 16px;
  font-size: .8rem; color: var(--neutral-400);
}

/* Sticky bottom CTA on mobile */
@media (max-width: 720px) {
  .mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--accent); color: #fff;
    padding: 14px; text-align: center; font-weight: 700;
    z-index: 100; box-shadow: 0 -4px 12px rgba(0,0,0,.15);
  }
  .mobile-cta a { color: #fff; border: none; }
}
@media (min-width: 721px) { .mobile-cta { display: none; } }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.muted { color: var(--neutral-600); font-size: .9rem; }
.small { font-size: .85rem; }
.pill { display: inline-block; padding: 2px 10px; background: var(--neutral-100); color: var(--neutral-800); border-radius: 99px; font-size: .8rem; font-weight: 600; }
.pill.accent { background: var(--accent); color: #fff; }
.pill.success { background: var(--success); color: #fff; }

/* === PLAYBOOK ALIGNMENT (v2) === */

/* AI Summary Box — the most-cited element by AI search engines (Playbook Phase 6G) */
.ai-summary-box {
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9e6 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.ai-summary-box .ai-summary-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.ai-summary-box p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--neutral-900);
}

/* Last reviewed pill (Playbook Phase 6 Measure 5) */
.review-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf6ee;
  color: #1f5a35;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  margin: 16px 0;
  border: 1px solid #c5e4d0;
}
.review-date-pill a {
  color: #1f5a35;
  border-bottom: 1px dotted #1f5a35;
  text-decoration: none;
}

/* Byline block (Playbook Phase 6D) */
.byline-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--neutral-50);
  border-left: 3px solid var(--primary);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}
.byline-block .byline-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.byline-block .byline-author {
  font-weight: 700;
  color: var(--neutral-900);
}
.byline-block .byline-author a {
  color: var(--primary);
  border: none;
}
.byline-block .byline-cred {
  font-size: .82rem;
  color: var(--neutral-600);
  margin-top: 2px;
}

/* Speakable class — used by SpeakableSpecification schema (Playbook Phase 6 Measure 6) */
.speakable {
  /* No visual change — used only by voice search and AI assistants */
}

/* FAQ section needs class for SpeakableSpecification CSS selector */
.faq-section {
  /* container class to mark FAQ blocks for voice */
}

/* Dealer ghost slots (adapted from Playbook Phase 7 attorney rotation) */
.dealer-slots-section {
  background: linear-gradient(180deg, #fff 0%, var(--neutral-50) 100%);
  padding: 40px 0;
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--neutral-200);
}
.dealer-slots-heading {
  text-align: center;
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: var(--primary);
  border: none;
}
.dealer-slots-sub {
  text-align: center;
  color: var(--neutral-600);
  margin: 0 0 24px;
  font-size: .95rem;
}
.dealer-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) {
  .dealer-slots-grid { grid-template-columns: 1fr; }
}
.dealer-card {
  background: #fff;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.dealer-card.ghost {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border-style: dashed;
  border-color: var(--neutral-400);
  opacity: 0.92;
}
.dealer-card .dealer-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--neutral-100);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dealer-card .dealer-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 8px;
}
.dealer-card.ghost .dealer-badge {
  background: var(--neutral-400);
}
.dealer-card .dealer-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.dealer-card .dealer-cred {
  font-size: .8rem;
  color: var(--neutral-600);
  margin-bottom: 2px;
}
.dealer-card .dealer-loc {
  font-size: .8rem;
  color: var(--neutral-600);
  margin-bottom: 12px;
}
.dealer-card .dealer-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: none;
}
.dealer-card .dealer-cta:hover {
  background: var(--accent-dark);
}

/* Sponsor/pricing banner */
.founding-banner {
  background: linear-gradient(90deg, #fff7d6 0%, #ffe9b3 100%);
  border: 1.5px solid #f0c45a;
  border-radius: var(--radius);
  padding: 12px 18px;
  margin: 16px 0;
  font-size: .95rem;
  color: #6b4a00;
}
.founding-banner strong { color: #4a3500; }

/* Voice search ready badge */
.voice-ready-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,42,94,.06);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  margin: 4px 0;
}

/* === V2 VISUAL POLISH (icons, hero background, hover effects) === */

/* Hero with home + security background pattern */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 30%, rgba(255,255,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(211,32,39,0.10) 0%, transparent 55%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23ffffff' stroke-width='1.2'><path d='M40 130 L40 90 L80 60 L120 90 L120 130 Z'/><rect x='65' y='100' width='30' height='30'/><rect x='75' y='65' width='10' height='15'/><circle cx='150' cy='40' r='8'/><path d='M148 38 L150 42 L154 36' stroke-width='1.5'/><path d='M150 80 L150 70 M150 70 L145 75 M150 70 L155 75'/><rect x='140' y='115' width='25' height='35' rx='2'/><path d='M148 130 a4 4 0 0 1 8 0 v6 h-8 z' fill='%23ffffff' opacity='0.4'/></g></svg>");
  background-size: 280px 280px;
  background-repeat: repeat;
}
.hero > .container { position: relative; z-index: 1; }

/* Stronger card hover — "light up" effect with thin blue border */
.card {
  border: 1.5px solid var(--neutral-200);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
  box-shadow: 0 12px 32px rgba(10,42,94,.14), 0 0 0 1px rgba(26,68,136,.18);
}

/* Cards on dark sections — keep solid white but glow blue on hover */
section.alt .card {
  border: 1.5px solid var(--neutral-200);
}
section.alt .card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(10,42,94,.18);
}

/* Link grid items also light up */
.link-grid a {
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.link-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(10,42,94,.12);
}

/* Icon classes — blue security/home icons (24px default) */
.icon {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  vertical-align: -0.25em;
  margin-right: 6px;
  color: var(--primary);
  flex-shrink: 0;
}
.card .icon { width: 32px; height: 32px; margin: 0 0 10px; display: block; }
h3 .icon { width: 22px; height: 22px; margin-right: 8px; vertical-align: -0.2em; }

/* Card icon header — icon in colored circle */
.card .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(10,42,94,.20);
}
.card .icon-circle svg { width: 22px; height: 22px; color: #fff; }

/* Trust strip — small icons in row */
.trust-strip {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--neutral-100);
  border-bottom: 1px solid var(--neutral-100);
  margin: 24px 0;
}
.trust-strip .trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; color: var(--neutral-800);
  font-weight: 600;
}
.trust-strip .trust-item svg {
  width: 22px; height: 22px; color: var(--primary);
}

/* Section heading with icon */
h2 svg.section-icon {
  width: 28px; height: 28px; vertical-align: -0.4em;
  margin-right: 10px;
  color: var(--primary);
}

/* AI summary box — add a subtle icon */
.ai-summary-box::before {
  content: '';
  display: none; /* keep label, no extra icon needed for now */
}

/* Local insights callout — for per-page unique content */
.local-insights {
  background: linear-gradient(135deg, var(--neutral-50) 0%, #fff 100%);
  border: 1.5px solid var(--primary-light);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 28px 0;
}
.local-insights h3 {
  margin-top: 0; color: var(--primary);
  display: flex; align-items: center; gap: 10px;
  border: none;
}
.local-insights ul { padding-left: 24px; margin-bottom: 0; }
.local-insights li { margin: 8px 0; line-height: 1.55; }

/* Stats counter row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all .15s ease;
}
.stat-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(10,42,94,.10);
  transform: translateY(-2px);
}
.stat-card .stat-icon { width: 32px; height: 32px; color: var(--accent); margin-bottom: 8px; }
.stat-card .stat-value { font-size: 1.7rem; font-weight: 800; color: var(--primary); }
.stat-card .stat-label { font-size: .85rem; color: var(--neutral-600); margin-top: 2px; }

/* Print page nicer */
@media print {
  .hero::before, .mobile-cta, .topbar { display: none !important; }
  body { color: #000; }
}

/* === Hero background photo: home with security yard sign === */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,42,94,0.78) 0%, rgba(26,68,136,0.72) 100%),
    url('/static/img/las-vegas-home-security-yard-sign.svg') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(6,32,74,0.55) 75%, rgba(6,32,74,0.78) 100%);
  /* Sepia/faded photo treatment */
  filter: contrast(0.92) saturate(0.85);
}
.hero > .container { position: relative; z-index: 2; }

/* The previous pattern-overlay is no longer needed — yard-sign photo now does that job */
@media (max-width: 720px) {
  .hero { background-position: 60% center; }
}

/* === Hero v3: real home photo + HTML yard sign overlay === */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,42,94,0.82) 0%, rgba(26,68,136,0.66) 60%, rgba(6,32,74,0.78) 100%),
    url('/static/img/las-vegas-summerlin-home-monitored-security.jpg') center 40%/cover no-repeat;
  background-blend-mode: normal;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(6,32,74,0) 0%, rgba(6,32,74,0.45) 90%);
  filter: contrast(0.95) saturate(0.9);
}
.hero > .container { position: relative; z-index: 2; }

/* HTML-based yard sign — sits in bottom-right of hero on desktop */
.hero .yard-sign-overlay {
  position: absolute;
  left: 32px;
  bottom: -24px;
  width: 180px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(3deg);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
.hero .yard-sign-overlay .stake {
  width: 6px;
  height: 80px;
  background: linear-gradient(180deg, #4a4a4a, #2a2a2a);
  margin: 0 auto;
  border-radius: 2px 2px 0 0;
}
.hero .yard-sign-overlay .sign-card {
  background: #ffffff;
  border: 4px solid #0a2a5e;
  border-radius: 6px;
  padding: 12px 10px 10px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(10,42,94,0.1);
}
.hero .yard-sign-overlay .sign-shield {
  width: 28px;
  height: 32px;
  margin: 0 auto 4px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L20 5 V12 C20 17 16 21 12 22 C8 21 4 17 4 12 V5 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L20 5 V12 C20 17 16 21 12 22 C8 21 4 17 4 12 V5 Z' fill='black'/></svg>") center/contain no-repeat;
}
.hero .yard-sign-overlay .sign-tagline {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin: 0;
}
.hero .yard-sign-overlay .sign-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.05;
  margin: 2px 0 4px;
  letter-spacing: 0;
}
.hero .yard-sign-overlay .sign-detail {
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.4px;
  margin: 0;
  border-top: 1px solid #dfe4ec;
  padding-top: 4px;
}
@media (max-width: 880px) {
  .hero .yard-sign-overlay { display: none; }
}

/* ===== Local Facts data table (per-page verified-facts block) ===== */
.local-facts {
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 24px 28px 20px;
  margin: 16px 0 8px;
  background: var(--neutral-50);
  box-shadow: 0 1px 3px rgba(10, 42, 94, 0.08);
}
.local-facts h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.25rem;
  border-bottom: 2px solid var(--neutral-200);
  padding-bottom: 8px;
}
.local-facts-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.local-facts-table th,
.local-facts-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--neutral-200);
  vertical-align: top;
}
.local-facts-table th {
  width: 38%;
  color: var(--neutral-800);
  font-weight: 600;
  background: rgba(10, 42, 94, 0.03);
}
.local-facts-table td {
  color: var(--neutral-900);
}
.local-facts-table tbody tr:last-child th,
.local-facts-table tbody tr:last-child td {
  border-bottom: none;
}
.local-facts p.small {
  margin: 8px 0 0;
  line-height: 1.5;
  color: var(--neutral-600);
  font-size: 0.82rem;
}
@media (max-width: 640px) {
  .local-facts { padding: 18px 16px 14px; }
  .local-facts-table th { width: 45%; }
  .local-facts-table th, .local-facts-table td { padding: 8px 6px; font-size: 0.88rem; }
}
