:root {
    --bg: #0b1117;
    --bg-soft: #111b24;
    --panel: #152231;
    --ink: #e8eef4;
    --muted: #8fa3b8;
    --line: #243646;
    --brand: #10b981;
    --brand-dark: #059669;
    --brand-glow: rgba(16, 185, 129, 0.22);
    --accent: #f59e0b;
    --white: #ffffff;
    --error: #f87171;
    --success: #34d399;
    --shadow: rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #0b1117 0%, #0f1720 40%, #101820 100%);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(11, 17, 23, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand strong { display: block; font-size: 18px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.brand-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    color: #052e1a;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 24px var(--brand-glow);
}
.top-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.top-nav a {
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}
.top-nav a:hover { color: var(--ink); background: var(--panel); }
.top-nav .nav-cta {
    color: #052e1a;
    background: linear-gradient(135deg, var(--brand), #6ee7b7);
}

.hero, .location-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    padding: clamp(40px, 6vw, 72px) max(16px, calc((100vw - 1180px) / 2));
}
.hero-copy h1, .page-intro h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin: 0 0 16px;
}
.eyebrow {
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    border: none;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #052e1a; }
.btn-secondary { background: var(--panel); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.stats-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; color: var(--muted); }
.stats-row strong { color: var(--brand); font-size: 1.2rem; }

.hero-panel { position: relative; }
.hero-photo {
    display: block;
    width: 100%;
    border-radius: 18px;
    border: 2px solid var(--line);
    box-shadow: 0 24px 60px var(--shadow);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.floating-badge {
    position: absolute;
    left: 14px;
    top: 14px;
}
.cctv-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    font-size: 12px;
    font-weight: 800;
}
.rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse 1.4s infinite;
}
@keyframes pulse { 50% { opacity: 0.45; } }
.panel-card {
    position: absolute;
    right: -8px;
    bottom: -8px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px var(--shadow);
}
.panel-card strong { display: block; }
.panel-card small { color: var(--muted); }

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}
.section.muted { background: rgba(255,255,255,0.02); border-block: 1px solid var(--line); }
.section-head h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.service-grid, .process-grid, .location-grid, .blog-grid {
    display: grid;
    gap: 16px;
}
.service-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 24px; }
.service-grid article, .process-grid article, .blog-grid article {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}
.service-grid article h3,
.service-grid article p { padding: 0 20px; }
.service-grid article h3 { padding-top: 16px; margin: 0 0 8px; }
.service-grid article p { padding-bottom: 20px; margin: 0; color: var(--muted); }
.process-grid article,
.blog-grid article { padding: 20px; }
.service-photo {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.image-feature {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 20px 0 40px;
}
.image-feature img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--line);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-row span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    color: #a7f3d0;
    font-size: 13px;
    font-weight: 700;
}
.trust-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.trust-band div {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}
.trust-band strong { display: block; margin-bottom: 4px; color: var(--brand); }
.trust-band span { color: var(--muted); font-size: 14px; }
.process-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 24px; }
.process-grid b { color: var(--brand); font-size: 1.1rem; }
.location-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-top: 20px; }
.location-grid a {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    font-weight: 700;
}
.location-grid a:hover { border-color: var(--brand); color: var(--brand); }

.split-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: start;
}
.content-block h2, .content-block h3 { margin-top: 0; }
.inline-links { display: flex; flex-wrap: wrap; gap: 10px; }
.inline-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--line);
    font-size: 14px;
}

.request-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 20px 50px var(--shadow);
}
.wizard-head h2 { margin: 8px 0; }
.wizard-kicker { color: var(--brand); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.wizard-progress { display: flex; gap: 8px; margin: 16px 0; }
.wizard-progress span {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.wizard-progress span.is-active { background: rgba(16,185,129,0.15); color: var(--brand); }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.choice-grid { display: grid; gap: 10px; }
.choice-card {
    display: block;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    cursor: pointer;
}
.choice-card:has(input:checked) { border-color: var(--brand); background: rgba(16,185,129,0.08); }
.choice-card input { margin-right: 8px; }
.choice-card small { display: block; color: var(--muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; margin-bottom: 12px; font-weight: 700; font-size: 14px; }
input, textarea, select {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--ink);
    font: inherit;
}
.wizard-actions { display: flex; gap: 10px; margin-top: 8px; }
.form-message { min-height: 1.4em; font-size: 14px; }
.form-message.success { color: var(--success); }
.form-message.error { color: var(--error); }

.faq details {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 800; }

.site-footer {
    border-top: 1px solid var(--line);
    padding: 40px 16px 24px;
    margin-top: 40px;
}
.footer-grid {
    width: min(1180px, 100%);
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}
.footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; }
.footer-bottom {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.page-intro { padding-top: 48px; }
.blog-post .lead { color: var(--muted); font-size: 1.1rem; }
.read-more { color: var(--brand); font-weight: 800; }

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span[aria-current="page"] { color: var(--ink); font-weight: 700; }

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 320px);
    gap: 24px;
    align-items: start;
}
.quick-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    display: grid;
    gap: 10px;
}
.quick-panel span { color: var(--muted); font-size: 14px; }

.signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.signal-grid article {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
}
.signal-grid b { color: var(--brand); font-size: 1.1rem; }

.service-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}
.service-list div {
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
}
.service-list p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.seo-article p {
    color: var(--muted);
    margin-bottom: 14px;
}
.seo-article p:first-of-type { color: var(--ink); font-size: 1.05rem; }

.term-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.term-grid span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.review-grid article {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
}
.review-stars { color: var(--accent); letter-spacing: 1px; margin-bottom: 10px; }
.review-grid span { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; font-weight: 700; }

.cta-band {
    text-align: center;
    background: linear-gradient(180deg, rgba(16,185,129,0.08), rgba(16,185,129,0.02));
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 20px;
    padding: 48px 24px;
}
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 20px; }

.section-lead { color: var(--muted); max-width: 720px; margin-top: 10px; }
.section-actions { margin-top: 24px; }

.district-search {
    display: block;
    max-width: 520px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 14px;
}
.district-search span { display: block; margin-bottom: 8px; color: var(--muted); }
.district-search input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--ink);
    font: inherit;
}

.district-browser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.district-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
}
.district-card[hidden] { display: none; }
.district-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.district-card-head h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
}
.district-card-head span {
    flex-shrink: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-soft);
}
.neighborhood-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.neighborhood-links a {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}
.neighborhood-links a:hover { border-color: var(--brand); color: var(--brand); }

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.blog-card-grid.compact { margin-top: 0; }
.blog-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
}
.blog-card h3 { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.35; }
.blog-card p { color: var(--muted); margin: 0 0 12px; }
.blog-inline-links { margin-top: 14px; }

.footer-links-wide {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

@media (max-width: 900px) {
    .hero, .location-hero, .split-section, .footer-grid, .image-feature, .intro-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .top-nav { display: none; }
}
