/* ============================================
   GO2 PLUMBER NYC — MASTER STYLESHEET v2
   Professional Clean | Red + White | Ranshaw-killer
============================================ */

:root {
  --red:     #cc1f1f;
  --red-d:   #a81818;
  --red-l:   #e02e2e;
  --black:   #111111;
  --dark:    #1a1a1a;
  --gray:    #f5f5f5;
  --gray-2:  #ebebeb;
  --border:  #e0e0e0;
  --white:   #ffffff;
  --text:    #222222;
  --muted:   #666666;
  --dim:     #999999;
  --green:   #00a651;
  --r:       3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: "DM Sans", sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section.gray { background: var(--gray); }
.section.dark { background: var(--black); color: var(--white); }
.section.red { background: var(--red); color: var(--white); }

.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow.white { color: rgba(255,255,255,.7); }
.eyebrow.white::before { background: rgba(255,255,255,.5); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.display { font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; color: var(--black); }
.display.white { color: var(--white); }
.display em { color: var(--red); font-style: normal; }
.display.white em { color: #ff9999; }
.body-text { font-size: 1rem; color: var(--muted); line-height: 1.78; max-width: 580px; margin-top: 12px; }
.body-text.white { color: rgba(255,255,255,.7); }

/* ── TOPBAR ── */
.topbar { background: var(--black); padding: 8px 0; font-size: .8rem; color: rgba(255,255,255,.6); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.topbar a { color: var(--white); font-weight: 600; }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar-links a { color: rgba(255,255,255,.6); font-size: .78rem; transition: color .15s; }
.topbar-links a:hover { color: var(--white); }
.topbar-phone { display: flex; align-items: center; gap: 7px; color: var(--white) !important; font-weight: 700 !important; font-size: .88rem !important; }
.tb-emergency { background: var(--red); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 2px 8px; border-radius: 2px; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.7} }

/* ── NAV ── */
nav { background: var(--white); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 260; box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 10px 0; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark { width: 48px; height: 48px; background: var(--red); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-name { font-family: "Syne", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--black); letter-spacing: -.02em; }
.logo-name em { color: var(--red); font-style: normal; }
.logo-sub { font-size: .62rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin-top: 1px; }
.logo-img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 1px; list-style: none; align-items: center; }
.nav-links > li > a { padding: 8px 14px; border-radius: var(--r); font-size: .88rem; font-weight: 600; color: var(--muted); transition: all .15s; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--black); background: var(--gray); }
.has-dropdown { position: relative; }
.has-dropdown .dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--red); border-radius: var(--r); min-width: 220px; padding: 8px; z-index: 300; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.has-dropdown:hover .dropdown { display: flex; flex-direction: column; gap: 1px; }
.dropdown a { padding: 8px 12px; border-radius: var(--r); font-size: .84rem; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: all .15s; }
.dropdown a:hover { background: var(--gray); color: var(--red); }
.dropdown .sep { height: 1px; background: var(--border); margin: 4px 0; }
.dropdown .all-link { color: var(--red); font-weight: 700; margin-top: 4px; border-top: 1px solid var(--border); padding-top: 10px; }
.nav-call { display: flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); padding: 10px 20px; border-radius: var(--r); transition: all .2s; white-space: nowrap; animation: blink 2s infinite; }
.nav-call:hover { background: var(--red-l); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,31,31,.35); animation: none; }
.nav-call svg { flex-shrink: 0; }
.nav-call-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.nav-call-label { font-size: .68rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.nav-call-num { font-size: .92rem; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all .2s; }

/* ── HERO ── */
.hero { background: var(--white); position: relative; overflow: hidden; padding: 0; }
.hero-split { display: grid; grid-template-columns: 1fr 480px; min-height: 92vh; }
.hero-left { background: var(--black); padding: 72px 56px 72px 0; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero-left::after { content: ""; position: absolute; right: -1px; top: 0; bottom: 0; width: 60px; background: var(--white); clip-path: polygon(100% 0, 100% 100%, 0 100%); z-index: 2; }
.hero-left .container-left { padding-left: calc((100vw - 1160px) / 2 + 28px); padding-right: 60px; position: relative; z-index: 1; }
.hero-bg-left { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(204,31,31,.15) 0%, transparent 60%); }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 28px 28px; }
.hero-right { background: var(--white); padding: 56px 48px 56px 80px; display: flex; flex-direction: column; justify-content: center; border-left: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(204,31,31,.08); border: 1px solid rgba(204,31,31,.2); border-radius: 2px; padding: 5px 12px; margin-bottom: 20px; width: fit-content; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse-r 2s infinite; }
@keyframes pulse-r { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-badge span { font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); }
.hero h1 { font-family: "Syne", sans-serif; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 800; line-height: .95; letter-spacing: -.04em; color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--red); display: block; }
.hero h1 .outline { -webkit-text-stroke: 1.5px rgba(255,255,255,.35); color: transparent; display: block; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 440px; margin-bottom: 32px; line-height: 1.8; }
.big-call { display: inline-flex; align-items: stretch; text-decoration: none; border-radius: var(--r); overflow: hidden; box-shadow: 0 4px 32px rgba(204,31,31,.4); transition: all .25s; margin-bottom: 14px; width: 100%; max-width: 420px; }
.big-call:hover { box-shadow: 0 8px 48px rgba(204,31,31,.6); transform: translateY(-3px); }
.big-call-left { background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; padding: 0 22px; font-size: 1.4rem; flex-shrink: 0; }
.big-call-right { background: var(--dark); border: 1px solid rgba(204,31,31,.4); border-left: none; padding: 16px 24px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.bcr-label { font-size: .67rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(204,31,31,.8); }
.bcr-num { font-family: "Syne", sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.hero-note { font-size: .78rem; color: rgba(255,255,255,.4); }
.hero-note strong { color: rgba(255,255,255,.6); }
.hero-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.metric { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 14px; }
.metric .n { font-family: "Syne", sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; line-height: 1; }
.metric .l { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 3px; }

/* QUOTE PANEL RIGHT SIDE */
.hero-right-inner { width: 100%; }
.qp-title { font-family: "Syne", sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 4px; letter-spacing: -.02em; }
.qp-sub { font-size: .84rem; color: var(--muted); margin-bottom: 20px; }
.qp-call-box { display: flex; align-items: center; justify-content: space-between; background: var(--red); border-radius: var(--r); padding: 14px 18px; margin-bottom: 20px; text-decoration: none; transition: all .2s; }
.qp-call-box:hover { background: var(--red-l); transform: translateY(-1px); }
.qp-call-label { font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.qp-call-num { font-family: "Syne", sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.qp-divider { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: .75rem; color: var(--dim); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.qp-divider::before, .qp-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); }
.field input, .field select { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 11px 14px; font-family: "DM Sans", sans-serif; font-size: .9rem; color: var(--text); transition: border-color .2s; width: 100%; }
.field input:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,31,31,.1); }
.field input::placeholder { color: var(--dim); }
.qp-submit { background: var(--black); color: var(--white); border: none; width: 100%; padding: 13px; border-radius: var(--r); font-family: "DM Sans", sans-serif; font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .2s; margin-top: 4px; }
.qp-submit:hover { background: var(--red); transform: translateY(-1px); }
.qp-note { font-size: .73rem; color: var(--dim); text-align: center; margin-top: 8px; }
.qp-note strong { color: var(--green); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--red); padding: 14px 0; }
.trust-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9); }
.trust-bar-icon { width: 22px; height: 22px; background: rgba(255,255,255,.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }

/* ── SERVICES ── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 40px; }
.svc-item { background: var(--white); padding: 28px 22px; display: flex; flex-direction: column; transition: all .2s; border-bottom: 3px solid transparent; }
.svc-item:hover { background: var(--gray); border-bottom-color: var(--red); }
.svc-num { font-family: "Syne", sans-serif; font-size: .68rem; font-weight: 800; color: var(--dim); letter-spacing: 1.5px; margin-bottom: 10px; display: block; }
.svc-item h3 { font-family: "Syne", sans-serif; font-size: .97rem; font-weight: 700; color: var(--black); margin-bottom: 7px; }
.svc-item p { font-size: .84rem; color: var(--muted); line-height: 1.6; flex: 1; }
.svc-arrow { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: .78rem; font-weight: 700; color: var(--red); transition: gap .15s; }
.svc-item:hover .svc-arrow { gap: 8px; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.why-item:first-child { border-top: 1px solid var(--border); }
.why-icon { width: 40px; height: 40px; background: rgba(204,31,31,.08); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-text h4 { font-family: "Syne", sans-serif; font-size: .97rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.why-text p { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.why-right { display: flex; flex-direction: column; gap: 16px; }
.stat-box { background: var(--black); border-radius: var(--r); padding: 28px; color: var(--white); }
.stat-box .n { font-family: "Syne", sans-serif; font-size: 3.2rem; font-weight: 800; letter-spacing: -.05em; line-height: 1; color: var(--white); }
.stat-box .n span { font-size: 1.8rem; color: var(--red); }
.stat-box .l { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.stat-box.red-box { background: var(--red); }
.stat-box.red-box .n span { color: rgba(255,255,255,.6); }
.stat-box.red-box .l { color: rgba(255,255,255,.7); }
.cta-box { background: var(--gray); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-decoration: none; transition: all .2s; }
.cta-box:hover { border-color: var(--red); background: var(--white); }
.cta-box-label { font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.cta-box-num { font-family: "Syne", sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--black); letter-spacing: -.02em; }
.cta-box-icon { width: 44px; height: 44px; background: var(--red); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); font-size: 1.2rem; }

/* ── BOROUGH GRID ── */
.boro-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 40px; }
.boro-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 24px 16px 20px; text-decoration: none; display: flex; flex-direction: column; transition: all .2s; }
.boro-item:hover { border-color: var(--red); background: var(--gray); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(204,31,31,.1); }
.boro-initial { font-family: "Syne", sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 10px; transition: color .2s; }
.boro-item:hover .boro-initial { color: var(--red); }
.boro-name { font-family: "Syne", sans-serif; font-size: .92rem; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.boro-count { font-size: .74rem; color: var(--dim); }
.boro-link { margin-top: 12px; font-size: .73rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); opacity: 0; transition: opacity .2s; }
.boro-item:hover .boro-link { opacity: 1; }

