
  /* === Base reset for preview only — not needed in your production css === */
  body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: #0d3b66;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  body :where(h1, h2, h3, h4) {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0d3b66;
    margin: 0;
    line-height: 1.15;
  }
  body :where(p) { margin: 0; color: #4b5b6b; }
  body :where(a) { text-decoration: none; }
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4.5vw, 28px);
  }
  /* Buttons (already in your style.css — included here for preview) */
  .btn {
    display: inline-block;
    background: var(--primary, #1e6bb8);
    color: #fff;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 6px 16px rgba(30, 107, 184, 0.25);
    font-size: 0.95rem;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(30, 107, 184, 0.35);
    filter: brightness(1.05);
  }
  .btn.ghost {
    background: transparent;
    color: var(--primary, #1e6bb8);
    border: 1px solid var(--primary, #1e6bb8);
    box-shadow: none;
  }
  .btn.ghost:hover { background: rgba(30, 107, 184, 0.06); }
 
 
  /* === START PRODUCTION CSS — paste from here === */
 
  .hero-v2 {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #f8faff 0%, #eef6fc 100%);
    border-bottom: 1px solid #e4ecf2;
  }
  .hero-v2::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30,107,184,0.06) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
  .hero-v2 > .container { position: relative; z-index: 1; }
 
  /* HEADLINE BLOCK */
  .hero-v2__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.75rem;
  }
  .hero-v2__eyebrow {
    display: inline-block;
    color: var(--primary, #1e6bb8);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .hero-v2__head h1 {
    font-size: clamp(1.95rem, 3.6vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1.1rem;
  }
  .hero-v2__head h1 .accent { color: var(--primary, #1e6bb8); }
  .hero-v2__head .lead {
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    line-height: 1.6;
    color: #4b5b6b;
    max-width: 640px;
    margin: 0 auto 1.85rem;
  }
 
  .hero-v2__cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
  }
 
  .hero-v2__meta {
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.92rem;
    color: #4b5b6b;
  }
  .hero-v2__meta strong { color: #0d3b66; font-weight: 800; }
  .hero-v2__meta .stars { color: #f2b01e; letter-spacing: 2px; font-size: 1.05rem; }
  .hero-v2__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #cfe2f5;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d3b66;
    box-shadow: 0 4px 10px rgba(13, 59, 102, 0.05);
  }
  .hero-v2__pill .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: hv2-pulse 2s infinite;
  }
  @keyframes hv2-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }
 
  /* COMPARISON GRID */
  .hero-v2__compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
    position: relative;
    max-width: 980px;
    margin: 0 auto 2.5rem;
  }
  .hero-v2__compare::before {
    content: 'VS';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #0d3b66;
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 24px rgba(13, 59, 102, 0.3);
    z-index: 5;
    font-family: 'Inter', sans-serif;
  }
 
  .hero-v2__card {
    background: #fff;
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 10px 28px rgba(13, 59, 102, 0.08);
    border: 1px solid #e4ecf2;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), box-shadow 0.4s;
  }
  .hero-v2__card.them {
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    filter: grayscale(0.35) opacity(0.92);
  }
  .hero-v2__card.us {
    border: 2px solid var(--primary, #1e6bb8);
    box-shadow: 0 22px 45px rgba(30, 107, 184, 0.18);
  }
  .hero-v2__card.us:hover { transform: translateY(-4px); }
 
  .hero-v2__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .hero-v2__card-lbl {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
  }
  .hero-v2__card.them .hero-v2__card-lbl { color: #94a3b8; }
  .hero-v2__card.us .hero-v2__card-lbl { color: var(--primary, #1e6bb8); }
  .hero-v2__card-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
  }
  .hero-v2__card.them .hero-v2__card-tag {
    background: #f1f5f9;
    color: #64748b;
  }
  .hero-v2__card.us .hero-v2__card-tag {
    background: #eaf4ff;
    color: var(--primary, #1e6bb8);
  }
 
  /* PDF mockup (their side) */
  .hero-v2__pdf {
    background: #fdfdf8;
    border: 1px solid #e7e5d8;
    border-radius: 6px;
    padding: 0.95rem 0.85rem;
    font-family: Georgia, serif;
    height: 250px;
    overflow: hidden;
    position: relative;
  }
  .hero-v2__pdf-header {
    border-bottom: 1px solid #d4d2c4;
    padding-bottom: 0.45rem;
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
    color: #6b6856;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .hero-v2__pdf-line {
    height: 4px;
    background: #d4d2c4;
    border-radius: 2px;
    margin: 5px 0;
  }
  .hero-v2__pdf-line.short { width: 55%; }
  .hero-v2__pdf-line.med { width: 78%; }
  .hero-v2__pdf-line.long { width: 100%; }
  .hero-v2__pdf-block {
    height: 36px;
    background: #ebe8d8;
    border-radius: 2px;
    margin: 0.65rem 0;
  }
  .hero-v2__pdf::after {
    content: 'Page 47 of 218';
    position: absolute;
    bottom: 0.5rem;
    right: 0.85rem;
    font-size: 0.65rem;
    color: #94918a;
    font-style: italic;
  }
 
  /* Live mockup (us side) */
  .hero-v2__live {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    border: 1px solid #e4ecf2;
  }
  .hero-v2__live-bar {
    background: linear-gradient(135deg, #0d3b66, #1e6bb8);
    color: #fff;
    padding: 0.55rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hero-v2__live-bar .live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    margin-right: 5px;
    animation: hv2-pulse 2s infinite;
  }
  .hero-v2__live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0.65rem;
    background: #f8fbff;
    border-bottom: 1px solid #e4ecf2;
  }
  .hero-v2__live-stat {
    background: #fff;
    border-radius: 6px;
    padding: 0.45rem;
    text-align: center;
    border: 1px solid #e4ecf2;
  }
  .hero-v2__live-stat .n {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d3b66;
    font-family: 'Playfair Display', serif;
    line-height: 1;
  }
  .hero-v2__live-stat .l {
    font-size: 0.6rem;
    color: #4b5b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    font-weight: 700;
  }
  .hero-v2__live-stat.safety .n { color: #dc2626; }
  .hero-v2__live-stat.major  .n { color: #d97706; }
  .hero-v2__live-stat.maint  .n { color: #16a34a; }
 
  .hero-v2__live-defect {
    padding: 0.55rem 0.8rem;
    border-bottom: 1px solid #e4ecf2;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .hero-v2__live-defect:last-child { border-bottom: 0; }
  .hero-v2__live-defect .img {
    width: 34px; height: 34px;
    border-radius: 5px;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .hero-v2__live-defect .img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.15) 75%);
    background-size: 8px 8px;
  }
  .hero-v2__live-defect .body { flex: 1; min-width: 0; }
  .hero-v2__live-defect .title {
    font-size: 0.79rem;
    font-weight: 700;
    color: #0d3b66;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-v2__live-defect .sub {
    font-size: 0.69rem;
    color: #4b5b6b;
    margin-top: 1px;
  }
  .hero-v2__live-defect .tag {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .hero-v2__live-defect .tag.safety { background: #fef2f2; color: #dc2626; }
  .hero-v2__live-defect .tag.major  { background: #fff7ed; color: #d97706; }
 
  /* CERTIFICATION BADGES BELOW COMPARISON */
  .hero-v2__creds {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .hero-v2__creds-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #4b5b6b;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  .hero-v2__creds-row {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .hero-v2__creds-row .cred-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 4px;
    box-shadow: 0 6px 14px rgba(13, 59, 102, 0.08);
    border: 1px solid #e4ecf2;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-v2__creds-row .cred-badge:hover { transform: translateY(-2px); }
  .hero-v2__creds-row .cred-badge img {
    width: 100%; height: 100%;
    object-fit: contain;
  }
 
  /* QUOTE SECTION (calculator moves here) */
  .quote-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #fff;
    border-bottom: 1px solid #e4ecf2;
  }
  .quote-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .quote-section__copy h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .quote-section__copy h2 .accent { color: var(--primary, #1e6bb8); }
  .quote-section__copy > p {
    font-size: 1.02rem;
    color: #4b5b6b;
    margin-bottom: 1.5rem;
    max-width: 480px;
  }
  .quote-section__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
  }
  .quote-section__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #0d3b66;
    font-weight: 600;
    font-size: 0.97rem;
  }
  .quote-section__benefits li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: #eaf4ff;
    color: var(--primary, #1e6bb8);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  /* RESPONSIVE */
  @media (max-width: 880px) {
    .hero-v2__compare {
      grid-template-columns: 1fr;
      gap: 2.75rem;
    }
    .hero-v2__compare::before {
      width: 44px; height: 44px;
      font-size: 0.85rem;
    }
    .hero-v2__meta { gap: 0.85rem; font-size: 0.88rem; }
    .quote-section__grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .hero-v2__creds { gap: 1rem; }
    .hero-v2__creds-row .cred-badge { width: 54px; height: 54px; }
  }
  @media (max-width: 480px) {
    .hero-v2__cta { gap: 0.5rem; }
    .hero-v2__cta .btn { flex: 1 1 auto; min-width: 46%; text-align: center; }
  }
 
  /* === END PRODUCTION CSS === */
 
  /* Preview-only annotations (delete these in production) */
  .preview-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 0.9rem;
    color: #78350f;
  }
  .preview-note strong { color: #451a03; }

@keyframes smooth-load{0%{opacity:0;transform:translateY(15px)}100%{opacity:1;transform:translateY(0)}}.hero{animation:smooth-load 0.8s cubic-bezier(.25,.46,.45,.94) forwards}#quote{opacity:0;animation:smooth-load 0.8s cubic-bezier(.25,.46,.45,.94) 0.3s forwards}.comparison-cards{display:grid;gap:1.5rem;margin-top:1rem}.comparison-card{background:var(--paper);border:1px solid var(--line,#e4ecf2);border-radius:var(--radius);box-shadow:var(--shadow);padding:1.5rem;text-align:center}.comparison-card h3{font-size:1.4rem;color:var(--ink);margin:0 0 .25rem}.comparison-card .service-desc{color:var(--muted);min-height:50px;margin-bottom:1.5rem}.price-boxes{display:grid;grid-template-columns:1fr 1fr;gap:1rem;align-items:center;margin-bottom:1.5rem}.price-box{padding:1rem;border-radius:12px}.price-box .label{font-weight:600;font-size:.9rem}.price-box .price{font-size:2.5rem;font-weight:800;line-height:1.1;margin-top:.25rem;font-family:"Playfair Display",serif}.price-box--theirs{background-color:#f8fafc;color:#64748b;border:1px solid #e2e8f0}.price-box--ours{background:linear-gradient(180deg,#eaf4ff,#f7fbff);color:var(--primary-2);border:1px solid #a8c8e6}.price-box--ours .price{color:var(--primary)}.you-save{font-weight:700;font-size:1.2rem;color:#166534;background-color:#f0fdf4;border:1px solid #bbf7d0;padding:.75rem;border-radius:999px;margin:0 auto;max-width:250px}@media (max-width:900px){.comparison-cards{grid-template-columns:1fr}}.brand,.escrow .cta,.header-inner,.hero-grid{align-items:center}.btn,.faq details,.hero-photo img,.sticky-cta,.why-card{box-shadow:var(--shadow)}.about-hero,.badge-figure,.btn.full,.cta-section,.f-copy,.faq-pro__header,.footer .f-badges .fine,.footer-bottom-bar,.hero-creds+.fine,.locator-map-container,.service-card,.services-local,.services-pro .card,.sticky-mobile-bar a,.team-profile-card,.why-seo-text{text-align:center}*,.trust-card{box-sizing:border-box}@font-face{font-family:"Playfair Display";font-style:normal;font-weight:700;font-display:swap;src:url(/fonts/playfair/playfair-display-v30-latin-700.woff2) format("woff2")}@font-face{font-family:"Playfair Display";font-style:normal;font-weight:600;font-display:swap;src:url(/fonts/playfair/playfair-display-v30-latin-600.woff2) format("woff2")}.brand,body{color:var(--ink)}.primary-nav .btn,.primary-nav a{margin-left:1rem}.btn.full,.field label,.nav-group.open .nav-dropdown,.pdf-peek,footer .contact-block,img{display:block}.escrow .hero h1,.escrow h2,.hero .display,.promo-left h2,.section-title,.service .hero h1{font-family:"Playfair Display",serif}#quote .big,.big,.brand,.escrow .price{font-weight:800}.area-card,.badge-link,.brand,.btn,.cert-link,.local-city .cta a,.mobile-nav a,.nav-dropdown a,.primary-nav a,.service-card,.services-pro .cta a,.services-pro h3 a,.sticky-cta,.sticky-mobile-bar a,.why-seo-text a{text-decoration:none}.nav-open .mobile-scrim,body.nav-open .mobile-nav,body.nav-open .mobile-scrim{opacity:1;visibility:visible}.badge-img,.hero-photo img{filter:contrast(1.02) saturate(1.02)}@font-face{font-family:"Inter Fallback";src:local("Arial");ascent-override:90.28%;descent-override:22.45%;line-gap-override:0%;size-adjust:107.45%}@font-face{font-family:Inter;font-style:normal;font-weight:400;font-display:swap;src:url(/fonts/inter/inter-v12-latin-regular.woff2) format("woff2")}@font-face{font-family:Inter;font-style:normal;font-weight:600;font-display:swap;src:url(/fonts/inter/inter-v12-latin-600.woff2) format("woff2")}@font-face{font-family:Inter;font-style:normal;font-weight:700;font-display:swap;src:url(/fonts/inter/inter-v12-latin-700.woff2) format("woff2")}@font-face{font-family:Inter;font-style:normal;font-weight:800;font-display:swap;src:url(/fonts/inter/inter-v12-latin-800.woff2) format("woff2")}.cred-badge{width:var(--cred-size);height:var(--cred-size);aspect-ratio:1/1}:root{--bg:#ffffff;--paper:#ffffff;--ink:#0d3b66;--muted:#4b5b6b;--primary:#1e6bb8;--primary-2:#0d3b66;--ring:rgba(30, 107, 184, 0.15);--shadow:0 10px 30px rgba(13, 59, 102, 0.08);--radius:14px;--service-max:1080px;--why-max:1080px;--page-max:1080px;--cred-size:90px;--cred-gap:0.9rem;--header-h:64px;--header-offset:92px}.footer-service-areas li,body,html{margin:0;padding:0}body{font-family:Inter,system-ui,-apple-system,Sego UI,Roboto,Helvetica,Arial,sans-serif;background:var(--bg);padding-bottom:env(safe-area-inset-bottom,0)}.brand em,.brand svg,.btn.ghost,.footer-socials a:hover,.why-seo-text a,a{color:var(--primary)}img{max-width:100%;height:auto}.container{max-width:1100px;margin-left:auto;margin-right:auto;padding-left:clamp(16px, 4.5vw, 28px);padding-right:clamp(16px, 4.5vw, 28px)}.site-header{position:sticky;top:0;z-index:50;background:#fff;backdrop-filter:saturate(130%) blur(6px);border-bottom:1px solid rgb(13 59 102 / .08)}.header-inner{display:flex;justify-content:space-between;padding:.3rem 0}.brand{display:flex;gap:.5rem}.brand em{font-style:normal}.nav-toggle{display:none;background:0 0;border:0;font-size:1.2rem}.f-copy,.footer,.trustbar{border-top:1px solid rgb(13 59 102 / .08)}.primary-nav a{color:var(--ink);font-weight:600}.btn{display:inline-block;background:var(--primary);color:#fff;border-radius:999px;padding:.72rem 1rem}.btn.ghost{background:0 0;border:1px solid var(--primary);box-shadow:none}.btn.small{padding:.45rem .8rem}.section{padding:2.2rem 0}.card,.faq details,.footer,.review-card,.section.alt,.why-seo-card{background:#fff}.section-title{margin:.25rem 0 1rem;font-size:1.6rem}.section-title::after{content:"";display:block;height:3px;width:150px;background:linear-gradient(90deg,var(--primary),var(--primary-2));border-radius:2px;margin-top:.5rem}.hero{background:#fff}.hero-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:1.25rem;padding:1.8rem 0}.trustbar ul,.trustpoints{padding:0;list-style:none}.hero .display{font-size:clamp(1.6rem, 2.4vw+1rem, 2.6rem);margin:.25rem 0 .5rem}.lead{color:var(--muted);line-height:1.6}.hero-photo img{border-radius:var(--radius);max-height:360px;object-fit:cover}.trustpoints{margin:1rem 0 0;display:grid;gap:.35rem}.badge,.stars{display:inline-flex}.trustpoints .tp{display:flex;align-items:center;gap:.5rem;color:var(--ink);padding:.2rem .25rem;border-radius:10px;transition:background 0.25s,transform 0.25s}.trustpoints .tp:hover{background:#f0f6fc;transform:translateX(2px)}.cert-drop[open] .cert-drop__icon,.nav-dropbtn[aria-expanded="true"]::after{transform:rotate(180deg)}.badge{width:28px;height:28px;min-width:28px;border-radius:50%;align-items:center;justify-content:center;background:#e8f2fb;color:var(--primary)}.footer-logo,.why-icon{height:40px}.ratings{margin-top:.4rem;color:var(--ink)}.stars{letter-spacing:2px}.trustbar{background:#fff;border-bottom:1px solid rgb(13 59 102 / .08)}.trustbar-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.7rem 0;color:var(--muted)}.trustbar ul{display:flex;gap:1rem;margin:0}.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.2rem}.why-card{background:#fff;border-radius:var(--radius);padding:1.1rem;transition:transform 0.25s,box-shadow 0.25s}.why-card:hover{transform:translateY(-4px);box-shadow:0 18px 38px rgb(13 59 102 / .12)}.why-icon{width:40px;border-radius:12px;background:#e8f2fb;color:var(--primary);display:flex;align-items:center;justify-content:center;margin-bottom:.6rem}.card,.review-card,.why-seo-card{border-radius:var(--radius);box-shadow:var(--shadow)}.why-seo-card{padding:1rem;margin:1.25rem auto 0;max-width:900px}.why-seo-text{margin:0 auto;font-size:1rem;line-height:1.6;color:#223}.addons,.field{margin-bottom:.8rem}.addons label{display:block;margin:.35rem 0}.big{font-size:2rem}.svc-media img{width:100%;height:100%;object-fit:cover;transform:scale(1.02);transition:transform 0.35s}.svc-card:hover .svc-media img{transform:scale(1.06)}.svc-points{list-style:none;margin:.5rem 0 1rem;padding:0;color:var(--muted)}#pricing-page .pricing-hero.card,.reviews-grid{margin-top:1.4rem}.svc-points li{margin:.2rem 0}.reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}.review-card{padding:1.2rem}.review-card p{margin:0 0 .7rem;font-style:italic;color:#223}.review-card cite{display:block;font-size:.92rem;color:#446;font-weight:600}.review-card::before{content:"“";position:absolute;top:.2rem;left:.6rem;font-size:2.7rem;color:#1e6bb822;font-family:serif}.faq details{border-radius:12px;padding:.8rem 1rem;margin:.6rem 0}.faq summary{cursor:pointer;font-weight:700;color:var(--primary)}.footer-inner{display:grid;grid-template-columns:1.2fr 1fr 1.2fr;gap:1rem;max-width:1100px;margin:0 auto;padding:1.25rem 1rem}.f-brand{display:flex;align-items:center;gap:.6rem}.f-links{display:flex;flex-direction:column;gap:.35rem}.f-contact a,.f-links a{text-decoration:none;color:var(--ink)}.f-copy{font-size:.85rem;color:var(--muted);padding:.75rem 1rem}.sticky-cta{position:fixed;right:16px;bottom:16px;background:var(--primary);color:#fff;padding:.7rem 1rem;border-radius:999px}.reveal{opacity:0;transform:translateY(10px);transition:opacity 0.5s,transform 0.5s}.reveal.in{opacity:1;transform:none}#quick-links .svc-grid{display:flex;justify-content:center;flex-wrap:wrap}.hero{position:relative;overflow:hidden}.hero::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(90deg,rgb(0 0 0 / .08) 0,#fff0 40%)}.hero-grid{align-items:start;gap:2.5rem}#quote.card{max-width:380px;width:100%;padding:1.25rem 1.25rem 1rem;border-radius:16px;border:1px solid rgb(0 0 0 / .06);box-shadow:0 8px 30px rgb(0 0 0 / .08);background:#fff}#quote .field,.section .card{margin-bottom:.75rem}#quote label{display:block;font-weight:600;font-size:.9rem;margin-bottom:.25rem}#quote input[type="email"],#quote input[type="number"],#quote input[type="text"],#quote select,#quote textarea{width:100%;height:42px;padding:0 .75rem;border:1px solid rgb(0 0 0 / .15);border-radius:10px;font-size:.95rem}#quote .addons{margin:.5rem 0 .75rem;padding:.5rem .75rem;border:1px dashed rgb(0 0 0 / .12);border-radius:10px}.area-card,.hero-photo img{border-radius:16px}#quote .addons legend{font-size:.85rem;font-weight:700;padding:0 .35rem}#quote .btn{width:100%;justify-content:center;margin-top:.25rem}#quote .big{font-size:1.55rem;min-height:2.6rem}#quote .section-title{font-size:1.15rem;margin-bottom:.75rem}#quick-links .svc-grid,#services .svc-grid{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;text-align:center}#service-areas .areas-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:.8rem}.area-card{display:block;overflow:hidden;background:#fff;border:1px solid rgb(13 59 102 / .1);box-shadow:0 6px 20px rgb(13 59 102 / .06);color:inherit;transition:transform 0.22s,box-shadow 0.22s,border-color 0.22s}.mobile-nav a,.nav-dropdown a,.nav-parent{color:var(--ink);color:var(--ink)}.area-card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgb(13 59 102 / .1);border-color:rgb(30 107 184 / .25)}.area-card .area-media img,.hero-photo img{width:100%;height:100%;object-fit:cover;display:block}.badge-img,.cred-badge img{object-fit:contain}.area-card .area-info{padding:.6rem .75rem}.area-card .area-info h3{margin:0 0 .1rem;font-size:1.05rem}.area-card .area-info span{color:var(--muted);font-size:.95rem}.mobile-nav{top:0;bottom:0;width:280px;background:var(--paper);transform:translateX(100%);display:flex;flex-direction:column;box-shadow:-10px 0 30px rgb(13 59 102 / .1)}.mobile-nav a{font-size:1.1rem;font-weight:600}.mobile-scrim{inset:0;inset:0;backdrop-filter:blur(6px) saturate(105%)}.nav-open .mobile-nav{transform:translateX(0);transform:translateY(0)}.nav-toggle{position:relative;z-index:200;cursor:pointer;line-height:1;padding:.5rem;pointer-events:auto}.primary-nav .nav-group{position:relative;display:inline-block;margin-left:1rem}.hp,.nav-dropdown{position:absolute}.nav-parent{background:0 0;border:0;font:inherit;font-weight:600;display:inline-flex;align-items:center;gap:.25rem;cursor:pointer}.nav-parent .caret{font-size:.9em}.nav-dropdown{top:100%;left:0;min-width:220px;background:#fff;border:1px solid rgb(13 59 102 / .12);border-radius:var(--radius);box-shadow:var(--shadow);padding:.4rem;display:none;z-index:120}.nav-dropdown a{display:block;padding:.55rem .7rem;border-radius:10px}.nav-dropdown a:hover{background:#f3f7fb}.mobile-nav{top:var(--header-h,64px);background:var(--paper);display:flex;flex-direction:column;box-shadow:0 20px 40px rgb(13 59 102 / .12);border-bottom-left-radius:var(--radius);border-bottom-right-radius:var(--radius);height:auto;max-height:80vh;overflow-y:auto}.cert-drop,.cert-pdf-frame,.compare,.escrow .media,.faq-pro__item,.mold .media,.pdf-peek,.sewer .media,body.nav-open{overflow:hidden}.contact-form{padding:1.25rem}#booking-form.booking-grid,.about-sidebar,.booking-grid,.contact-form .grid,.repair-ranges{display:grid;gap:1rem}.field label{font-weight:600;margin-bottom:.35rem}.field input,.field select,.field textarea{width:100%;padding:.6rem .7rem;border:1px solid #cfd6e0;border-radius:.5rem;font:inherit;background:#fff}.case-studies h2,.faq-pro h2,.local-city h2,.services-local h2,.services-pro .section-title,.trust-lead{font-family:"Playfair Display",Georgia,serif}.field textarea{resize:vertical}#booking-form input:focus,#booking-form select:focus,#booking-form textarea:focus,.field input:focus,.field select:focus,.field textarea:focus{outline:#7aa8ff33 solid 2px;border-color:#7aa8ff}.actions{display:flex;align-items:center;gap:1rem;margin-top:.5rem;flex-wrap:wrap}.form-note{font-size:.9rem}.muted{color:#5d6b82}.hp{left:-50000px}.form-status{margin-top:.75rem;font-weight:600}.related-resources h2{font-size:1.25rem;line-height:1.75rem;margin-bottom:.5rem;font-weight:600}.related-resources ul{margin-left:1.25rem;list-style:disc}.muted a,.price-card h3 a:hover,.related-resources a{text-decoration:underline}.related-resources{margin-top:2.5rem;padding-top:1.25rem;border-top:1px solid #e5e7eb;max-width:960px;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}.local-city{--city-max:1100px;--city-gap:2rem;--city-bg:#0b1b2a;--city-card:#0f2436;--city-accent:#4db6ff;--city-muted:#e4eef7;color:#f7fbff;background:linear-gradient(180deg,var(--city-bg) 0,#0c1f31 100%);border-radius:20px;padding:clamp(1.5rem, 3vw, 2.5rem);box-shadow:0 10px 30px rgb(0 0 0 / .28);margin:2.5rem auto;max-width:var(--city-max)}.local-city h2{font-weight:700;font-size:clamp(1.6rem, 2.6vw, 2.1rem);margin:0 0 1rem;color:#fff}.local-city .sub{color:var(--city-muted);margin-bottom:1.25rem;line-height:1.5}.local-city .grid{display:grid;grid-template-columns:1.2fr 1fr;gap:var(--city-gap)}.local-city .pane{background:var(--city-card);border:1px solid rgb(255 255 255 / .07);border-radius:16px;padding:clamp(1rem, 2.2vw, 1.4rem)}.local-city img.city{width:100%;height:260px;object-fit:cover;border-radius:14px;border:1px solid rgb(255 255 255 / .08);margin-bottom:1rem}.local-city h3{font-size:clamp(1.1rem, 2vw, 1.25rem);margin:0 0 .6rem;color:#fff}.local-city li,.local-city p{color:#e9f3ff;line-height:1.65}.local-city ul{display:grid;gap:.4rem;padding-left:1.1rem;margin:.4rem 0 0}.local-city .chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.75rem}.local-city .chip{background:rgb(77 182 255 / .15);color:#cfeaff;border:1px solid rgb(77 182 255 / .35);padding:.35rem .6rem;border-radius:999px;font-size:.85rem}.local-city .cta{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.1rem}.local-city .cta a{background:var(--city-accent);color:#072033;padding:.75rem 1rem;border-radius:10px;font-weight:700;transition:transform 0.12s,box-shadow 0.12s;box-shadow:0 6px 16px rgb(77 182 255 / .35)}.local-city .cta a:hover{transform:translateY(-1px)}.local-city .note{font-size:.92rem;color:#c5d8ea;margin-top:.6rem}.local-city .links{display:grid;gap:.4rem;margin-top:.9rem}.local-city .links a{color:#a7d6ff;text-underline-offset:3px}.case-studies{margin:3rem auto;max-width:1100px;padding:2rem;border-radius:18px;background:#f8fbff;color:#0c1d2c;box-shadow:0 10px 25px rgb(0 0 0 / .08)}.case-studies h2{font-size:clamp(1.6rem, 2.5vw, 2rem);margin-bottom:1.4rem;color:#0c1d2c}.case-studies .grid{display:grid;gap:1.8rem;grid-template-columns:1fr 1fr}.case-studies article{background:#fff;border:1px solid #e4ecf2;border-radius:14px;padding:1.2rem 1.4rem;display:flex;flex-direction:column;gap:.75rem;transition:transform 0.15s}.footer-contact a,.footer-links a,.footer-socials a{transition:color 0.2s;color:var(--muted)}.case-studies article:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgb(0 0 0 / .1)}.case-studies h3{font-size:1.1rem;margin:0;color:#11314f}.case-studies p{font-size:.95rem;line-height:1.55;margin:0}.case-studies .tags{display:flex;flex-wrap:wrap;gap:.4rem}.case-studies .tags span{background:#eef6fc;color:#2e75b6;padding:.25rem .6rem;font-size:.8rem;border-radius:999px}.services-local{margin:3rem auto;max-width:1200px;padding:0 1rem}.services-local h2{font-size:clamp(1.6rem, 2.3vw, 2.1rem);margin-bottom:2rem;color:#0b1b2a}.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.8rem;justify-items:center}.service-card{background:#fff;border-radius:18px;padding:1.6rem 1.2rem;color:#0c1d2c;border:1px solid #e4ecf2;box-shadow:0 6px 20px rgb(0 0 0 / .08);transition:transform 0.18s,box-shadow 0.18s;width:100%;max-width:340px}.services-pro .section-title,.trust-lead{color:#0b1b2a}.service-card:hover{transform:translateY(-5px);box-shadow:0 10px 28px rgb(0 0 0 / .12)}.service-card .icon{font-size:2.2rem;margin-bottom:.9rem}.service-card h3{font-size:1.1rem;margin-bottom:.6rem;color:#11314f}.service-card p{font-size:.93rem;color:#334b63;line-height:1.55}.trustbar{background:linear-gradient(180deg,#f3f8ff 0,#eaf2fb 100%);border:1px solid #dbe7f5;border-radius:18px;box-shadow:0 10px 24px rgb(10 40 80 / .08);margin:2.5rem auto;max-width:1200px;padding:clamp(1rem, 2.5vw, 1.5rem)}.trustbar-inner{display:grid;gap:1rem 1.25rem;align-items:center}.trust-lead{font-weight:700;font-size:clamp(1.15rem, 2.2vw, 1.35rem)}.trust-items{list-style:none;margin:0;padding:0;gap:.8rem;grid-template-columns:repeat(4,minmax(0,1fr))}.faq-pro,.services-pro{margin:3rem auto}.trust-badge{align-items:center;gap:.6rem;background:#fff;border:1px solid #e4ecf2;border-radius:12px;padding:.65rem .8rem;color:#143751;box-shadow:0 4px 12px rgb(15 60 110 / .06);min-height:52px}.trust-badge svg{width:22px;height:22px;color:#2e75b6;flex:0 0 auto}.trust-badge span{line-height:1.35;font-size:.95rem}.services-pro{max-width:1200px;padding:0 1rem}.services-pro .section-title{font-size:clamp(1.6rem, 2.5vw, 2.2rem);margin:0 0 1.25rem;line-height:1.2}.services-pro .title-underline{width:84px;height:3px;background:#2e75b6;border-radius:2px;margin:.4rem 0 2rem}.services-pro .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.6rem;align-items:stretch}.services-pro .card{background:#fff;border:1px solid #e4ecf2;border-radius:18px;box-shadow:0 10px 26px rgb(0 0 0 / .08);padding:1.4rem 1.2rem;display:flex;flex-direction:column;gap:.85rem}.escrow .wrap,.faq-pro{padding:0 1rem;max-width:1100px}.services-pro .icon-pill{align-self:center;width:38px;height:38px;border-radius:10px;background:#eaf4ff;display:grid;place-items:center;color:#2e75b6}.services-pro .icon-pill svg{width:20px;height:20px}.services-pro h3{font-size:1.1rem;margin:.25rem 0 .35rem;color:#11314f}.services-pro h3 a{color:#11314f;border-bottom:2px solid #fff0}.services-pro h3 a:hover{border-bottom-color:#2e75b6}.services-pro .blurb{color:#334b63;line-height:1.55;font-size:.95rem;margin:0}.services-pro .details{display:grid;gap:.35rem;margin-top:.25rem}.services-pro .details p{margin:0;font-size:.92rem;color:#47617a}#faqs details+details,.services-pro .cta{margin-top:.75rem}.services-pro .cta a{display:inline-block;padding:.6rem 1rem;border-radius:999px;border:1px solid #a8c8e6;color:#174265;font-weight:600;background:#f4f9ff}.services-pro .cta a:hover{background:#eaf4ff;border-color:#7fb0db}.faq-pro h2{font-size:clamp(1.6rem, 2.5vw, 2.2rem);color:#0b1b2a;margin:0}.faq-pro__underline{width:90px;height:3px;background:#2e75b6;border-radius:2px;margin:.55rem auto 1.2rem}.faq-pro__lead{color:#496682;max-width:720px;margin:0 auto 1.6rem;line-height:1.55}.escrow .cases,.faq-pro__grid{display:grid;gap:1rem;grid-template-columns:1fr 1fr}.faq-pro__item{background:#fff;border:1px solid #e4ecf2;border-radius:14px;padding:.75rem 1rem;box-shadow:0 8px 20px rgb(0 0 0 / .06)}.faq-pro__item summary{list-style:none;cursor:pointer;display:grid;grid-template-columns:1fr auto;align-items:center;gap:.75rem;font-weight:700;color:#11314f;padding:.35rem 0}.faq-pro__item summary::-webkit-details-marker{display:none}.faq-pro__icon{width:26px;height:26px;border-radius:6px;background:#eaf4ff;position:relative;flex:0 0 auto}.faq-pro__icon::after,.faq-pro__icon::before{content:"";position:absolute;inset:0;margin:auto;background:#2e75b6;width:14px;height:2px;border-radius:2px}.faq-pro__icon::after{transform:rotate(90deg);transition:transform 0.15s}.faq-pro__item[open] .faq-pro__icon::after{transform:rotate(0)}.faq-pro__content{color:#324e6a;line-height:1.65;padding:.5rem 0 .8rem;border-top:1px dashed #e1eaf3;margin-top:.5rem}.escrow,.service{--ink:#0b1b2a;--muted:#47617a;--accent:#2e75b6;--line:#e4ecf2;color:var(--ink)}.faq-pro__content a{color:#2e75b6;text-underline-offset:3px}.escrow{--bg:#f5faff;--card:#ffffff}.escrow .wrap{margin:0 auto}.escrow .hero,.service .hero{background:linear-gradient(180deg,#eaf4ff,#f7fbff);border:1px solid var(--line);border-radius:22px;box-shadow:0 12px 28px rgb(0 0 0 / .08);padding:2rem;margin:2rem auto}.escrow .hero h1,.service .hero h1{font-size:clamp(1.8rem, 2.8vw, 2.4rem);margin:0 0 .4rem}.escrow .hero p.lead,.service .hero .lead{color:var(--muted);max-width:760px;line-height:1.6}.escrow .badges,.escrow .esc-badges{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:.9rem}.escrow .badge{background:#eef6fc}.escrow .btn,.service .btn{background:var(--accent);color:#fff;text-decoration:none;padding:.75rem 1rem;border-radius:10px;font-weight:700;box-shadow:0 8px 18px rgb(46 117 182 / .35)}.escrow .btn.ghost,.service .btn.ghost{background:#f0f6ff;color:#174265;border:1px solid #a8c8e6}.escrow h2{font-size:clamp(1.4rem, 2.3vw, 1.9rem);margin:0 0 .8rem}.escrow h3{font-size:1.05rem;margin:.2rem 0 .4rem;color:#11314f}.escrow li,.escrow p{line-height:1.65;color:#274961}.escrow ul{margin:.4rem 0 0 1.1rem;display:grid;gap:.35rem}.escrow .grid{display:grid;gap:1.5rem;grid-template-columns:1.15fr 0.85fr;margin:2rem 0}.escrow .card{background:var(--card);border:1px solid var(--line);border-radius:16px;box-shadow:0 10px 22px rgb(0 0 0 / .06);padding:1.2rem}.escrow .media{border-radius:14px;border:1px solid var(--line)}.escrow .media img{display:block;width:100%;height:280px;object-fit:cover}.escrow .addons,.escrow .pricing,.escrow .steps,.repair-ranges .grid{display:grid;gap:1rem;grid-template-columns:repeat(3,1fr)}.escrow .step{border-radius:14px;border:1px dashed #cfe2f5;background:#fcfeff;padding:1rem}.escrow .step strong{display:block;margin-bottom:.25rem}.escrow .addon,.escrow .case{background:#fff;border:1px solid var(--line);border-radius:14px;padding:1rem}.escrow .tier .note,.escrow .tiny,.repair-ranges .fine{color:#607d99;font-size:.9rem}.escrow .tier{padding:1.1rem;border-radius:16px;border:1px solid var(--line);background:#fff}.escrow .tier .amt{font-weight:800;font-size:1.3rem}.escrow .case h4{margin:.1rem 0 .4rem;font-size:1rem;color:#11314f}.escrow .tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.4rem}.escrow .tag{background:#eef6fc;border:1px solid #cfe2f5;color:#174265;padding:.2rem .5rem;border-radius:999px;font-size:.8rem}.escrow .faqs details{background:#fff;border:1px solid var(--line);border-radius:12px;padding:.8rem 1rem}.escrow .faqs details summary{cursor:pointer;font-weight:700;color:#13304b}.escrow .faqs details .a{border-top:1px dashed #e1eaf3;margin-top:.5rem;padding-top:.5rem;color:#2f506d}.escrow .hero p.lead,.service .hero .lead{margin:.35rem 0 .6rem}.escrow .esc-badge,.service .svc-badge{background:#eef6fc;border:1px solid #cfe2f5;color:#174265;padding:.35rem .6rem;border-radius:999px;font-weight:600;font-size:.85rem;line-height:1;display:inline-flex;align-items:center;white-space:nowrap}.service .wrap{max-width:1100px;margin:0 auto;padding:0 1rem;max-width:var(--service-max)!important}.service .svc-badges{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:.2rem}.service .cta{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1rem;align-items:center}.mold .grid,.sewer .grid{display:grid;grid-template-columns:1fr 1fr;align-items:start;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:1.5rem;align-items:start}.mold .media,.sewer .media{max-width:100%;border-radius:14px;border:1px solid #e4ecf2}.mold .wrap,.service .wrap,.sewer .wrap{max-width:var(--service-max)!important;margin-left:auto!important;margin-right:auto!important;padding-left:1rem;padding-right:1rem}.mold .card,.pricing .compare,.pricing .table,.sewer .card{width:100%;max-width:100%}.mold .media img,.sewer .media img{display:block;width:100%;height:auto;max-height:360px;object-fit:cover}.about-pro .about-header{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;flex-wrap:wrap;margin-bottom:.6rem}.about-pro .about-title{display:flex;flex-direction:column;gap:.25rem}.about-pro .about-title strong{font-size:1.25rem;color:#11314f}.about-pro .about-sub{color:#47617a;font-weight:600}.about-pro .about-meta{display:flex;flex-wrap:wrap;gap:.5rem}.about-pro .chip,.repair-ranges .pill{background:#f0f6ff;border:1px solid #a8c8e6;color:#174265;padding:.25rem .55rem;border-radius:999px;font-weight:600;font-size:.85rem}.about-pro .about-stats{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:.4rem 0 1rem}.about-pro .stat{display:flex;align-items:center;gap:.8rem;background:#f7fbff;border:1px solid #e4ecf2;border-radius:14px;padding:.75rem 1rem}.about-pro .num{font-weight:800;font-size:1.85rem;line-height:1;color:#11314f}.about-pro .num span{font-size:.9rem;font-weight:700;margin-left:.2rem;color:#47617a}.about-pro .label{color:#274961}.about-pro .about-points{margin-top:.2rem}.about-pro .about-cta{margin-top:.85rem}.about-pro .about-story{margin-top:.6rem;background:#fff;border:1px solid #e4ecf2;border-radius:12px;padding:.6rem .8rem}.about-pro .about-story summary{cursor:pointer;font-weight:700;color:#13304b;list-style:none}.about-pro .about-story summary::-webkit-details-marker{display:none}.about-pro .about-story .a{border-top:1px dashed #e1eaf3;margin-top:.45rem;padding-top:.5rem;color:#2f506d;line-height:1.65}.about-edge .muted strong{color:#11314f}.about-edge .about-tagline{margin-top:.6rem;color:#2f506d;font-weight:600}.footer .f-badges{display:flex;flex-direction:column;align-items:center;gap:.35rem;min-width:100px}.footer .badge-cmi{width:84px;height:84px;display:inline-block;border-radius:50%;border:1px solid #e4ecf2;box-shadow:0 6px 14px rgb(0 0 0 / .12);background:url(/images/cmi-badge.webp) center 20%/120% no-repeat #fff}.footer .f-badges .fine{color:#607d99;font-size:.85rem;line-height:1.2}.service .wrap,.why .wrap{max-width:var(--why-max)!important;margin-left:auto!important;margin-right:auto!important;padding-left:1rem;padding-right:1rem}.why .card{max-width:100%}.why .grid-2,.why .grid-3{gap:1rem}.why .grid-2{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr)}.why .grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}.pricing .wrap>.card,.pricing .wrap>.grid-2,.pricing .wrap>.grid-3,.service.pricing .hero,.service.why .hero{margin-bottom:1.25rem}.compare{border:1px solid var(--line,#e4ecf2);border-radius:14px;border-spacing:0;background:#fff}.compare td,.compare th{padding:.85rem 1rem;border-bottom:1px solid #eef3f7}.compare thead th{background:#f8fbff;font-weight:800;color:#11314f;text-align:left}.compare tr:last-child td{border-bottom:none}.compare .good{font-weight:700;color:#14532d}.compare .meh{color:#6b7280}.repair-ranges .pills{display:flex;flex-wrap:wrap;gap:.45rem}.repair-ranges .tile{background:#fff;border:1px solid var(--line,#e4ecf2);border-radius:12px;padding:.85rem}.repair-ranges .amt{font-weight:800;color:#11314f}.pricing .wrap,.service .wrap{max-width:var(--page-max)!important;margin-left:auto!important;margin-right:auto!important;padding-left:1rem;padding-right:1rem}.pricing .grid-2{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}.pricing .grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}.pricing .grid-2,.pricing .grid-3{display:grid;gap:1rem;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1.25rem}.pricing .grid-2>*{grid-column:span 6}.pricing .grid-3>*{grid-column:span 4}.pricing+.pricing{margin-top:1.25rem}.pricing .card{max-width:100%;height:100%;position:relative;background-clip:padding-box;z-index:0}.sticky-mobile-bar{position:fixed;left:0;right:0;bottom:0;z-index:999;display:none;gap:.5rem;padding:.6rem .8rem;background:rgb(255 255 255 / .96);border-top:1px solid #e4ecf2;backdrop-filter:saturate(1.2) blur(6px)}.sticky-mobile-bar a{flex:1 1 0%;font-weight:700;padding:.7rem .6rem;border-radius:10px;border:1px solid #a8c8e6;color:#174265;background:#f0f6ff}.cred-badge,.hero-creds{align-items:center;align-items:center}.cred-badge,.cred-badge.circle{border-radius:50%;overflow:hidden}.sticky-mobile-bar a.primary{background:#2e75b6;color:#fff;border-color:#2e75b6}.hero-creds{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap}.cred-badge{display:inline-flex;align-items:center;justify-content:center;background:#fff;padding:6px;box-shadow:0 8px 16px rgb(0 0 0 / .06)}.cred-badge img{width:100%;height:100%;padding:8px}.cred-badge.circle{padding:0}.cred-badge.circle img{width:100%;height:100%;object-fit:cover;object-position:50% 20%;transform:scale(1.08);clip-path:circle(48% at 50% 50%)}.hero-creds{display:flex;gap:.75rem;flex-wrap:wrap}.cred-badge{width:88px;height:88px;display:inline-flex;justify-content:center;background:radial-gradient(120% 120% at 30% 30%,#e8f2ff 0,#dbe8ff 55%,#d3e1f7 100%);border:1px solid #bacce6;box-shadow:0 8px 18px rgb(22 44 84 / .16);transition:transform 0.12s,box-shadow 0.12s;width:var(--cred-size);height:var(--cred-size)}.cred-badge:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgb(22 44 84 / .2)}.hero-creds{display:flex;align-items:center;flex-wrap:wrap;column-gap:var(--cred-gap);row-gap:calc(var(--cred-gap) * 0.75);margin-top:.8rem}.promo-wide{background:#fff;border-top:none;border-bottom:none;box-shadow:inset 0 1px 0 #fffaf0}.promo-wide .promo-inner{display:grid;grid-template-columns:1fr auto;gap:1rem;align-items:center;padding:1rem;position:relative}.promo-left h2{font-size:clamp(1.1rem, 2.2vw, 1.6rem);margin:0 .25rem 0 0;display:inline-block}.promo-sub{margin:.25rem 0 0;color:#4a4a4a}.promo-code{background:#fff;border:1px dashed #d7b85a;border-radius:6px;padding:.05rem .35rem;font-weight:800;letter-spacing:.3px}.promo-pill{display:inline-flex;align-items:center;justify-content:center;min-width:72px;height:72px;margin-right:.6rem;border-radius:999px;background:#ffde7a;color:#5a4300;border:1px solid #e8c75f;box-shadow:inset 0 0 0 4px #fff3bf;font-weight:800}.promo-actions{display:flex;gap:.6rem;flex-wrap:wrap}.promo-close{position:absolute;right:.5rem;top:.5rem;background:0 0;border:0;font-size:1.3rem;line-height:1;color:#7a6a2a;cursor:pointer;padding:.2rem}.mobile-nav,.mobile-scrim{position:fixed;opacity:0;visibility:hidden}.mobile-nav{left:0;right:0;top:var(--header-h,64px);background:#fff;box-shadow:0 10px 30px rgb(0 0 0 / .12);transform:translateY(-10px);transition:transform 0.2s,opacity 0.2s,visibility 0s 0.2s;z-index:98;padding:12px 8px;border-bottom:1px solid rgb(13 59 102 / .08)}.mobile-nav a{display:block;padding:12px 14px;color:#0f172a;border-radius:10px}.mobile-nav a:hover{background:#f1f5f9}.mobile-scrim{inset:0;background:rgb(0 0 0 / .42);transition:opacity 0.2s;z-index:97}body.nav-open .mobile-nav{transform:translateY(0);transition:transform 0.2s,opacity 0.2s}@media (max-width:720px){.trustbar-inner{flex-direction:column;align-items:flex-start;gap:.6rem}.trustbar ul{overflow-x:auto;white-space:nowrap;gap:.5rem;padding-bottom:.25rem;scroll-snap-type:x mandatory}.trustbar ul li{display:inline-block;background:#f0f6fc;border:1px solid rgb(13 59 102 / .12);padding:.35rem .55rem;border-radius:999px;scroll-snap-align:start;font-size:.9rem;color:#1f3b55}.footer .f-badges{margin-top:.6rem}}@media (max-width:980px){.svc-grid,.why-grid{grid-template-columns:1fr 1fr}.hero-grid,.quote-grid,.reviews-grid{grid-template-columns:1fr}.hero-grid{gap:1rem}}@media (max-width:700px){.footer-inner,.svc-grid,.why-grid{grid-template-columns:1fr}.primary-nav{display:none}.nav-toggle{display:block}.section{padding:1.6rem 0}}@media (max-width:480px){.container{max-width:1100px;margin-left:auto;margin-right:auto;padding-left:clamp(16px, 4.5vw, 28px);padding-right:clamp(16px, 4.5vw, 28px)}.section{padding:1.4rem 0}.card{border-radius:12px}.hero-grid,.reviews-grid,.svc-grid,.why-grid{gap:.8rem}:root{--cred-size:78px;--cred-gap:0.7rem}.hero-creds{margin-top:.7rem}}@media (max-width:700px){.trustbar ul{display:none}.trustbar-inner{justify-content:center;text-align:center}}@media (max-width:1024px){#service-areas .areas-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:880px){.case-studies .grid{grid-template-columns:1fr}}@media (max-width:700px){.footer-inner,.hero-cta .btn,.ratings,.trustbar ul li,.trustbar-inner{text-align:center}.trustbar-inner{flex-direction:column;align-items:center;gap:.6rem}.trustbar ul{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem 1rem;padding:0;margin:0}.trustbar ul li{flex:0 1 auto;white-space:normal;font-size:.9rem}.footer-inner{grid-template-columns:1fr;align-items:center}.f-brand,.trustpoints{justify-content:center}.f-links{align-items:center}.f-links a{display:inline-block;margin:.15rem .4rem}.f-contact{display:flex;flex-direction:column;gap:.2rem;align-items:center}.footer-logo{height:44px}.hero-cta{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center}.hero-cta .btn{flex:1 1 auto;min-width:46%}.card{padding:1rem}.services-local h2{margin-bottom:1.2rem}.services-grid{gap:1.2rem}}.hero,.hero-grid{padding-top:0!important}@media (max-width:1000px){.escrow .grid{grid-template-columns:1fr}}@media (max-width:900px){.escrow .addons,.escrow .cases,.escrow .pricing,.escrow .steps{grid-template-columns:1fr}}@media (max-width:780px){.about-pro .about-stats{grid-template-columns:1fr}}@media (max-width:980px){.hero-grid,.mold .grid,.pricing .grid-2,.pricing .grid-3,.sewer .grid,.why .grid-2,.why .grid-3{grid-template-columns:1fr}.hero::after{background:linear-gradient(180deg,rgb(0 0 0 / .06) 0,#fff0 40%)}.hero-grid{display:grid;gap:1.25rem}#quote.card{max-width:100%;order:2}.hero-copy{order:1}.hero-cta{display:flex;gap:.5rem;flex-wrap:wrap}.mold .media img,.sewer .media img{max-height:300px}.pricing .grid-2>*,.pricing .grid-3>*{grid-column:span 12}.pricing .wrap>.card,.pricing .wrap>.grid-2,.pricing .wrap>.grid-3{margin-bottom:1rem}}@media (max-width:880px){.local-city .grid{grid-template-columns:1fr}.local-city img.city{height:220px}.sticky-mobile-bar{display:flex}}@media (max-width:820px){.faq-pro__grid{grid-template-columns:1fr}.hero-creds{justify-content:center}.hero-creds+.fine{width:100%;text-align:center;margin-top:.35rem}}.about-layout-grid{display:grid;grid-template-columns:1fr 320px;align-items:start}@font-face{font-family:"Playfair Display Fallback";src:local("Georgia");ascent-override:92%;descent-override:24%;line-gap-override:0%;size-adjust:102%}html{font-family:Inter,"Inter Fallback",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif}h1,h2,h3{font-family:"Playfair Display","Playfair Display Fallback",Georgia,serif}.promo-slot{min-height:76px}.promo-slot:empty::before{content:"";height:100%}.addons{min-height:48px}.area-card .area-media{display:block;aspect-ratio:16/9;background:#eef5fc}.hero-photo{aspect-ratio:11/3.6}#promo-slot:empty,.promo-slot:empty{display:none!important;min-height:0!important}#promo-slot:empty::before,.promo-slot:empty::before,.trust-badge,.trust-items,.trust-panel,[hidden]{display:none!important}.hero,.why{margin-top:0!important}.site-header{margin-bottom:0!important}.cert-drop{margin-top:1rem;max-width:860px;border-radius:14px;box-shadow:0 6px 20px rgb(0 0 0 / .08)}.cert-drop__toggle{display:flex;align-items:center;justify-content:space-between;gap:.75rem;font-weight:600;line-height:1.3;cursor:pointer;list-style:none}.cert-drop__toggle::-webkit-details-marker{display:none}.cert-drop__icon{transition:transform 0.25s;margin-left:.25rem}.cert-drop__content{padding:0 1.1rem 1.1rem}.cert-pdf-frame{box-shadow:0 4px 16px rgb(0 0 0 / .12)}.cert-fallback{margin-top:.8rem}.cert-link{display:inline-block;padding:.55rem .9rem;border:1px solid #2e75b6;border-radius:8px;font-weight:600;color:#2e75b6}.cert-link:hover{background:#f0f6ff}.cta .cert-drop{display:inline-block;position:relative;margin-top:4px}.cert-drop{background:0 0;border:0;box-shadow:none}.cert-drop__toggle{border:1px solid #a8c8e6;border-radius:10px;padding:.75rem 1rem;display:inline-flex;align-items:center;gap:.5rem}.cert-drop[open] .cert-drop__content{position:absolute;left:0;top:calc(100% + 8px);z-index:30;background:#fff;border:1px solid #e4ecf2;border-radius:14px;box-shadow:0 16px 36px rgb(0 0 0 / .12);padding:.9rem 1.1rem 1.1rem;width:min(86vw, 880px)}.nachi-edu{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}.nachi-edu img{width:100%;height:auto;display:block;max-width:220px}.cert-grid{display:grid;grid-template-columns:1fr}.cert-block{max-width:980px;width:100%}.card .cert-block,.section+.section{margin-top:.5rem}.cert-pdf-frame{display:block;width:100%;min-width:0;height:clamp(520px, 75vh, 900px);border-radius:10px;background:#fff;box-shadow:0 4px 16px rgb(0 0 0 / .1)}.cert-pdf-frame iframe{width:100%;height:100%;border:0;display:block}.quick-badge-wrap{display:flex;justify-content:center;align-items:center;margin-top:1rem}.quick-badge{max-width:140px;height:auto;display:block}.cert-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));margin-top:.6rem}.cert-card{background:#fff;border:1px solid #e4ecf2;border-radius:14px;padding:.9rem;box-shadow:0 6px 16px rgb(0 0 0 / .06);display:flex;flex-direction:column;gap:.55rem;position:relative}.cert-card h3{margin:0;font-size:1.05rem;color:#11314f}.pdf-peek{width:100%;aspect-ratio:16/9;border:1px solid #e5e7eb;border-radius:10px;background:#f8fafc;cursor:pointer;padding:0}#pdfModalFrame,.pdf-peek iframe{width:100%;height:100%;border:0}.pdf-peek iframe{pointer-events:none;display:block}.pdf-modal::backdrop{backdrop-filter:blur(2px);background:rgb(0 0 0 / .5);backdrop-filter:blur(3px)}.pdf-modal[open] .pdf-modal__inner{display:grid;grid-template-rows:auto minmax(60vh,76vh)}.cert-badges .card{padding:1.1rem 1rem;max-width:1100px;margin-inline:auto}.badge-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1rem;margin:.6rem 0 0;list-style:none;padding:0}.badge-item{display:grid;place-items:center}.badge-link{color:inherit}.badge-figure{display:grid;gap:.4rem;justify-items:center}.badge-img{inline-size:58px;block-size:58px;width:84px;height:84px;display:block}.grid,.steps{display:grid}.badge-figure figcaption{font-size:.9rem;color:#324e6a;font-weight:600}@media (max-width:640px){.hero-creds+.fine{display:none!important}.cert-grid{gap:.8rem}.cert-card{padding:.75rem}.pdf-modal[open] .pdf-modal__inner{grid-template-rows:auto minmax(70vh,82vh)}.badge-img{width:64px;height:64px}.badge-grid{grid-template-columns:repeat(2,1fr)}}.cert-badges{margin:1.6rem 0 2.4rem!important;padding-left:1rem;padding-right:1rem}.service .hero{margin-bottom:1.6rem!important}.badge-grid{justify-items:center;align-items:start}.cert-grid{align-items:start}main>.service{padding-top:clamp(24px, 6vh, 72px)}.service{margin-bottom:clamp(16px, 4vh, 48px)}.cert-badges .card h2{margin-top:.25rem;margin-bottom:.5rem}.cert-badges .card p{margin-top:0;margin-bottom:1rem}.section{padding-block:3rem}.section.compact{padding-block:2rem}.mold .wrap>*+*{margin-top:1.5rem}.card+.card,.hero-pills,.service .card+.card{margin-top:1rem}#local-faq h2,.footer-heading{margin:0 0 1rem}.grid{gap:1.25rem}.card{padding:1.25rem;border-radius:.75rem}.steps{gap:.9rem}@media (min-width:768px){.grid.two,.steps{grid-template-columns:1fr 1fr}.grid.two{gap:1.5rem}.grid.three{grid-template-columns:repeat(3,1fr);gap:1.5rem}.steps{gap:1rem 1.25rem}}.step+.step{margin-top:0}.hero-pills{display:flex;flex-wrap:wrap;gap:.5rem .75rem}.mold .card.ethics{background:#fcfeff;border:1px solid #cfe2f5}.services-grid .service-card .icon .vector-icon{width:1em;height:1em;display:inline-block;vertical-align:-.125em}#quote .addons label{font-weight:500;margin:.2rem 0 4px;font-size:.92rem;display:block;padding:8px 4px;cursor:pointer;border-radius:6px}#quote .addons label:hover{background-color:#f0f6fc}.comparison-table-container{overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:10px}.compare{width:100%;min-width:600px;border-collapse:collapse}@media (max-width:800px){.comparison-table-container{border:1px dashed #a8c8e6;border-radius:12px;position:relative}.comparison-table-container::before{content:"Scroll right to see more →";position:absolute;top:-25px;right:10px;font-size:.8rem;color:#47617a;font-weight:600}}.site-footer-v2{color:var(--muted);border-top:2px solid var(--line);font-size:.95rem}.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));border-bottom:1px solid var(--line)}.footer-col .f-brand{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}.footer-col .f-brand p{margin:0;color:var(--ink);font-weight:700}.footer-logo{height:48px;width:48px}.footer-tagline{line-height:1.6;max-width:35ch}.footer-heading{font-family:"Playfair Display",serif;color:var(--ink)}#booking-form fieldset.stack,.booking-grid .stack,.footer-links,.footer-service-areas{display:grid;gap:.6rem}#local-faq summary,.footer-badges,.footer-bottom,.footer-socials{display:flex;display:flex}.footer-contact a,.footer-links a{text-decoration:none}.footer-contact a:hover,.footer-contact-info a:hover,.footer-links a:hover{color:var(--primary);text-decoration:underline}.footer-contact{font-style:normal;line-height:1.7}.footer-socials{gap:1rem;margin-top:1.25rem}.footer-socials svg{width:24px;height:24px;fill:currentColor}.footer-bottom{justify-content:space-between;align-items:center;flex-wrap:wrap}.copyright{margin:0;font-size:.9rem}.footer-badges{gap:1rem;align-items:center}.footer-badges img{height:40px;opacity:.7;opacity:.85}@media (max-width:768px){.hero .hero-copy .hero-creds+.fine,.hero .hero-creds+.fine,.hero-creds+.fine{display:none!important}.cert-pdf-frame{height:70vh}.footer-grid{grid-template-columns:1fr 1fr}.footer-bottom{flex-direction:column;text-align:center}}@media (max-width:500px){.footer-grid{grid-template-columns:1fr;text-align:center}.footer-col .f-brand,.footer-socials{justify-content:center}}.cert-grid,.nachi-badge-grid{grid-template-columns:repeat(2,1fr);display:grid}#quote .quote-actions{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin-top:1rem}#quote .quote-actions .btn{width:100%;padding:.75rem .5rem;font-size:.95rem}#q-addons-field,#q-prop-type-field,#q-sf-field{transition:opacity 0.3s,transform 0.3s,visibility 0.3s}.pdf-modal{border:0;padding:0;width:min(94vw, 550px);max-width:94vw;background:0 0}.pdf-modal[open] .pdf-modal__inner{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 20px 50px rgb(0 0 0 / .25)}.pdf-modal__close{margin-left:auto;border:0;background:0 0;font-size:1.8rem;line-height:1;padding:.3rem .6rem;cursor:pointer;color:var(--muted)}.footer-service-areas a:hover,.pdf-modal__close:hover,.selection-summary b{color:var(--ink)}.cert-grid{gap:1rem}.nachi-badge-grid{gap:1.5rem;justify-items:center;margin-bottom:1rem}.nachi-badge-grid a{display:inline-block;line-height:0}@media (min-width:992px){.cert-grid,.nachi-badge-grid{grid-template-columns:repeat(4,1fr)}.cert-grid{gap:1.5rem}}.locator-map-container{background-color:#f0f6fc;padding:2.5rem 0;border-top:2px solid var(--line)}.locator-map-container h2{font-family:"Playfair Display",serif;font-size:clamp(1.6rem, 2.5vw, 2.2rem);color:var(--ink);margin:0 auto 1.5rem;max-width:70ch}.locator-map-container gmpx-store-locator{height:450px;max-width:1100px;margin:0 auto}.footer-service-areas a{color:var(--muted);text-decoration:none}#local-faq details{border:1px solid var(--line);border-radius:6px;margin:.75rem 0;background:#fff;border-top:1px solid var(--line);padding:.75rem 0}#local-faq summary{justify-content:space-between;align-items:center;list-style:none;cursor:pointer;font-weight:600;color:var(--ink);align-items:center;justify-content:space-between}#local-faq p,.footer-col a,.footer-col p{color:var(--muted)}#local-faq summary::after{content:"▸";font-size:1rem;content:"";width:.6rem;height:.6rem;border-right:2px solid var(--muted);border-bottom:2px solid var(--muted);transform:rotate(-45deg);transition:transform 0.2s;margin-left:.75rem;flex-shrink:0}#local-faq details:last-of-type,.footer-grid{border-bottom:1px solid var(--line)}#local-faq p{line-height:1.5;margin:.5rem 0 0}#local-faq{margin-top:2rem}#local-faq summary::-webkit-details-marker{display:none}#local-faq details[open] summary::after{transform:rotate(45deg)}.site-footer-v2{background:#f0f6fc;color:var(--ink)}.site-footer-v2 .container{max-width:1100px;margin:0 auto;padding:0 1rem}.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;padding-bottom:1.25rem}.footer-col .footer-heading{font-size:1.05rem;font-weight:700;margin:0 0 .75rem}.footer-brand,.footer-links{display:grid;gap:.5rem}.footer-contact a{display:block;margin:.2rem 0}.footer-brand .footer-logo{width:42px;height:auto}.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding-top:1rem}.footer-badges{display:flex;align-items:center}.footer-service-areas{list-style:none;margin:0;padding:0;display:grid;gap:.45rem}@media (min-width:900px){.badge-grid{justify-content:center}.footer-service-areas{grid-template-columns:repeat(2,minmax(0,1fr));gap:.35rem .75rem}}@media (max-width:900px){.nav-toggle{display:inline-block}.primary-nav,.primary-nav .nav-group{display:none}.trust-items{grid-template-columns:repeat(2,minmax(0,1fr))}.about-layout-grid,.promo-wide .promo-inner,.repair-ranges .grid{grid-template-columns:1fr}.promo-wide .promo-inner{text-align:center}.promo-pill{margin:0 auto .4rem;min-width:64px;height:64px}.promo-actions{justify-content:center}.about-sidebar{grid-row-start:1}.promo-slot{min-height:64px}.hero-photo{aspect-ratio:16/9}.footer-grid{grid-template-columns:1fr 1fr}}@media (max-width:600px){.quick-badge{max-width:100px}.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column;align-items:flex-start}}.city-hero{position:relative;margin:0 0 1.75rem;background:#eaf2fb}.city-hero img,.city-hero picture{display:block;width:100%;height:auto}.city-hero .city-hero-caption{position:absolute;left:0;right:0;bottom:0;background:linear-gradient(180deg,#fff0 0,rgb(20 30 50 / .55) 80%);color:#fff;padding:1.25rem 1rem}.city-hero .city-hero-caption .wrap{max-width:1100px;margin:0 auto}.city-hero .city-hero-caption h1{margin:0 0 .25rem;color:#fff}.city-hero .city-hero-caption p{margin:.1rem 0 0;opacity:.95}.site-footer-v2{background-color:#f0f6fc;padding:3rem 0 1.5rem;border-top:1px solid #e4ecf2;color:#555}.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-bottom:2.5rem}.footer-column{display:flex;flex-direction:column}.footer-heading{font-size:1.1rem;font-weight:700;color:var(--ink);margin-bottom:1rem;margin-top:0}.footer-links{display:flex;flex-direction:column;gap:.75rem}.footer-contact-info a,.footer-links a{color:var(--muted);font-weight:600;text-decoration:none;transition:color 0.2s;padding-top:.5rem;padding-bottom:.5rem}.footer-contact-info p{margin:0 0 .75rem;font-weight:600;color:var(--ink)}.footer-contact-info a{display:block;margin-bottom:.75rem}.footer-badges{margin-top:1rem;display:flex;gap:.75rem;align-items:center}.footer-bottom-bar{padding-top:1.5rem;border-top:1px solid #e4ecf2;font-size:.9rem;color:#777}.footer-bottom-bar p{margin:0}.about-hero{margin-bottom:3rem}.about-main-content .card,.team-profile-card{margin-bottom:1.5rem}.about-hero h1{font-size:2.5rem;line-height:1.2;margin-bottom:1rem}.about-layout-grid{display:grid;grid-template-columns:2fr 1fr;gap:2rem}.team-profile-card{background-color:#fff;border:1px solid #e4ecf2;border-radius:8px;padding:1.5rem;box-shadow:0 4px 12px rgb(0 0 0 / .05)}.profile-photo{width:120px;height:120px;border-radius:50%;object-fit:cover;margin:0 auto 1rem;border:3px solid #fff;box-shadow:0 2px 8px rgb(0 0 0 / .1)}.profile-title{font-weight:700;color:var(--primary);margin-top:-.25rem}.team-profile-card h4{font-size:1rem;color:var(--ink);margin-top:1rem}.team-profile-card .svc-points{text-align:left;margin-top:.5rem}.cta-section{padding:2.5rem;margin-top:2rem}.cta-section h2{font-size:1.8rem}.cta-section .btn{margin-top:1rem;font-size:1.1rem;padding:.8rem 2rem}@media (max-width:992px){.footer-grid{grid-template-columns:repeat(2,1fr)}.about-layout-grid{grid-template-columns:1fr}.about-sidebar{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}}.btn-booknow,.primary-nav .btn{color:#fff!important;background-color:var(--accent,#2e75b6)!important}.btn-booknow:hover,.primary-nav .btn:hover{background-color:#1f537f}.ethics ul li{list-style:none;padding:.5em 1em;margin:.5em 0;background:#f5faff;border-left:4px solid #1d4ed8;font-weight:600;color:#1d4ed8;border-radius:4px}.page-toc{display:grid;gap:.4rem;padding:.9rem 1rem}.page-toc .toc{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.5rem .9rem}.page-toc .toc a{text-decoration:none;font-weight:600;color:var(--ink);border:1px solid #e4ecf2;border-radius:999px;padding:.35rem .7rem}.price-card h3 a{color:inherit;text-decoration:none}.price-card .actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.5rem}.price-card .price-from{font-variant-numeric:tabular-nums}.context-toggle{display:inline-flex;border:1px solid #e4ecf2;border-radius:999px;overflow:hidden;margin-bottom:.5rem}.context-toggle button{padding:.3rem .7rem;background:#fff;border:0;font-weight:600;cursor:pointer}.context-toggle button+button{border-left:1px solid #e4ecf2}.context-toggle .is-active{background:#f5f9fc}.addon-inline{display:flex;gap:1rem;flex-wrap:wrap;margin:.6rem 0 .2rem}.addon-checkbox{display:flex;align-items:center;gap:.4rem;font-size:.95rem}#booking-form .row,.booking-grid .row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}#booking-form .addons,.addons,.submit-row{gap:1rem;display:flex}.booking-grid label{display:grid;gap:.25rem}.selection-summary{border:1px solid #e4ecf2;margin-bottom:.8rem}.addons{flex-wrap:wrap}.submit-row{justify-content:space-between;align-items:center;margin-top:.4rem}.total{font-weight:700}#booking-form legend{font-weight:700;color:var(--ink);margin-bottom:.15rem}#booking-form label{display:grid;gap:.25rem;color:var(--ink);font-weight:600}#booking-form input[type="date"],#booking-form input[type="email"],#booking-form input[type="number"],#booking-form input[type="tel"],#booking-form input[type="text"],#booking-form select,#booking-form textarea{width:100%;height:42px;padding:0 .75rem;border:1px solid #cfd6e0;border-radius:10px;font:inherit;background:#fff}#booking-form textarea{height:auto;padding:.6rem .7rem;min-height:110px;resize:vertical}#booking-form .addons{flex-wrap:wrap;margin:.25rem 0 .1rem}#booking-form .addons label{display:flex;align-items:center;gap:.45rem;font-weight:600}.selection-summary{background:#f7fbff;border:1px solid var(--line);padding:.9rem 1rem;border-radius:14px;box-shadow:var(--shadow)}.selection-summary strong{font-weight:800;color:var(--ink)}.selection-summary ul{margin:.4rem 0 0;padding-left:1rem}#booking-form button.btn,button.btn{min-width:9rem;padding:.72rem 1rem;border-radius:999px;background:var(--primary);box-shadow:var(--shadow)}.selection-summary li{margin:.2rem 0;color:var(--muted)}#booking-form .submit-row{display:flex;justify-content:space-between;align-items:center;margin-top:.2rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}#booking-form .submit-row .total{font-weight:700;color:var(--ink)}#booking-form button.btn{color:#fff}#contact.card{padding:1.25rem;border-radius:.75rem;box-shadow:var(--shadow)}#contact>h2{margin:.25rem 0 .4rem;font-family:"Playfair Display",serif}#contact>p.muted{color:var(--muted);margin:0 0 .8rem}button.btn:active{transform:translateY(1px)}button.btn.ghost:hover{background:#f7f9fc}button.btn:disabled{opacity:.6;cursor:not-allowed}.section-header{text-align:left;margin-bottom:2rem}.section-header h2{font-size:2rem;font-weight:700;color:var(--ink,#1d2939);margin:0 0 .5rem;position:relative}.section-header h2::after{content:"";display:block;width:60px;height:3px;background:var(--primary,#05c);margin-top:.4rem;border-radius:2px}.section-header p{max-width:680px;margin:.5rem 0 0;color:var(--muted,#607d99)}#booking-form .submit-row .actions{display:flex;gap:.6rem;flex-wrap:wrap;position:relative;z-index:1}@media (max-width:560px){#service-areas .areas-grid,.trust-items{grid-template-columns:1fr}.trustbar{padding:1rem}.trust-badge{padding:.75rem .9rem}.trust-badge span{font-size:1rem}.hero-creds{gap:.5rem}.cred-badge{width:76px;height:76px}#booking-form .submit-row{flex-direction:column;align-items:stretch}#booking-form .submit-row .total{order:0}#booking-form .submit-row .actions{order:1;display:grid;grid-template-columns:1fr 1fr;gap:.6rem}#booking-form .submit-row .actions .btn{width:100%}}button.btn{appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;border:none;color:#fff;font:inherit;font-weight:700;cursor:pointer}.anchor-nav a,.escrow .badge{color:#174265;font-weight:700}button.btn:hover{filter:brightness(.96)}button.btn.ghost{background:#fff;color:var(--ink);border:1px solid var(--line,#e4ecf2);box-shadow:none}.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}.trustbar--clean{background:0 0;border:0;padding:0}.trustbar--clean .container{max-width:1100px;margin:0 auto;padding:.75rem 1rem}.trustbar-heading{text-align:center;color:#183e61;font-weight:800;font-size:1.1rem;letter-spacing:.2px;margin:.25rem 0 1rem}.trust-grid,.trustbar--clean .trust-grid{grid-auto-rows:1fr;gap:.8rem;list-style:none;margin:0}.trust-grid{display:grid;padding:0;grid-template-columns:repeat(2,minmax(0,1fr))}@media (min-width:720px){.trust-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:980px){.trust-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width:1240px){.trust-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}.trust-card{display:flex;align-items:center;gap:.65rem;background:#fff;border:1px solid #e3ecf6;border-radius:14px;padding:.8rem .9rem;box-shadow:0 6px 18px rgb(11 41 77 / .06);transition:transform 0.12s,box-shadow 0.12s}.trust-card:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgb(11 41 77 / .1)}.trust-ic{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:#eef6fc;color:#183e61;font-size:18px;line-height:1;flex:0 0 34px}.trust-text{display:grid;gap:2px;align-content:center}.trust-title{font-weight:800;color:#183e61;line-height:1.15;font-size:.98rem}.trust-sub{font-size:.9rem;color:#47617a;line-height:1.2}@media (max-width:380px){.trustbar--clean .container{padding:.6rem .7rem}.trust-card{padding:.7rem .75rem}.trust-ic{width:30px;height:30px;font-size:16px}.trust-title{font-size:.95rem}}.trustbar--clean .trust-grid{display:grid!important;padding:0;width:100%;grid-template-columns:repeat(4,minmax(0,1fr))}@media (max-width:979.98px){.trustbar--clean .trust-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (max-width:719.98px){.trustbar--clean .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}.trustbar--clean .trust-grid>li{display:flex!important;min-width:0;white-space:normal!important;flex:none!important}.about-pro .about-grid{display:grid;grid-template-columns:auto 1fr;gap:1.5rem;align-items:start;margin-bottom:1rem}.about-photo-wrapper{flex-shrink:0}.about-photo{display:block;width:140px;height:140px;border-radius:50%;object-fit:cover;border:4px solid #fff;box-shadow:0 8px 24px rgb(13 59 102 / .15)}@media (max-width:768px){.footer-grid{grid-template-columns:1fr;text-align:center}.footer-badges,.footer-contact-info,.footer-links{align-items:center;justify-content:center}.footer-contact-info a{display:inline-block;margin:0 .5rem;padding-left:.5rem;padding-right:.5rem}.about-hero h1{font-size:2rem}.about-sidebar{grid-template-columns:1fr}.about-pro .about-grid{grid-template-columns:1fr;text-align:center;gap:1rem}.about-photo-wrapper{margin:0 auto}.about-pro .about-header{flex-direction:column;align-items:center;gap:.75rem}.about-pro .about-meta{justify-content:center}}.escrow .hero{margin-top:calc(var(--header-offset) + 12px);padding:clamp(20px, 3.2vw, 28px) clamp(18px, 3.6vw, 24px);border-radius:22px;background:linear-gradient(180deg,#eaf4ff,#f7fbff);border:1px solid #e4ecf2;box-shadow:0 12px 28px rgb(0 0 0 / .08);position:relative;z-index:0}.escrow .hero h1{line-height:1.15;letter-spacing:-.2px;margin:0 0 .5rem}.escrow .hero .lead{margin:.1rem 0 0;line-height:1.65}.escrow .badges{display:flex;flex-wrap:wrap;gap:.55rem .55rem;margin-top:.9rem;align-items:center;align-content:flex-start;position:relative;z-index:1;clear:both}.escrow .badge{display:inline-flex;align-items:center;gap:.4rem;white-space:nowrap;padding:.4rem .65rem;border-radius:999px;font-size:.9rem;line-height:1.1;background:linear-gradient(180deg,#f3f8ff,#eef6fc);border:1px solid #cfe2f5;box-shadow:0 3px 8px rgb(46 117 182 / .12)}.escrow .badge svg{flex:0 0 auto;display:block}.escrow .badges .badge{float:none!important;position:relative!important}.escrow .cta{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1rem}.escrow .btn{background:#2e75b6;color:#fff;text-decoration:none;padding:.78rem 1rem;border-radius:12px;font-weight:800;letter-spacing:.1px;box-shadow:0 8px 18px rgb(46 117 182 / .35);transition:transform 0.08s,box-shadow 0.12s,background 0.12s}.escrow .btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgb(46 117 182 / .35)}.escrow .btn.ghost{background:#f0f6ff;color:#174265;border:1px solid #a8c8e6;box-shadow:0 6px 14px rgb(46 117 182 / .18)}.anchor-nav{position:sticky;top:calc(var(--header-offset));z-index:40;background:rgb(245 250 255 / .9);backdrop-filter:saturate(120%) blur(6px);border:1px solid #e4ecf2;border-radius:14px;box-shadow:0 10px 22px rgb(0 0 0 / .06);margin:.4rem auto 1.2rem;padding:.4rem;display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;justify-content:center;max-width:1100px}.anchor-nav a{display:inline-block;padding:.45rem .7rem;border-radius:10px;text-decoration:none;border:1px solid #fff0}.anchor-nav a:hover{background:#eef6fc;border-color:#cfe2f5}.anchor-nav a.book{background:#2e75b6;color:#fff;border-color:#fff0}#addons,#faq,#overview,#process,#what-we-inspect{scroll-margin-top:calc(var(--header-offset) + 12px)}@media (max-width:1000px){.escrow .grid{grid-template-columns:1fr!important}}@media (max-width:720px){#booking-form .row,.booking-grid .row,.nachi-edu{grid-template-columns:1fr}.escrow .hero{padding:clamp(18px, 4vw, 24px);margin-top:calc(var(--header-offset) + 8px)}.escrow .cta .btn{width:100%;text-align:center}.anchor-nav{top:calc(var(--header-offset));margin:.2rem auto 1rem}}@media (max-width:420px){.escrow .badge{font-size:.85rem;padding:.34rem .6rem}.escrow .hero h1{font-size:1.75rem}}.post-hero-image{display:block;max-width:700px;margin:0 auto 2rem auto;border-radius:14px;overflow:hidden;box-shadow:0 8px 24px rgb(13 59 102 / .1)}.post-hero-image img{width:100%;height:auto;display:block}@media (max-width:900px){.site-header .brand-text{display:none}.header-inner{position:relative;justify-content:center}.site-header .brand{gap:0}.site-header .nav-toggle{position:absolute;right:clamp(16px, 4.5vw, 28px);top:50%;transform:translateY(-50%)}}@media (max-width:900px){.site-header .brand-text{display:none}.header-inner{position:relative;justify-content:center;padding-top:.5rem;padding-bottom:.5rem}.site-header .brand{gap:0}.site-header .nav-toggle{position:absolute;right:clamp(16px, 4.5vw, 28px);top:50%;transform:translateY(-50%)}}@media (max-width:900px){.site-header .brand-text{display:none}.header-inner{position:relative;justify-content:center;padding-top:.5rem;padding-bottom:.5rem}.site-header .brand{gap:0}.site-header .nav-toggle{position:absolute;right:clamp(16px, 4.5vw, 28px);top:50%;transform:translateY(-50%)}.hero{padding-top:.5rem}}:root{--logo-h:180px}.brand-logo,.brand-logo img{height:var(--logo-h)!important;width:auto!important;max-height:none!important;display:block;margin:0 auto!important}.site-header .container.header-inner,.site-header .header-inner,.site-header .brand{padding-block:10px!important;min-height:auto!important;height:auto!important;display:flex;align-items:center;justify-content:center}:root{--cred-gap:0.9rem}:root{--logo-h:140px}.brand-logo,.brand-logo img{height:var(--logo-h)!important;width:auto!important;max-height:none!important;display:block;margin:0 auto}.site-header .header-inner{padding-block:8px!important;min-height:auto!important;height:auto!important;display:flex;align-items:center;justify-content:center}:root{--header-offset:0px}.escrow .hero{margin-top:0!important}#promo-slot:empty,.promo-slot:empty{display:none!important;min-height:0!important}@media (max-width:900px){.header-inner{padding-block:8px!important}}:root{--cred-gap:0.9rem;--logo-h:140px;--header-offset:0px}.brand-logo,.brand-logo img{height:var(--logo-h)!important;width:auto!important;max-height:none!important;display:block;margin:0 auto}.site-header .header-inner{padding-block:8px!important;min-height:auto!important;height:auto!important;display:flex;align-items:center;justify-content:center}.escrow .hero{margin-top:0!important}#promo-slot:empty,.promo-slot:empty{display:none!important;min-height:0!important}@media (max-width:900px){.site-header .brand-text{display:none}.header-inner{position:relative;justify-content:center;padding-block:8px!important}.site-header .brand{gap:0}.site-header .nav-toggle{position:absolute;right:clamp(16px, 4.5vw, 28px);top:50%;transform:translateY(-50%)}.hero{padding-top:0.5rem!important}}@keyframes slideInFromLeft{from{transform:translateX(-50px);opacity:0}to{transform:translateX(0);opacity:1}}@media (max-width:900px){.brand-logo{animation:slideInFromLeft 0.7s ease-out 0.2s;animation-fill-mode:backwards}.site-header .header-inner{padding-block:8px!important}.brand-logo,.brand-logo img{height:var(--logo-h)!important}.site-header .header-inner,.brand-logo,.brand-logo img{transition:padding-block 0.3s ease,height 0.3s ease}body.scrolled .site-header .header-inner{padding-block:4px!important}body.scrolled .brand-logo,body.scrolled .brand-logo img{height:44px!important}}.site-header{background:#fff;backdrop-filter:saturate(130%) blur(6px)}.hero::after{background:none}.reveal{opacity:0;transform:translateY(20px);transition:opacity 0.6s ease-out,transform 0.6s ease-out}.reveal.in{opacity:1;transform:translateY(0)}.reveal-grow{transform:translateY(20px) scale(.95);transition:opacity 0.6s ease-out,transform 0.6s ease-out}.reveal-grow.in{opacity:1;transform:translateY(0) scale(1)}.reveal.in:nth-child(2){transition-delay:0.1s}.reveal.in:nth-child(3){transition-delay:0.2s}.reveal.in:nth-child(4){transition-delay:0.3s}.addons .addon-reco{position:relative}.addons .addon-pill{position:absolute;right:0;top:-.5rem;padding:.08rem .45rem;border-radius:999px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#b91c1c;background:#fee2e2}.booking-modal{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;max-width:500px;margin:0;border:0;border-radius:var(--radius,14px);padding:0;background:var(--paper,#ffffff);box-shadow:0 20px 50px rgb(13 59 102 / .25);z-index:1000;opacity:0;transform:translate(-50%,-45%) scale(.95);transition:opacity 0.2s ease-out,transform 0.2s ease-out,display 0.2s allow-discrete}.booking-modal::backdrop{background:rgb(13 59 102 / .6);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);opacity:0;transition:opacity 0.2s ease-out,backdrop-filter 0.2s ease-out,-webkit-backdrop-filter 0.2s ease-out,display 0.2s allow-discrete}.booking-modal[open]{opacity:1;transform:translate(-50%,-50%) scale(1)}.booking-modal[open]::backdrop{opacity:1}.booking-modal.is-closing{opacity:0;transform:translate(-50%,-45%) scale(.95)}.booking-modal.is-closing::backdrop{opacity:0}.booking-modal-content{padding:clamp(1.5rem, 4vw, 2rem);position:relative}.booking-modal h2{font-family:"Playfair Display",serif;font-size:clamp(1.6rem, 2.5vw, 2.2rem);color:var(--ink,#0d3b66);margin:0 0 .5rem;text-align:center}.booking-modal p{color:var(--muted,#4b5b6b);line-height:1.6;text-align:center;margin:0 0 1.5rem;font-size:.95rem}.booking-modal-close{position:absolute;top:10px;right:10px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;font-size:2rem;line-height:1;font-weight:300;color:var(--muted,#4b5b6b);background:#fff0;border:0;border-radius:50%;cursor:pointer;transition:background-color 0.2s,color 0.2s}.booking-modal-close:hover{background-color:#f0f6fc;color:var(--ink,#0d3b66)}.modal-form{display:grid;gap:1rem}.modal-form .field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.modal-form .field label{display:block;font-weight:600;font-size:.9rem;margin-bottom:.35rem;color:var(--ink,#0d3b66)}.modal-form .field input,.modal-form .field select{width:100%;height:44px;padding:0 .85rem;border:1px solid #cfd6e0;border-radius:10px;font:inherit;font-size:.95rem;background:#fff;transition:border-color 0.2s,box-shadow 0.2s}.modal-form .field input:focus,.modal-form .field select:focus{outline:0;border-color:var(--primary,#1e6bb8);box-shadow:0 0 0 3px var(--ring,rgb(30 107 184 / .15))}.modal-form .form-actions{margin-top:.5rem}.modal-form .btn{width:100%;padding:.85rem 1rem;font-size:1.05rem;font-weight:700}.modal-form .form-note{font-size:.85rem;text-align:center;margin:.25rem 0 0;color:var(--muted,#4b5b6b)}@media (max-width:550px){.booking-modal{width:92vw;max-width:92vw}.modal-form .field-row{grid-template-columns:1fr;gap:1rem}.booking-modal-content{padding:1.5rem 1.25rem}.booking-modal h2{font-size:1.5rem}.modal-form .field textarea{width:100%;padding:.75rem .85rem;border:1px solid #cfd6e0;border-radius:10px;font:inherit;font-size:.95rem;background:#fff;transition:border-color 0.2s,box-shadow 0.2s;resize:vertical;min-height:80px}.modal-form .field textarea:focus{outline:0;border-color:var(--primary,#1e6bb8);box-shadow:0 0 0 3px var(--ring,rgb(30 107 184 / .15))}#reviews{background:linear-gradient(180deg,#f7fbff,#f0f6fc);border-top:1px solid var(--line,#e4ecf2);border-bottom:1px solid var(--line,#e4ecf2)}.review-showcase{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:flex-start}.featured-review{background-color:var(--paper);border:1px solid #cfe2f5;border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);display:flex;flex-direction:column}.review-stars{font-size:1.5rem;color:#ffc107;margin-bottom:1rem}.review-stars svg{width:24px;height:24px;fill:currentColor}.featured-review p{font-size:1.15rem;line-height:1.6;flex-grow:1;color:var(--ink);margin:0}.featured-review cite{font-style:normal;font-weight:600;margin-top:1.5rem;display:block;color:var(--ink)}.featured-review .review-source{display:block;font-weight:400;font-size:.9rem;color:var(--muted)}.secondary-reviews-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}.secondary-review{margin:0;background:#fff;border:1px solid var(--line,#e4ecf2);border-radius:var(--radius);padding:1.25rem 1.5rem;box-shadow:0 4px 12px rgb(13 59 102 / .05)}.secondary-review p{margin:0 0 .75rem;color:var(--ink);font-weight:500}.secondary-review cite{font-style:normal;font-weight:700;font-size:.95rem;color:var(--muted)}@media (max-width:900px){.review-showcase{grid-template-columns:1fr}.secondary-reviews-grid{grid-template-columns:1fr 1fr}}@media (max-width:600px){.secondary-reviews-grid{grid-template-columns:1fr}}#why-us-pledge{padding-bottom:3.5rem}#why-us-pledge .section-header h2::after{margin-left:auto;margin-right:auto}.pledge-card{background:var(--paper,#fff);border:1px solid var(--line,#e4ecf2);border-radius:20px;padding:clamp(1.5rem, 4vw, 3rem);box-shadow:0 20px 45px rgb(13 59 102 / .12);margin-top:2.5rem}.pledge-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.pledge-item{text-align:center;display:flex;flex-direction:column;align-items:center}.pledge-icon{background-color:#eaf4ff;color:var(--primary);border-radius:50%;width:60px;height:60px;min-width:60px;display:inline-flex;align-items:center;justify-content:center;border:1px solid #cfe2f5;box-shadow:0 4px 10px rgb(30 107 184 / .1);margin-bottom:1rem}.pledge-icon svg{width:28px;height:28px}.pledge-item h3{font-family:"Playfair Display",serif;font-size:1.4rem;margin:0 0 .5rem;color:var(--ink)}.pledge-item p{margin:0;color:var(--muted);line-height:1.65;font-size:.95rem}@media (max-width:900px){.pledge-grid{grid-template-columns:1fr;gap:2.5rem}.pledge-item{flex-direction:row;text-align:left;align-items:flex-start}}}.hero{background:linear-gradient(135deg,#f8faff 0%,#eef6fc 100%)!important;position:relative;overflow:hidden;padding-top:0!important;margin-top:0!important}.hero::after{display:none!important}#quote.card{box-shadow:0 20px 50px rgb(13 59 102 / .15)!important;border:1px solid #cfe2f5!important;transform:translateY(-5px)}.addons .addon-pill{position:absolute;right:0;top:-.5rem;padding:.15rem 0.5rem!important;border-radius:999px;font-size:.7rem;font-weight:800!important;text-transform:uppercase;letter-spacing:.05em;color:#ffffff!important;background:#d97706!important;box-shadow:0 2px 8px rgb(217 119 6 / .4)!important;animation:pulse-soft 2s infinite}@keyframes pulse-soft{0%{transform:scale(1)}50%{transform:scale(1.05)}100%{transform:scale(1)}}.btn{transition:all 0.3s ease!important}.btn:hover{transform:translateY(-3px)!important;box-shadow:0 8px 20px rgb(30 107 184 / .3)!important;filter:brightness(1.05)!important}.btn.ghost:hover{box-shadow:0 8px 20px rgb(30 107 184 / .1)!important;background:#f0f6fc!important}.hero-creds .cred-badge{background:#ffffff!important;border:2px solid #e4ecf2!important;border-radius:50%!important;padding:8px!important;box-shadow:0 4px 12px rgb(13 59 102 / .08)!important;overflow:hidden;display:flex;align-items:center;justify-content:center}.hero-creds .cred-badge img{object-fit:contain!important;transform:scale(1.1)}.services-grid{display:flex!important;flex-wrap:wrap;justify-content:center;gap:1.8rem;max-width:1150px;margin:0 auto}.service-card{flex:1 1 300px;max-width:340px;width:100%;display:flex;flex-direction:column;align-items:center}.service-card .quick-badge-wrap{margin-top:auto;padding-top:1rem}#service-areas .areas-grid{display:flex!important;flex-wrap:wrap;justify-content:center;gap:1.25rem}#service-areas .area-card{flex:1 1 240px;max-width:260px;width:100%}.feature-checklist{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem 1.5rem;list-style:none;padding:0;margin:2rem auto 3rem auto;max-width:1000px;font-weight:600;color:var(--primary)}.feature-checklist a{color:inherit;text-decoration:underline;text-decoration-color:#cfe2f5;transition:color 0.2s,text-decoration-color 0.2s}.feature-checklist a:hover{color:var(--ink);text-decoration-color:var(--primary)}@media (max-width:900px){.feature-checklist{grid-template-columns:repeat(2,1fr)}}@media (max-width:600px){.feature-checklist{grid-template-columns:1fr;padding-left:.5rem;padding-right:.5rem}}.reviews-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:2rem}.review-card-pro{background:#fff;border:1px solid #e4ecf2;border-radius:16px;padding:1.5rem;display:flex;flex-direction:column;box-shadow:0 4px 12px rgb(13 59 102 / .05);transition:transform 0.3s ease}.review-card-pro:hover{transform:translateY(-5px);border-color:var(--primary)}.review-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.stars{color:#f2b01e;font-size:1.1rem;letter-spacing:2px}.verified-tag{font-size:.7rem;font-weight:800;text-transform:uppercase;color:#166534;background:#f0fdf4;padding:2px 8px;border-radius:999px}.review-text{font-size:.95rem;line-height:1.6;color:var(--ink);font-style:italic;flex-grow:1;margin-bottom:1.5rem}.reviewer-info{display:flex;align-items:center;gap:.75rem;border-top:1px solid #f0f4f8;padding-top:1rem}.reviewer-initial{width:40px;height:40px;background:var(--primary);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700}.reviewer-info cite{font-style:normal;line-height:1.2;font-size:.95rem;color:var(--muted)}.reviewer-info cite strong{color:var(--ink)}.reviews-footer{text-align:center;margin-top:2rem}.site-footer-v3{background-color:#f8faff;color:var(--muted);padding:4rem 0 2rem;border-top:1px solid #e4ecf2}.footer-top{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}.footer-col{flex:1 1 180px}.brand-col{flex:1 1 300px}.footer-logo{display:flex;align-items:center;gap:.75rem;color:var(--ink);font-size:1.4rem;margin-bottom:1.25rem;text-decoration:none;font-weight:800}.footer-tagline{font-size:.95rem;line-height:1.6;color:var(--muted);margin-bottom:1.5rem}.contact-link{display:flex;align-items:center;gap:.6rem;color:var(--ink);margin-bottom:.75rem;font-weight:700;text-decoration:none}.footer-svg{width:20px;height:20px;color:var(--primary)}.footer-col h4{font-family:"Playfair Display",serif;color:var(--ink);margin-bottom:1.5rem;font-size:1.15rem;font-weight:700;margin-top:0}.footer-nav a{display:block;color:var(--muted);padding:.4rem 0;transition:color 0.2s;font-size:.95rem;text-decoration:none}.footer-nav a:hover{color:var(--primary);text-decoration:underline}.footer-bottom{border-top:1px solid #e4ecf2;padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.5rem}.footer-badges{display:flex;gap:1.5rem;align-items:center}.footer-badges img{height:48px;width:auto}.copyright{font-size:.85rem;color:#8899a6;margin:0}.copyright a{color:inherit;text-decoration:underline}@media (max-width:768px){.site-footer-v3{padding:3rem 0 1.5rem}.footer-top{gap:2rem;flex-direction:column}.footer-bottom{flex-direction:column;text-align:center}.footer-logo,.brand-col{justify-content:center;text-align:center}.contact-link{justify-content:center}.footer-col h4{margin-bottom:1rem;border-bottom:1px solid #e4ecf2;padding-bottom:.5rem;text-align:center}.footer-nav a{text-align:center;padding:.6rem 0}}.sticky-mobile-bar{position:fixed;left:0;right:0;bottom:0;z-index:999;display:none;gap:.5rem;padding:.6rem .8rem;background:rgb(255 255 255 / .98);border-top:1px solid #e4ecf2;backdrop-filter:saturate(1.2) blur(6px)}@media (max-width:880px){.sticky-mobile-bar{display:flex}}.sticky-mobile-bar a{flex:1 1 0%;font-weight:700;padding:.7rem .6rem;border-radius:10px;text-align:center;text-decoration:none;background:#f0f7ff;color:var(--primary-2);border:1px solid #cfe2f5}.sticky-mobile-bar a.primary{background:var(--primary);color:#fff;border-color:var(--primary)}@media (max-width:768px){.about-pro{padding-left:1.25rem!important;padding-right:1.25rem!important}.about-edge,.about-pro p,.about-pro .about-title,.about-pro .about-stats{padding-left:.5rem;padding-right:.5rem}.about-story .a{padding:1rem .5rem}}.area-card .area-media img,.post-card .post-card-image{transition:transform 0.6s cubic-bezier(.25,.46,.45,.94)!important}.area-card:hover .area-media img,.post-card:hover .post-card-image{transform:scale(1.08)!important}.sticky-mobile-bar a.primary{animation:pulse-soft 2.5s infinite;box-shadow:0 0 15px rgb(30 107 184 / .4)}.faq-pro__item{transition:background-color 0.2s ease,box-shadow 0.2s ease!important}.faq-pro__item:hover{background-color:#f8faff!important;box-shadow:0 10px 25px rgb(13 59 102 / .08)!important}.faq-pro__icon{transition:background-color 0.2s ease!important}.faq-pro__item:hover .faq-pro__icon{background-color:#dbe7f5!important}@media (max-width:880px){.sticky-mobile-bar{padding:.75rem .75rem calc(0.75rem + env(safe-area-inset-bottom))!important;border-top-left-radius:24px;border-top-right-radius:24px;box-shadow:0 -10px 30px rgb(13 59 102 / .15)!important;background:rgb(255 255 255 / .98)!important}.sticky-mobile-bar a{font-size:.95rem;padding:.8rem 0.5rem!important}}.addon-options label{padding:1rem 1.2rem!important;margin-bottom:.35rem;transition:background-color 0.2s ease}.addon-options input[type="checkbox"]{width:22px;height:22px;cursor:pointer;accent-color:var(--primary)}@media (max-width:768px){.mobile-nav{padding:1rem!important;border-bottom-left-radius:24px!important;border-bottom-right-radius:24px!important}.mobile-nav a:not(.btn){padding:1.1rem 1.25rem!important;border-bottom:1px solid #f0f4f8;border-radius:8px!important}.mobile-nav a:not(.btn):nth-last-of-type(2){border-bottom:none}.mobile-nav a:not(.btn):hover{background-color:#f8faff!important;color:var(--primary)!important}.mobile-nav a.btn{margin-top:1rem;text-align:center;font-size:1.1rem;padding:1rem!important}}@media (max-width:768px){.hero-grid{padding-top:0.5rem!important;gap:1.5rem!important}.hero-content h1{font-size:clamp(1.8rem, 8vw, 2.2rem)!important;line-height:1.2!important;margin-bottom:1rem!important}.hero-content p.lead{font-size:1rem!important;margin-bottom:1rem!important}}@media (max-width:768px){.about-cta{display:flex;flex-direction:column;gap:.75rem;margin-top:1.5rem!important}.about-cta .btn{width:100%;margin:0!important;text-align:center}.about-story summary{font-size:1.05rem;padding:.5rem 0}}.scroll-indicator{display:flex;flex-direction:column;align-items:center;gap:.5rem;margin-top:3rem;opacity:.6;animation:bounce-soft 2s infinite}.scroll-mouse{width:24px;height:36px;border:2px solid var(--primary);border-radius:12px;position:relative}.scroll-wheel{width:4px;height:8px;background:var(--primary);border-radius:2px;position:absolute;top:6px;left:50%;transform:translateX(-50%);animation:scroll-wheel 2s infinite}@keyframes scroll-wheel{0%{top:6px;opacity:1}100%{top:16px;opacity:0}}@keyframes bounce-soft{0%,20%,50%,80%,100%{transform:translateY(0)}40%{transform:translateY(-10px)}60%{transform:translateY(-5px)}}.urgency-badge{display:inline-flex;align-items:center;gap:8px;background:#f0fdf4;border:1px solid #bbf7d0;color:#166534;padding:4px 12px;border-radius:999px;font-size:.8rem;font-weight:700;margin-bottom:1rem}.urgency-dot{width:8px;height:8px;background:#22c55e;border-radius:50%;animation:pulse-green 2s infinite}@keyframes pulse-green{0%{box-shadow:0 0 0 0 rgb(34 197 94 / .7)}70%{box-shadow:0 0 0 6px #fff0}100%{box-shadow:0 0 0 0 #fff0}}.hotspot{position:absolute;width:24px;height:24px;transform:translate(-50%,-50%);cursor:pointer;z-index:10}.hotspot-dot{width:16px;height:16px;background:var(--primary);border:2px solid #fff;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 0 0 rgb(30 107 184 / .4);animation:pulse-hotspot 2s infinite}.hotspot-tooltip{position:absolute;bottom:150%;left:50%;transform:translateX(-50%) translateY(10px);background:#0b1b2a;color:#fff;padding:.75rem 1rem;border-radius:8px;font-size:.85rem;width:max-content;max-width:220px;line-height:1.4;opacity:0;visibility:hidden;transition:all 0.3s cubic-bezier(.25,.46,.45,.94);box-shadow:0 10px 20px rgb(0 0 0 / .15);pointer-events:none}.hotspot-tooltip::after{content:'';position:absolute;top:100%;left:50%;transform:translateX(-50%);border-width:6px;border-style:solid;border-color:#0b1b2a #fff0 #fff0 #fff0}.hotspot:hover .hotspot-tooltip{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}@keyframes pulse-hotspot{0%{box-shadow:0 0 0 0 rgb(30 107 184 / .7)}70%{box-shadow:0 0 0 10px #fff0}100%{box-shadow:0 0 0 0 #fff0}}.process-timeline{display:flex;justify-content:space-between;gap:2rem;position:relative;max-width:1000px;margin:0 auto}.process-step{flex:1;text-align:center;position:relative;z-index:2}.step-number{width:60px;height:60px;background:#fff;border:3px solid var(--primary);color:var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:800;margin:0 auto 1.25rem;position:relative;box-shadow:0 4px 15px rgb(30 107 184 / .15)}.process-step h3{font-size:1.2rem;margin-bottom:.5rem;color:var(--ink)}.process-step p{font-size:.95rem;color:var(--muted);line-height:1.5}@media (min-width:769px){.process-timeline::before{content:'';position:absolute;top:30px;left:10%;right:10%;height:3px;background:#cfe2f5;z-index:1}}@media (max-width:768px){.process-timeline{flex-direction:column;gap:3rem}.process-step::after{content:'↓';display:block;font-size:1.5rem;color:#cfe2f5;margin-top:2rem}.process-step:last-child::after{display:none}}#quote select,#quote input[type="number"]{height:auto!important;padding:.85rem 1rem!important;border-radius:8px!important;border:1px solid #cfd6e0!important;background-color:#fdfdfd!important;font-size:1rem;transition:all 0.2s ease}#quote select:focus,#quote input[type="number"]:focus{border-color:var(--primary)!important;background-color:#ffffff!important;box-shadow:0 0 0 4px rgb(30 107 184 / .15)!important;outline:none!important}.price-display-wrapper{background:linear-gradient(180deg,#f8faff 0%,#f0f6fc 100%);border:1px solid #cfe2f5;border-radius:12px;padding:1.25rem 1rem;margin:1.5rem 0 1.25rem;text-align:center;box-shadow:inset 0 2px 4px rgb(255 255 255 / .8)}#quote #q-price{color:var(--ink)!important;font-size:2.5rem!important;margin-top:0!important;letter-spacing:-1px}#quote #q-notes{margin-top:0.5rem!important;margin-bottom:0!important;font-size:0.85rem!important}.buy-back-banner{background:linear-gradient(135deg,#0b1b2a 0%,#0d3b66 100%);border-radius:16px;padding:clamp(2rem, 4vw, 3rem);display:flex;align-items:center;gap:2.5rem;box-shadow:0 15px 35px rgb(13 59 102 / .2);position:relative;overflow:hidden}.buy-back-bg-accent{position:absolute;right:-5%;top:-20%;opacity:.05;pointer-events:none;color:#fff}.buy-back-badge{flex:0 0 160px;z-index:1}.buy-back-badge img{width:100%;filter:drop-shadow(0 8px 16px rgb(0 0 0 / .4));transition:transform 0.3s ease}.buy-back-badge a:hover img{transform:scale(1.05)}.buy-back-content{flex:1 1 0%;z-index:1;color:#fff}.buy-back-content h2{color:#fff;font-size:clamp(1.6rem, 3vw, 2.2rem);margin-top:0;margin-bottom:.75rem;line-height:1.2}.buy-back-content p{color:#e0f0ff;font-size:1.05rem;line-height:1.6;margin-bottom:1.25rem}.buy-back-checks{display:flex;gap:1.5rem;align-items:center;flex-wrap:wrap}.buy-back-checks span{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#4db6ff}@media (max-width:768px){.buy-back-banner{flex-direction:column;text-align:center;padding:2rem 1.25rem;gap:1.5rem}.buy-back-badge{flex:0 0 auto;max-width:140px;margin:0 auto}.buy-back-content h2{font-size:1.6rem}.buy-back-content p{font-size:.95rem}.buy-back-checks{justify-content:center;gap:1rem}.buy-back-bg-accent{right:50%;transform:translateX(50%);top:-10%}}.hero::before{content:'';position:absolute;width:800px;height:800px;background:radial-gradient(circle,rgb(30 107 184 / .05) 0%,#fff0 70%);top:-200px;right:-150px;border-radius:50%;z-index:0;pointer-events:none;animation:pulse-glow 8s infinite alternate ease-in-out}@keyframes pulse-glow{0%{transform:scale(1) translate(0,0);opacity:.6}100%{transform:scale(1.1) translate(-30px,30px);opacity:1}}.hero-grid{position:relative;z-index:1}::selection{background-color:rgb(30 107 184 / .2);color:var(--ink)}::-webkit-scrollbar{width:12px}::-webkit-scrollbar-track{background:#f8faff}::-webkit-scrollbar-thumb{background:#cfd6e0;border-radius:10px;border:3px solid #f8faff}::-webkit-scrollbar-thumb:hover{background:#a8c8e6}.nav-toggle{display:none;flex-direction:column;justify-content:space-around;width:30px;height:24px;background:transparent!important;border:none;cursor:pointer;padding:0!important;z-index:200}.hamburger-line{width:30px;height:3px;background:var(--ink);border-radius:10px;transition:all 0.3s cubic-bezier(.25,.46,.45,.94);position:relative;transform-origin:1px}body.nav-open .hamburger-line:nth-child(1){transform:rotate(45deg)}body.nav-open .hamburger-line:nth-child(2){opacity:0;transform:translateX(15px)}body.nav-open .hamburger-line:nth-child(3){transform:rotate(-45deg)}@media (max-width:900px){.nav-toggle{display:flex!important}}.site-header{transition:all 0.4s cubic-bezier(.25,.46,.45,.94)!important;border-bottom:1px solid #fff0}body.scrolled .site-header{top:15px!important;max-width:1100px!important;margin:0 auto!important;border-radius:999px!important;background:rgb(255 255 255 / .92)!important;box-shadow:0 15px 40px rgb(13 59 102 / .12),0 2px 10px rgb(13 59 102 / .05)!important;border:1px solid rgb(255 255 255 / .8)!important}body.scrolled .brand-logo{transform:scale(.9);transition:transform 0.4s ease}@media (max-width:900px){body.scrolled .site-header{top:10px!important;width:calc(100% - 20px)!important;border-radius:24px!important}}.btn:not(.ghost){position:relative;overflow:hidden}.btn:not(.ghost)::after{content:'';position:absolute;top:0;left:-150%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgb(255 255 255 / .4),transparent);transform:skewX(-25deg);animation:shimmer-sweep 5s infinite cubic-bezier(.25,.46,.45,.94)}@keyframes shimmer-sweep{0%{left:-150%}15%{left:150%}100%{left:150%}}.card,.service-card,.review-card-pro,.why-card-pro{transition:transform 0.5s cubic-bezier(.25,.46,.45,.94),box-shadow 0.5s cubic-bezier(.25,.46,.45,.94)!important;will-change:transform,box-shadow}.card:hover,.service-card:hover,.review-card-pro:hover,.why-card-pro:hover{transform:translateY(-6px) scale(1.01)!important;box-shadow:0 30px 60px rgb(13 59 102 / .12),0 8px 20px rgb(13 59 102 / .06)!important}#quote.card:hover{transform:translateY(-5px) scale(1)!important}.mobile-scrim{background:rgb(11 27 42 / .5)!important;backdrop-filter:blur(2px)!important;-webkit-backdrop-filter:blur(2px)!important}@media (max-width:900px){.mobile-nav{top:50%!important;bottom:auto!important;left:50%!important;right:auto!important;width:92vw!important;max-width:400px!important;max-height:90vh!important;border-radius:16px!important;border:1px solid #cfe2f5;box-shadow:0 20px 50px rgb(13 59 102 / .25)!important;transform:translate(-50%,-45%) scale(.95)!important;opacity:0;visibility:hidden;transition:all 0.3s cubic-bezier(.25,.46,.45,.94)!important}body.nav-open .mobile-nav{transform:translate(-50%,-50%) scale(1)!important;opacity:1;visibility:visible}}.hero-cta{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;gap:1rem;margin-top:1.5rem;margin-bottom:1.5rem}html{scroll-behavior:smooth!important}.primary-nav a:not(.btn){position:relative;text-decoration:none;padding-bottom:4px}.primary-nav a:not(.btn)::after{content:'';position:absolute;width:0;height:2px;bottom:0;left:50%;background-color:var(--primary);transition:all 0.3s cubic-bezier(.25,.46,.45,.94);transform:translateX(-50%);border-radius:2px}.primary-nav a:not(.btn):hover::after{width:100%}.site-header{overflow:visible!important}#scroll-progress{position:fixed;top:0;left:0;width:0%;height:3px;background:linear-gradient(90deg,#1e6bb8,#4db6ff);z-index:9999;transition:width 0.1s ease-out;border-top-right-radius:3px;border-bottom-right-radius:3px}@keyframes price-pop{0%{transform:scale(1);color:var(--primary)}50%{transform:scale(1.1);color:#16a34a}100%{transform:scale(1);color:var(--ink)}}.price-update-anim{animation:price-pop 0.4s cubic-bezier(.25,.46,.45,.94)}body{transition:opacity 0.3s ease-in-out}.premium-trust-section{background-color:#f8faff;border-top:1px solid #e4ecf2;border-bottom:1px solid #e4ecf2;padding-bottom:0!important;overflow:hidden}.trust-stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-bottom:3.5rem}.trust-stat-card{background:#fff;border:1px solid #cfe2f5;border-radius:16px;padding:2rem 1.5rem;text-align:center;box-shadow:0 10px 30px rgb(13 59 102 / .05);transition:transform 0.4s cubic-bezier(.25,.46,.45,.94),box-shadow 0.4s cubic-bezier(.25,.46,.45,.94)}.trust-stat-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgb(13 59 102 / .1);border-color:var(--primary)}.trust-stat-card .stat-value{font-family:'Playfair Display',serif;font-size:3rem;font-weight:700;line-height:1;margin-bottom:.5rem;display:flex;justify-content:center;align-items:center;gap:.5rem}.trust-stat-card .stat-label{font-size:.95rem;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.5px}.neighborhood-marquee-wrapper{background:#fff;border-top:1px solid #e4ecf2;padding:1.25rem 0;position:relative;box-shadow:inset 0 5px 15px rgb(0 0 0 / .02)}.neighborhood-marquee-wrapper::before,.neighborhood-marquee-wrapper::after{content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none}.neighborhood-marquee-wrapper::before{left:0;background:linear-gradient(to right,#ffffff,transparent)}.neighborhood-marquee-wrapper::after{right:0;background:linear-gradient(to left,#ffffff,transparent)}.neighborhood-marquee{display:flex;overflow:hidden;user-select:none}.marquee-track{display:flex;flex-shrink:0;gap:2.5rem;padding-right:2.5rem;animation:scroll-horizontal 30s linear infinite}.neighborhood-marquee:hover .marquee-track{animation-play-state:paused}.marquee-track span{font-size:1.1rem;font-weight:700;color:#1e6bb8;background:#f0f6fc;border:1px solid #cfe2f5;padding:.5rem 1.25rem;border-radius:999px;white-space:nowrap;transition:background 0.3s,color 0.3s}.marquee-track span:hover{background:#1e6bb8;color:#fff}@keyframes scroll-horizontal{from{transform:translateX(0)}to{transform:translateX(-50%)}}@media (max-width:768px){.trust-stat-card .stat-value{font-size:2.5rem}.marquee-track span{font-size:.95rem;padding:.4rem 1rem}}.neighborhood-marquee-wrapper{max-width:1100px;margin:0 auto;background:#fff0;padding:1.5rem 1rem 0;position:relative}.neighborhood-marquee-wrapper::before,.neighborhood-marquee-wrapper::after{content:'';position:absolute;top:0;bottom:0;width:60px;z-index:2;pointer-events:none}.neighborhood-marquee-wrapper::before{left:0;background:linear-gradient(to right,#f8faff,transparent)}.neighborhood-marquee-wrapper::after{right:0;background:linear-gradient(to left,#f8faff,transparent)}.card,.service-card,.trust-stat-card{position:relative;overflow:hidden}.card>*,.service-card>*,.trust-stat-card>*{position:relative;z-index:1}.card::before,.service-card::before,.trust-stat-card::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:inherit;background:radial-gradient(600px circle at var(--mouse-x,0) var(--mouse-y,0),rgb(30 107 184 / .08),transparent 40%);z-index:0;pointer-events:none;opacity:0;transition:opacity 0.4s ease}.card:hover::before,.service-card:hover::before,.trust-stat-card:hover::before{opacity:1}.report-trigger-img{cursor:zoom-in;transition:transform 0.4s cubic-bezier(.25,.46,.45,.94),filter 0.4s}.report-trigger-img:hover{transform:scale(1.02);filter:brightness(.9)}#report-lightbox{background:#050d14;border:1px solid rgb(255 255 255 / .1);color:#fff}#report-lightbox::backdrop{background:rgb(0 0 0 / .85);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.property-type-toggle{background:#f0f6fc!important;border:1px solid #cfe2f5!important;padding:4px!important;border-radius:12px!important;gap:4px!important}.prop-btn{border:none!important;border-radius:8px!important;background:transparent!important;color:#47617a!important;transition:all 0.4s cubic-bezier(.25,.46,.45,.94)!important}.prop-btn.is-active{background:#ffffff!important;color:#0d3b66!important;box-shadow:0 4px 15px rgb(13 59 102 / .12)!important}.prop-btn:not(.is-active):hover{background:rgb(255 255 255 / .6)!important}.calculator-section{position:relative;z-index:1;overflow:hidden}.calculator-section::before{content:'';position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgb(30 107 184 / .06) 0%,#fff0 70%);top:-150px;left:-150px;border-radius:50%;z-index:0;pointer-events:none;animation:pulse-glow 8s infinite alternate ease-in-out}.calculator-controls,.quote-summary{position:relative;z-index:1}.comparison-card{transition:transform 0.5s cubic-bezier(.25,.46,.45,.94),box-shadow 0.5s cubic-bezier(.25,.46,.45,.94),border-color 0.5s!important;will-change:transform,box-shadow;position:relative;overflow:hidden;background:#fff;border:1px solid #cfe2f5;border-radius:16px;text-align:left!important}.comparison-card:hover{transform:translateY(-6px) scale(1.01)!important;box-shadow:0 30px 60px rgb(13 59 102 / .12),0 8px 20px rgb(13 59 102 / .06)!important;border-color:var(--primary)!important}.comparison-card::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:inherit;background:radial-gradient(600px circle at var(--mouse-x,0) var(--mouse-y,0),rgb(30 107 184 / .08),transparent 40%);z-index:0;pointer-events:none;opacity:0;transition:opacity 0.4s ease}.comparison-card:hover::before{opacity:1}.comparison-card>*{position:relative;z-index:1}.core-pillars-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;position:relative;z-index:1}.core-pillar-card{background:linear-gradient(145deg,#ffffff 0%,#fdfdfd 100%);border:1px solid #e4ecf2;border-radius:24px;padding:2.5rem 2.25rem;box-shadow:0 10px 30px rgb(13 59 102 / .03),inset 0 2px 0 0 rgb(255 255 255 / .8);transition:transform 0.5s cubic-bezier(.25,.46,.45,.94),box-shadow 0.5s cubic-bezier(.25,.46,.45,.94),border-color 0.5s!important;position:relative;overflow:hidden;display:flex;flex-direction:column;will-change:transform,box-shadow}.core-pillar-card:hover{transform:translateY(-10px) scale(1.02)!important;box-shadow:0 35px 65px rgb(13 59 102 / .1),0 12px 25px rgb(13 59 102 / .05),inset 0 2px 0 0 rgb(255 255 255)!important;border-color:#cfe2f5!important}.core-pillar-card::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:inherit;background:radial-gradient(600px circle at var(--mouse-x,0) var(--mouse-y,0),rgb(30 107 184 / .06),transparent 40%);z-index:0;pointer-events:none;opacity:0;transition:opacity 0.4s ease}.core-pillar-card:hover::before{opacity:1}.core-pillar-card>*{position:relative;z-index:1}.pillar-icon-wrapper{position:relative;width:64px;height:64px;background:#fff;border:1px solid #cfe2f5;border-radius:18px;display:flex;align-items:center;justify-content:center;margin-bottom:1.75rem;box-shadow:0 8px 20px rgb(30 107 184 / .08);z-index:2}.pillar-icon{width:28px;height:28px;color:var(--primary)}.icon-glow{position:absolute;width:100%;height:100%;background:var(--primary);filter:blur(20px);opacity:.15;border-radius:50%;z-index:-1;transition:opacity 0.4s ease}.core-pillar-card:hover .icon-glow{opacity:.35;transform:scale(1.1)}.pillar-tag{font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:1px;color:var(--primary);margin-bottom:.5rem}.core-pillar-card h3{font-family:'Playfair Display',serif;font-size:1.6rem;margin:0 0 1rem 0;color:var(--ink);line-height:1.2}.core-pillar-card p{margin:0;color:var(--muted);line-height:1.65;font-size:1.05rem;flex-grow:1}.pillar-text-link{color:var(--primary);font-weight:700;text-decoration:none;display:inline-flex;align-items:center;transition:transform 0.3s ease,color 0.3s ease}.pillar-text-link:hover{color:#0d3b66;transform:translateX(6px)}@media (max-width:1000px){.core-pillars-grid{grid-template-columns:1fr;gap:1.5rem}.core-pillar-card{padding:2rem 1.5rem}}.vs-container{display:flex;flex-direction:column;gap:1.5rem;max-width:1000px;margin:0 auto}.vs-row{display:grid;grid-template-columns:250px 1fr;gap:2rem;align-items:center;padding-bottom:1.5rem;border-bottom:1px solid #e4ecf2}.vs-row:last-child{border-bottom:none;padding-bottom:0}.vs-topic h4{margin:0 0 .25rem 0;font-family:'Playfair Display',serif;font-size:1.3rem;color:var(--ink)}.vs-topic p{margin:0;font-size:.9rem;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.5px}.vs-cards{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}.vs-card{border-radius:16px;padding:1.5rem;display:flex;gap:1rem;align-items:flex-start;transition:transform 0.3s ease,box-shadow 0.3s ease}.vs-card p{margin:0;font-size:.95rem;line-height:1.5}.vs-icon{display:flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;font-weight:800;font-size:.8rem;flex-shrink:0;margin-top:2px}.vs-card.them{background:#f8fbff;border:1px dashed #cfe2f5;color:#607d99}.vs-card.them .vs-icon{background:#ffebee;color:#d32f2f}.vs-card.us{background:#fff;border:1px solid #cfe2f5;box-shadow:0 10px 25px rgb(13 59 102 / .05);color:var(--ink);position:relative}.vs-card.us:hover{transform:translateY(-4px);box-shadow:0 15px 35px rgb(13 59 102 / .1);border-color:var(--primary)}.vs-card.us .vs-icon{background:#e8f5e9;color:#2e7d32}@media (max-width:800px){.vs-row{grid-template-columns:1fr;gap:1rem}.vs-topic{margin-bottom:.5rem}.vs-cards{grid-template-columns:1fr;gap:1rem}}.services-grid-pro{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;position:relative;z-index:1}.service-card-pro{background:linear-gradient(145deg,#ffffff 0%,#fdfdfd 100%);border:1px solid #e4ecf2;border-radius:24px;padding:2rem;box-shadow:0 10px 30px rgb(13 59 102 / .03),inset 0 2px 0 0 rgb(255 255 255 / .8);transition:transform 0.5s cubic-bezier(.25,.46,.45,.94),box-shadow 0.5s cubic-bezier(.25,.46,.45,.94),border-color 0.5s!important;position:relative;overflow:hidden;display:flex;flex-direction:column;text-decoration:none;will-change:transform,box-shadow}.service-card-pro:hover{transform:translateY(-8px) scale(1.02)!important;box-shadow:0 35px 65px rgb(13 59 102 / .1),0 12px 25px rgb(13 59 102 / .05),inset 0 2px 0 0 rgb(255 255 255)!important;border-color:var(--primary)!important}.service-card-pro::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-radius:inherit;background:radial-gradient(600px circle at var(--mouse-x,0) var(--mouse-y,0),rgb(30 107 184 / .06),transparent 40%);z-index:0;pointer-events:none;opacity:0;transition:opacity 0.4s ease}.service-card-pro:hover::before{opacity:1}.service-card-pro>*{position:relative;z-index:1}.svc-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.25rem}.svc-icon-wrapper{position:relative;width:50px;height:50px;background:#f0f6fc;border:1px solid #cfe2f5;border-radius:14px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 15px rgb(30 107 184 / .05);z-index:2}.svc-icon{width:22px;height:22px;color:var(--primary)}.service-card-pro:hover .icon-glow{opacity:.35;transform:scale(1.1)}.svc-badge img{width:45px;height:45px;object-fit:contain;filter:drop-shadow(0 4px 6px rgb(0 0 0 / .05));transition:transform 0.4s cubic-bezier(.25,.46,.45,.94)}.service-card-pro:hover .svc-badge img{transform:scale(1.15) rotate(5deg)}.service-card-pro h3{font-family:'Playfair Display',serif;font-size:1.35rem;margin:0 0 .5rem 0;color:var(--ink);line-height:1.2}.service-card-pro p{margin:0;color:var(--muted);line-height:1.5;font-size:.95rem}@media (max-width:900px){.service-card-pro:nth-child(n){grid-column:span 6}}@media (min-width:901px){.primary-nav .nav-group:hover .nav-dropdown{display:block;animation:slide-up-fade 0.25s cubic-bezier(.25,.46,.45,.94) forwards}.primary-nav .nav-dropdown{background:rgb(255 255 255 / .97)!important;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgb(207 226 245 / .8)!important;box-shadow:0 20px 40px rgb(13 59 102 / .12),0 4px 10px rgb(13 59 102 / .04)!important;padding:0.6rem!important;min-width:240px!important;border-radius:14px!important;margin-top:10px}.primary-nav .nav-dropdown a{margin-left:0!important;font-weight:600!important;color:var(--muted)!important;transition:all 0.2s cubic-bezier(.25,.46,.45,.94);padding:.6rem 0.8rem!important}.primary-nav .nav-dropdown a:hover{background:#f0f6fc!important;color:var(--primary)!important;transform:translateX(4px)}.primary-nav .nav-dropdown a::after{display:none!important}}@keyframes slide-up-fade{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.mobile-services-dropdown summary::-webkit-details-marker{display:none}.mobile-services-dropdown[open] .mobile-caret{transform:rotate(180deg)}.sticky-mobile-bar{display:grid;grid-template-columns:repeat(4,1fr);text-align:center}.sticky-mobile-bar a{padding:.8rem .5rem;font-size:.95rem}.review-card{display:flex;flex-direction:column;height:100%}.review-card p{flex-grow:1}.availability-cta{background:linear-gradient(135deg,#0d3b66,#1e6bb8);color:#fff;padding:2rem 0;border-top:1px solid #0d3b66;border-bottom:1px solid #0d3b66}.availability-cta-inner{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1.5rem}.availability-icon svg{color:#f0f6ff;width:48px;height:48px}.availability-cta h2{font-family:"Playfair Display",serif;font-size:1.8rem;margin:0 0 .25rem;color:#fff}.availability-cta p{margin:0;color:#e0f0ff;max-width:55ch}.availability-cta .btn{background-color:#fff;color:#0d3b66;font-weight:800}.availability-cta .btn.ghost{background-color:#fff0;color:#fff;border-color:#fff}@media (max-width:768px){.availability-cta-inner{grid-template-columns:1fr;text-align:center;gap:1rem}.availability-icon{margin:0 auto}.availability-actions{justify-content:center;display:flex;gap:1rem;flex-wrap:wrap}}.review-showcase{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:flex-start}.featured-review{background-color:#fff;border:1px solid #e5e7eb;border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);display:flex;flex-direction:column}.featured-review .review-stars{font-size:1.5rem;color:#ffc107;margin-bottom:1rem}.featured-review p{font-size:1.15rem;line-height:1.6;flex-grow:1}.featured-review cite{font-style:normal;font-weight:600;margin-top:1.5rem;display:block}.featured-review .review-source{display:block;font-weight:400;font-size:.9rem;color:var(--muted)}.reviews-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}.reviews-grid .review-card{background:var(--paper);padding:1.5rem;border-radius:var(--radius);border:1px solid #e5e7eb}.reviews-grid .review-card p{margin:0 0 1rem}.reviews-grid .review-card cite{font-style:normal}@media (max-width:900px){.review-showcase{grid-template-columns:1fr}}#why-choose-us .section-header{max-width:70ch;margin-left:auto;margin-right:auto}.why-grid-pro{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:2rem}.why-card-pro{background-color:var(--paper);border:1px solid #e5e7eb;border-radius:var(--radius);padding:2rem;text-align:center;box-shadow:0 4px 12px rgb(13 59 102 / .05)}.why-icon-pro{background-color:#eaf4ff;color:var(--primary);border-radius:50%;width:60px;height:60px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:1rem}.why-card-pro h3{font-family:"Playfair Display",serif;font-size:1.4rem;margin:0 0 .5rem}.why-card-pro p{color:var(--muted);line-height:1.6}.reviews-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:2rem}.review-card-pro{background:#fff;border:1px solid #e4ecf2;border-radius:16px;padding:1.5rem;display:flex;flex-direction:column;box-shadow:0 4px 12px rgb(13 59 102 / .05);transition:transform 0.3s ease}.review-card-pro:hover{transform:translateY(-5px);border-color:var(--primary)}.review-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}.stars{color:#f2b01e;font-size:1.1rem}.verified-tag{font-size:.7rem;font-weight:800;text-transform:uppercase;color:#166534;background:#f0fdf4;padding:2px 8px;border-radius:999px}.review-text{font-size:.95rem;line-height:1.6;color:var(--ink);font-style:italic;flex-grow:1;margin-bottom:1.5rem}.reviewer-info{display:flex;align-items:center;gap:.75rem;border-top:1px solid #f0f4f8;padding-top:1rem}.reviewer-initial{width:40px;height:40px;background:var(--primary);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700}.reviewer-info cite{font-style:normal;line-height:1.2}.reviews-footer{text-align:center;margin-top:2rem}@media (max-width:768px){.about-pro{padding-left:1.25rem!important;padding-right:1.25rem!important}.about-edge,.about-pro p,.about-pro .about-title,.about-pro .about-stats{padding-left:.5rem;padding-right:.5rem}.about-story .a{padding:1rem .5rem}ul[style*="display: grid"]{grid-template-columns:1fr!important;padding-left:1.5rem!important;padding-right:1.5rem!important;gap:0.5rem!important}ul[style*="display: grid"] li{font-size:.95rem;line-height:1.4}}.site-footer-v3{background-color:#f8faff;color:var(--muted);padding:4rem 0 2rem;border-top:1px solid #e4ecf2}.footer-top{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}.footer-col{flex:1 1 180px}.brand-col{flex:1 1 300px}.footer-logo{display:flex;align-items:center;gap:.75rem;color:var(--ink);font-size:1.4rem;margin-bottom:1.25rem}.footer-tagline{font-size:.95rem;line-height:1.6;color:var(--muted);margin-bottom:1.5rem}.contact-link{display:flex;align-items:center;gap:.6rem;color:var(--ink);margin-bottom:.75rem;font-weight:700;text-decoration:none}.footer-svg{width:20px;height:20px;color:var(--primary)}.footer-col h4{font-family:"Playfair Display",serif;color:var(--ink);margin-bottom:1.5rem;font-size:1.15rem;font-weight:700}.footer-nav a{display:block;color:var(--muted);padding:.4rem 0;transition:color 0.2s;font-size:.95rem;text-decoration:none}.footer-nav a:hover{color:var(--primary);text-decoration:underline}.footer-bottom{border-top:1px solid #e4ecf2;padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.5rem}.footer-badges{display:flex;gap:1.5rem;align-items:center}.footer-badges img{height:48px;width:auto}.copyright{font-size:.85rem;color:#8899a6}@media (max-width:768px){.footer-top{gap:2rem}.footer-bottom{flex-direction:column;text-align:center}.footer-logo,.brand-col{justify-content:center;text-align:center}.contact-link{justify-content:center}}.contact-block{margin-top:1rem}.contact-block h3{margin:0 0 .25rem 0;font-weight:600}.contact-block p{margin:0}footer .contact-block{max-width:420px;font-size:.95rem;line-height:1.5}footer .contact-block h3{font-weight:600;font-size:1rem;margin:0 0 .25rem 0}footer .contact-block address{font-style:normal;margin:0 0 .25rem 0}footer .contact-block p{margin:0}footer .footer-grid,footer .footer-columns{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem 2rem}.sticky-mobile-bar{background:rgb(255 255 255 / .98);border-top:1px solid #e4ecf2}.sticky-mobile-bar a{background:#f0f7ff;color:var(--primary-2);border:1px solid #cfe2f5}.sticky-mobile-bar a.primary{background:var(--primary);color:#fff;border-color:var(--primary)}.sticky-mobile-bar{display:none!important}@media (max-width:880px){.sticky-mobile-bar{display:grid!important;grid-template-columns:repeat(4,1fr)!important;text-align:center;gap:.5rem;padding:.75rem .75rem calc(0.75rem + env(safe-area-inset-bottom))!important;background:rgb(255 255 255 / .98)!important;border-top:1px solid #e4ecf2!important;backdrop-filter:saturate(1.2) blur(6px)!important}}.carousel-wrapper{position:relative}.carousel-container{overflow:hidden}.carousel-track{display:flex;gap:1.5rem;padding-bottom:1.5rem;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;scrollbar-width:none}.carousel-track::-webkit-scrollbar{display:none}.carousel-slide{flex:0 0 100%;scroll-snap-align:center}@media (min-width:768px){.carousel-slide{flex:0 0 auto;flex-basis:360px;max-width:360px;scroll-snap-align:start}}.carousel-slide .review-card-pro,.carousel-slide .post-card{height:100%}.carousel-nav{display:none}@media (min-width:1024px){.carousel-nav{display:flex;justify-content:flex-end;gap:.5rem;margin-top:-3.5rem;margin-bottom:1.5rem;position:relative;z-index:10}.carousel-btn{background:#fff;border:1px solid #cfe2f5;color:var(--primary);width:44px;height:44px;border-radius:50%;cursor:pointer;font-size:1.5rem;box-shadow:0 4px 12px rgb(13 59 102 / .1);transition:all 0.2s ease;display:flex;align-items:center;justify-content:center}.carousel-btn:hover{background:#eaf4ff;border-color:var(--primary)}.carousel-btn:disabled{opacity:.4;cursor:not-allowed}}.about-card-premium{padding:clamp(1.5rem, 4vw, 3rem);border:1px solid #cfe2f5;background:linear-gradient(180deg,#ffffff 0%,#f8faff 100%)}.about-photo-main{width:150px;height:150px;box-shadow:0 12px 25px rgb(13 59 102 / .15)}.about-intro-centered{display:flex;flex-direction:column;justify-content:center}@media (min-width:1024px){.site-footer-v3,.faq-pro,#service-areas{content-visibility:auto;contain-intrinsic-size:500px}}