@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800&display=swap');

:root {
    --primary: #0F3D63;
    --primary-dark: #082A45;
    --accent: #2A7DE1;
    --secondary: #2A7DE1;
    --action: #F26419;
    --action-dark: #D94F0B;
    --success: #2FA36B;
    --ink: #17222E;
    --muted: #55677A;
    --line: #DCE6F1;
    --bg: #F5F8FC;
    --white: #FFFFFF;
    --soft: #EAF2FB;
    --success-soft: #E9F8F0;
    --warning: #ffb703;
    --danger: #d62828;
    --shadow: 0 22px 70px rgba(15, 61, 99, .12);
    --shadow-soft: 0 16px 42px rgba(15, 61, 99, .08);
    --radius: 16px;
    --radius-lg: 28px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; height: auto; display: block; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 54px);
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}
.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.brand-mark, .footer-brand svg {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 12px 28px rgba(15,61,99,.22);
}
.brand svg, .header-cta svg, .stat svg, .icon-card svg, .footer-brand svg { width: 20px; height: 20px; }
.main-nav { display: none; align-items: center; gap: 22px; color: var(--muted); font-weight: 800; font-size: 14px; }
.main-nav a:hover { color: var(--accent); }
.header-cta, .btn-primary, .btn-secondary, .btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    transition: .22s ease;
}
.header-cta, .btn-primary {
    background: var(--action);
    color: white;
    box-shadow: 0 14px 28px rgba(242,100,25,.24);
}
.header-cta:hover, .btn-primary:hover { background: var(--action-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--primary); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.16); color: white; border: 1px solid rgba(255,255,255,.24); }
.btn-light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }

.container, .hero, .section, .cta-band, .breadcrumb, .listing-header, .city-hero, .contact-hero, .service-hero, .notfound {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}
.hero {
    display: grid;
    gap: 32px;
    padding: 58px 0 42px;
}
.hero-content { max-width: 760px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}
.eyebrow svg { width: 16px; height: 16px; }
h1, h2, h3 { margin: 0; font-family: 'Montserrat', sans-serif; letter-spacing: -0.055em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(42px, 7vw, 76px); max-width: 920px; }
h2 { font-size: clamp(30px, 4.4vw, 48px); }
h3 { font-size: 21px; }
p { margin: 0; color: var(--muted); }
.lead { margin-top: 20px; font-size: clamp(18px, 2vw, 22px); max-width: 760px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--line);
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 10px 24px rgba(15,61,99,.06);
}
.trust-row svg { width: 16px; height: 16px; color: var(--success); }
.hero-visual {
    position: relative;
    min-height: 420px;
}
.rounded-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.hero-visual::before, .visual-media::before {
    content: '';
    position: absolute;
    inset: 18px -10px -10px 18px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(42,125,225,.18), rgba(242,100,25,.14));
    z-index: -1;
}
.floating-card {
    position: absolute;
    display: grid;
    gap: 2px;
    min-width: 180px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}
.floating-card svg { width: 22px; height: 22px; color: var(--action); }
.floating-card strong { color: var(--ink); font-weight: 900; }
.floating-card span { color: var(--muted); font-size: 13px; font-weight: 700; }
.floating-card.top { top: 18px; left: -8px; }
.floating-card.bottom { right: -8px; bottom: 22px; }

.stats-grid, .cards-grid, .steps-grid, .city-grid, .faq-grid, .signals-grid, .services-grid, .silo-links {
    display: grid;
    gap: 18px;
}
.stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 26px; }
.stat, .icon-card, .step, .city-card, .faq-item, .signal-card, .quote-card, .search-box, .price-result, .tally-embed, .service-card, .service-summary-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.stat { padding: 18px; }
.stat svg, .icon-card svg, .step-number { color: var(--accent); }
.stat strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 28px; letter-spacing: -0.05em; }
.stat span { color: var(--muted); font-weight: 700; }