/* ── COMMERCIAL ── */
.comm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.comm-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 24px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: all .2s; }
.comm-item:hover { background: rgba(255,255,255,.08); border-color: rgba(204,31,31,.4); transform: translateY(-2px); }
.comm-icon { font-size: 1.6rem; }
.comm-item h3 { font-family: "Syne", sans-serif; font-size: .95rem; font-weight: 700; color: var(--white); }
.comm-item p { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.comm-arrow { font-size: .78rem; font-weight: 700; color: #ff9999; margin-top: auto; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.review { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 28px; transition: all .2s; }
.review:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(204,31,31,.08); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars span { width: 12px; height: 12px; background: #f5a623; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.review-text { font-size: .9rem; color: var(--muted); line-height: 1.75; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.r-init { width: 36px; height: 36px; border-radius: 50%; background: var(--red); font-family: "Syne", sans-serif; font-size: .82rem; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.r-name { font-size: .85rem; font-weight: 700; color: var(--black); }
.r-loc { font-size: .73rem; color: var(--dim); margin-top: 1px; }

/* ── MEGA CALL ── */
.phone-cta { background: var(--red); padding: 80px 0; position: relative; overflow: hidden; }
.phone-cta::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.phone-cta-inner { position: relative; text-align: center; }
.phone-cta h2 { font-family: "Syne", sans-serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--white); margin-bottom: 12px; }
.phone-cta p { color: rgba(255,255,255,.75); margin-bottom: 36px; font-size: 1rem; }
.mega-call { display: inline-flex; align-items: stretch; text-decoration: none; border-radius: var(--r); overflow: hidden; box-shadow: 0 8px 48px rgba(0,0,0,.3); transition: all .3s; }
.mega-call:hover { transform: translateY(-4px); box-shadow: 0 16px 64px rgba(0,0,0,.4); }
.mc-icon { background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; padding: 0 28px; font-size: 1.8rem; }
.mc-body { background: var(--white); padding: 20px 36px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.mc-label { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); }
.mc-num { font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--red); letter-spacing: -.03em; line-height: 1; }
.cta-sub { margin-top: 18px; font-size: .82rem; color: rgba(255,255,255,.6); }

/* ── PROCESS ── */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 40px; position: relative; }
.proc-grid::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--red) 0%, var(--red) 100%); opacity: .15; }
.proc { padding: 0 24px 0 0; text-align: left; position: relative; }
.proc-circle { width: 56px; height: 56px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; border: 3px solid var(--white); box-shadow: 0 0 0 1px var(--red); }
.proc-circle span { font-family: "Syne", sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); }
.proc h4 { font-family: "Syne", sans-serif; font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.proc p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* ── INTERNAL LINKS ── */
.internal-links { background: var(--gray); border-top: 1px solid var(--border); padding: 48px 0; }
.il-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.il-col h4 { font-family: "Syne", sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--red); display: inline-block; }
.il-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.il-col ul li a { font-size: .84rem; color: var(--muted); transition: color .15s; display: flex; align-items: center; gap: 5px; }
.il-col ul li a::before { content: "›"; color: var(--red); font-weight: 700; }
.il-col ul li a:hover { color: var(--red); }

/* ── FOOTER ── */
footer { background: var(--black); color: var(--white); padding: 60px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-logo-mark { width: 38px; height: 38px; background: var(--red); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-family: "Syne", sans-serif; font-size: .95rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.f-logo-name { font-family: "Syne", sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--white); }
.f-logo-name em { color: var(--red); font-style: normal; }
.f-logo-sub { font-size: .6rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 1px; }
.f-logo-badge { background: var(--white); border-radius: 10px; padding: 10px 14px; display: inline-flex; align-items: center; }
.f-logo-img { height: 80px; width: auto; display: block; }
.footer-desc { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 260px; margin-bottom: 18px; }
.footer-phone { display: inline-flex; align-items: center; gap: 9px; background: var(--red); border-radius: var(--r); padding: 10px 18px; text-decoration: none; font-family: "Syne", sans-serif; font-size: .95rem; font-weight: 700; color: var(--white); transition: all .2s; }
.footer-phone:hover { background: var(--red-l); }
.foot-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .15s; }
.foot-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .77rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 12px; }
.footer-licenses { font-size: .72rem; color: rgba(255,255,255,.25); margin-top: 6px; line-height: 1.6; }

/* ── STICKY MOBILE ── */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--red); border-top: 2px solid var(--red-d); }
.sticky-call a { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; color: var(--white); text-decoration: none; font-family: "Syne", sans-serif; font-size: 1.05rem; font-weight: 800; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--r); font-family: "DM Sans", sans-serif; font-size: .9rem; font-weight: 700; transition: all .2s; cursor: pointer; border: none; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-l); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,31,31,.3); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--dark); transform: translateY(-1px); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--gray); border-bottom: 1px solid var(--border); padding: 10px 0; font-size: .8rem; color: var(--dim); }
.breadcrumb a { color: var(--red); }
.breadcrumb .sep { margin: 0 8px; color: var(--border); }