.section { padding: 56px 0; }
.section-head { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin-bottom: 28px; }
.section-head.center { text-align: center; margin-inline: auto; align-items: center; }
.cards-grid { grid-template-columns: 1fr; }
.icon-card { padding: 24px; position: relative; overflow: hidden; }
.icon-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -50px;
    top: -50px;
    background: var(--soft);
    border-radius: 50%;
}
.icon-card svg { width: 30px; height: 30px; margin-bottom: 18px; }
.icon-card h3, .step h3 { margin-bottom: 10px; }

.visual-split {
    display: grid;
    gap: 28px;
    align-items: center;
}
.visual-media { position: relative; min-height: 340px; }
.visual-copy { display: grid; gap: 16px; }
.visual-copy .hero-actions { margin-top: 8px; }

.services-grid { grid-template-columns: 1fr; }
.service-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    transition: .22s ease;
}
.service-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(42,125,225,.10);
}
.service-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.service-card h3, .service-card p, .service-card a, .service-icon { position: relative; z-index: 1; }
.service-card h3 { margin-bottom: 10px; }
.service-card-with-image { padding: 0; }
.service-card-with-image::after { display: none; }
.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}
.service-card-body { padding: 22px; }
.service-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--soft);
    color: var(--primary);
}
.service-icon.large { width: 62px; height: 62px; border-radius: 18px; background: var(--primary); color: white; }
.service-icon svg { width: 24px; height: 24px; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 900;
}
.text-link span { transition: .22s ease; }
.text-link:hover span { transform: translateX(4px); }
.service-hero {
    display: grid;
    gap: 24px;
    align-items: center;
    padding: 50px 0 28px;
}
.service-visual { min-height: 390px; }
.service-summary-card {
    padding: 28px;
    background: radial-gradient(circle at top right, rgba(42,125,225,.18), transparent 34%), linear-gradient(145deg, #ffffff, #f2f7fc);
}
.service-summary-card strong { display: block; margin-bottom: 8px; font-family: 'Montserrat', sans-serif; font-size: clamp(34px, 5vw, 54px); letter-spacing: -0.06em; }
.service-summary-card span { display: block; color: var(--primary); font-weight: 900; margin-bottom: 12px; }
.silo-links { grid-template-columns: 1fr; }
.silo-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--line);
    color: var(--primary);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 61, 99, .06);
    transition: .22s ease;
}
.silo-links a:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.silo-links svg { width: 20px; height: 20px; }
.silo-links.mini { margin-top: 22px; }

.split {
    display: grid;
    gap: 24px;
    align-items: start;
}
.method-panel {
    padding: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}
.method-panel h2 { color: white; }
.method-panel p { color: rgba(255,255,255,.78); margin-top: 12px; }
.check-list { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.88); }
.check-list i { color: #7AE0A8; font-style: normal; font-weight: 900; }
.light-list li { color: var(--muted); }
.light-list i { color: var(--success); }
.steps-grid { grid-template-columns: 1fr; }
.step { padding: 22px; }
.step-number {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--soft);
    font-weight: 900;
}

.cta-band {
    margin-block: 44px;
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(242,100,25,.34), transparent 30%), linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow);
}
.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 14px; max-width: 720px; }
.cta-band .hero-actions { margin-top: 24px; }

.search-form, .mini-estimator {
    display: grid;
    gap: 12px;
}
.search-form { grid-template-columns: 1fr; margin-top: 24px; max-width: 720px; }
.input, .select {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    padding: 0 16px;
    color: var(--ink);
    outline: none;
}
.input:focus, .select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(42,125,225,.12); }
.city-grid { grid-template-columns: 1fr; }
.city-card { padding: 18px; display: flex; flex-direction: column; gap: 10px; transition: .22s ease; }
.city-card strong { font-size: 18px; }
.city-card span { color: var(--muted); font-size: 14px; }
.city-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: var(--success-soft); color: var(--success); font-size: 12px; font-weight: 800; }

.faq-grid { grid-template-columns: 1fr; }
.faq-item { padding: 22px; }
.faq-item h3 { margin-bottom: 8px; }

.listing-header { padding: 50px 0 24px; }
.search-box { padding: 20px; margin: 24px 0; }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.pagination a, .pagination span {
    min-width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: white;
    border: 1px solid var(--line);
    font-weight: 800;
}
.pagination .active { background: var(--primary); color: white; border-color: var(--primary); }