/* ── SUB NAV ── */
.sub-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.sub-nav-inner { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-inner a { padding: 6px 14px; font-size: .8rem; font-weight: 600; color: var(--muted); border-radius: var(--r); white-space: nowrap; transition: all .15s; border: 1px solid transparent; }
.sub-nav-inner a:hover { color: var(--black); background: var(--gray); }
.sub-nav-inner a.active { color: var(--red); border-color: rgba(204,31,31,.25); background: rgba(204,31,31,.05); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 18px 0; font-size: .95rem; font-weight: 600; color: var(--black); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::after { content: "+"; color: var(--red); font-size: 1.3rem; flex-shrink: 0; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-ans { padding: 0 0 18px; font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-right { padding: 48px 32px 48px 56px; }
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 0 48px; }
  .hero-left .container-left { padding-left: 28px; padding-right: 28px; }
  .hero-left::after { display: none; }
  .hero-right { padding: 40px 28px; border-top: 1px solid var(--border); }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proc-grid::before { display: none; }
  .comm-grid { grid-template-columns: repeat(2, 1fr); }
  .il-grid { grid-template-columns: 1fr 1fr; }
  .boro-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav__toggle { display: flex; }
  .topbar-links { display: none; }
  .topbar { display: none; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__toggle span { transition: transform .25s ease, opacity .2s ease; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 4px 0 24px;
    overflow-y: auto;
    z-index: 250;
    box-shadow: 0 12px 32px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
    pointer-events: none;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links > li > a { width: 100%; padding: 16px 20px; font-size: 1rem; justify-content: space-between; }
  .nav-links > li > a:hover, .nav-links > li > a.active { background: var(--gray); }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 245;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility 0s linear .25s;
    pointer-events: none;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }
  .has-dropdown > .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-top: 0 solid var(--border);
    border-radius: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
    background: var(--gray);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
  }
  .has-dropdown.dropdown-open > .dropdown {
    max-height: 600px;
    opacity: 1;
    padding: 4px 0 8px;
    border-top: 1px solid var(--border);
  }
  .has-dropdown.dropdown-open > a { background: var(--gray); }
  .has-dropdown.dropdown-open > .dropdown a { padding: 12px 20px 12px 32px; font-size: .92rem; }
  .sticky-call { display: block; }
  body { padding-bottom: 60px; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .logo-sub { display: none; }
  .logo-img { height: 48px; }
  .hero h1 { font-size: 2.6rem; }
  .bcr-num { font-size: 1.5rem; }
  .nav-call { padding: 8px 12px; }
  .nav-call-label { font-size: .62rem; }
  .nav-call-num { font-size: .82rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .boro-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: 1fr; }
  .comm-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .il-grid { grid-template-columns: 1fr; }
  .mega-call { width: 100%; }
  input, select { font-size: 16px !important; }
  .trust-bar-inner { gap: 10px; justify-content: center; }
}
@media (max-width: 400px) {
  .nav-call-num { display: none; }
  .nav-call { padding: 9px 10px; }
}

/* ── QUOTE PANEL SIDE (inner pages) ── */
.quote-panel-side { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 28px; box-shadow: 0 4px 32px rgba(0,0,0,.08); }
.qps-title { font-family: "Syne", sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.qps-sub { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }

/* ── INNER PAGE HERO ── */
.inner-hero { background: var(--black); position: relative; overflow: hidden; padding: 72px 0 64px; }
.inner-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(204,31,31,.12) 0%, transparent 60%); }
.inner-hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 28px 28px; }
.inner-hero-inner { position: relative; display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.inner-hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(204,31,31,.15); border: 1px solid rgba(204,31,31,.25); border-radius: 2px; padding: 4px 10px; margin-bottom: 16px; }
.inner-hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); animation: pulse-r 2s infinite; }
.inner-hero-badge span { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(204,31,31,.9); }
.inner-hero h1 { font-family: "Syne", sans-serif; font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1; letter-spacing: -.04em; color: var(--white); margin-bottom: 18px; }
.inner-hero h1 em { color: var(--red); font-style: normal; display: block; -webkit-text-stroke: 0; }
.inner-hero-desc { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 480px; margin-bottom: 28px; line-height: 1.78; }
.inner-big-call { display: inline-flex; align-items: stretch; text-decoration: none; border-radius: var(--r); overflow: hidden; box-shadow: 0 4px 28px rgba(204,31,31,.35); transition: all .25s; width: 100%; max-width: 400px; margin-bottom: 12px; }
.inner-big-call:hover { box-shadow: 0 8px 48px rgba(204,31,31,.5); transform: translateY(-2px); }
.inner-big-call-left { background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; padding: 0 20px; font-size: 1.3rem; flex-shrink: 0; }
.inner-big-call-right { background: #1a0000; border: 1px solid rgba(204,31,31,.4); border-left: none; padding: 14px 22px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.inner-metrics { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 18px; }
.inner-metric .n { font-family: "Syne", sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; line-height: 1; }
.inner-metric .l { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── PROBLEM GRID ── */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; }
.prob-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 16px 18px; display: flex; align-items: center; gap: 12px; font-size: .88rem; font-weight: 500; color: var(--text); transition: all .2s; }
.prob-item:hover { border-color: var(--red); }
.prob-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── PROCESS STEPS (inner) ── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Syne", sans-serif; font-size: .9rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.step-text h4 { font-family: "Syne", sans-serif; font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.step-text p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .inner-hero-inner { grid-template-columns: 1fr; }
  .quote-panel-side { display: none; }
  .prob-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .prob-grid { grid-template-columns: 1fr; }
}