.breadcrumb { padding-top: 28px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--accent); font-weight: 800; }
.city-hero {
    display: grid;
    gap: 24px;
    align-items: start;
    padding: 36px 0 24px;
}
.city-hero-content { max-width: 760px; }
.local-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.local-meta span { padding: 8px 12px; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--muted); font-weight: 800; }
.city-hero-image { margin-top: 24px; max-height: 280px; overflow: hidden; border-radius: var(--radius-lg); }
.city-hero-image .rounded-img { min-height: 260px; }
.signals-grid { grid-template-columns: 1fr; }
.signal-card { padding: 20px; }
.signal-card strong { display: block; margin-bottom: 8px; }
.quote-card { padding: 24px; }
.quote-card ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }
.mini-estimator { margin-top: 18px; }
.price-result { padding: 18px; margin-top: 16px; background: #f8fdff; }
.price-result strong { color: var(--primary); font-size: 26px; }

.contact-hero {
    display: grid;
    gap: 28px;
    align-items: start;
    padding: 48px 0 28px;
}
.contact-copy { max-width: 720px; }
.contact-image { margin-top: 24px; max-height: 360px; overflow: hidden; border-radius: var(--radius-lg); }
.tally-embed {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background: linear-gradient(145deg, #ffffff, #f2f7fc);
}
.tally-embed::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(42,125,225,.14);
}
.tally-embed h2 { position: relative; z-index: 1; font-size: clamp(25px, 3vw, 34px); margin-bottom: 10px; }
.tally-embed p, .tally-embed .tally-embed-frame, .tally-embed-icon { position: relative; z-index: 1; }
.tally-embed-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: var(--action);
    color: white;
    box-shadow: 0 14px 28px rgba(242,100,25,.22);
}
.tally-embed-icon svg { width: 25px; height: 25px; }
.tally-embed-frame {
    margin: 18px 0 4px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.72);
}
.tally-embed-frame iframe { display: block; border: 0; }
.city-tally { position: relative; top: auto; }

.notfound { min-height: 64vh; display: grid; align-content: center; padding: 60px 0; }

.site-footer {
    margin-top: 56px;
    padding: 44px clamp(16px, 4vw, 54px) 24px;
    background: #081C2E;
    color: white;
}
.footer-grid {
    width: min(var(--container), 100%);
    margin-inline: auto;
    display: grid;
    gap: 26px;
}
.footer-grid h2 { color: white; font-size: 17px; margin-bottom: 12px; letter-spacing: 0; }
.footer-grid p { color: rgba(255,255,255,.65); margin-top: 12px; }
.footer-grid a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }
.footer-grid a:hover { color: #8BBDF7; }
.footer-bottom {
    width: min(var(--container), 100%);
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: rgba(255,255,255,.58);
    font-size: 14px;
}

.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

@media (min-width: 720px) {
    .main-nav { display: flex; }
    .hero { grid-template-columns: 1.12fr .88fr; align-items: center; padding-top: 78px; }
    .cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .silo-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .faq-grid, .signals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split { grid-template-columns: .8fr 1.2fr; }
    .visual-split { grid-template-columns: 1fr 1fr; }
    .search-form { grid-template-columns: 1fr auto; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
    .contact-hero { grid-template-columns: .95fr 1.05fr; padding-top: 72px; }
    .city-hero { grid-template-columns: 1fr .82fr; padding-top: 50px; }
    .service-hero { grid-template-columns: 1.08fr .92fr; padding-top: 72px; }
    .city-tally { position: sticky; top: 92px; }
}

@media (min-width: 1040px) {
    .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .services-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1.15fr .75fr .85fr 1.15fr; }
}

@media (max-width: 520px) {
    .header-cta { padding: 0 12px; font-size: 0; }
    .header-cta svg { margin: 0; }
    .brand span:last-child { font-size: 15px; }
    .stats-grid { grid-template-columns: 1fr; }
    .tally-embed-frame iframe { min-height: 220px; }
    .floating-card { position: static; margin-top: 12px; }
    .hero-visual { min-height: auto; }
}