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

:root {
  --blue: #0b5cff;
  --blue-dark: #063f9e;
  --navy: #071f44;
  --ink: #122033;
  --muted: #637083;
  --line: #dbe5f0;
  --soft: #f3f7fb;
  --white: #ffffff;
  --green: #12a86b;
  --gold: #f5b400;
  --shadow: 0 18px 45px rgba(7, 31, 68, 0.12);
  --shadow-soft: 0 10px 26px rgba(7, 31, 68, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 3.7rem;
  max-width: 850px;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.1rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding: 88px 0;
}

.section--compact {
  padding: 34px 0;
}

.section--tint {
  background: var(--soft);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy p {
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(7, 31, 68, 0.06);
  backdrop-filter: blur(10px);
}

.topbar {
  background: var(--navy);
  color: #dbeafe;
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.navbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: 0 10px 22px rgba(11, 92, 255, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  color: var(--navy);
  white-space: nowrap;
}

.brand small {
  display: none;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  color: #24334a;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue-dark);
  background: #edf4ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(11, 92, 255, 0.24);
}

.btn--primary:hover {
  background: var(--blue-dark);
}

.btn--secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: #b8cdf1;
}

.btn--light {
  color: var(--navy);
  background: var(--white);
}

.btn--large {
  min-height: 54px;
  padding: 15px 22px;
}

.hero {
  background:
    linear-gradient(120deg, rgba(243, 247, 251, 0.96), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at 88% 12%, rgba(11, 92, 255, 0.12), transparent 30%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.eyebrow--light {
  color: #b9d8ff;
}

.eyebrow--light::before {
  background: #b9d8ff;
}

.hero__lead {
  max-width: 720px;
  font-size: 1.2rem;
  margin: 22px 0 28px;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__phone {
  display: inline-block;
  margin: 22px 0;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #34435a;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px -18px -18px 34px;
  z-index: -1;
  border-radius: var(--radius);
  background: #dbeafe;
}

.hero-card__top,
.hero-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-card__top {
  color: var(--green);
  font-weight: 800;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(18, 168, 107, 0.12);
}

.hero-card__meter {
  margin: 28px 0;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
}

.hero-card__meter strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.repair-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.repair-list div,
.check-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2e3d54;
  font-weight: 700;
}

.icon,
.badge-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: #edf4ff;
  color: var(--blue-dark);
  font-weight: 900;
}

.icon {
  width: 34px;
  height: 34px;
}

.badge-icon,
.service-icon {
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
}

.badge-icon img,
.service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.stars {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.trust-grid,
.card-grid,
.review-grid,
.steps {
  display: grid;
  gap: 20px;
}

.trust-grid > *,
.card-grid > *,
.review-grid > *,
.steps > *,
.split > *,
.map-section > * {
  min-width: 0;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card,
.service-card,
.review-card,
.steps article,
.info-panel,
.contact-card,
.service-form,
.service-detail,
.map-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-card,
.service-card,
.review-card,
.steps article {
  padding: 24px;
}

.trust-card h2,
.trust-card h3,
.service-card h3 {
  margin: 18px 0 10px;
}

.service-card {
  min-height: 225px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #a9c7f7;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.section-heading p {
  margin-top: 14px;
}

.split,
.area-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.split--center {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.check-list span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.booking-section {
  padding-top: 62px;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid #b8cdf1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #edf4ff);
  box-shadow: var(--shadow-soft);
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.booking-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 0.9rem;
}

.zip-checker {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.zip-checker p {
  margin: 0;
  font-weight: 800;
}

.promise-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.promise-card h3 {
  margin: 18px 0 10px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.steps article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 10px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  margin: 0;
}

.review-card blockquote {
  margin: 12px 0 18px;
  color: #26364d;
  font-size: 1.02rem;
}

.review-card figcaption {
  color: var(--navy);
  font-weight: 900;
}

.brand-strip,
.brand-cloud {
  display: grid;
  align-items: center;
  gap: 14px;
}

.brand-strip {
  grid-template-columns: repeat(8, 1fr);
}

.brand-cloud {
  grid-template-columns: repeat(6, 1fr);
}

.brand-strip img,
.brand-cloud img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.brand-strip img:hover,
.brand-cloud img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.service-area-preview .btn {
  justify-self: end;
}

.final-cta {
  background: linear-gradient(135deg, #edf4ff, #ffffff);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border: 1px solid #b8cdf1;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  background: linear-gradient(135deg, #edf4ff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 780px;
  margin-top: 20px;
}

.info-panel {
  padding: 30px;
  background: var(--navy);
}

.info-panel h2,
.info-panel p {
  color: var(--white);
}

.services-list .container {
  display: grid;
  gap: 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  padding: 28px;
  scroll-margin-top: 140px;
}

.service-detail h2 {
  margin: 16px 0 12px;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border-radius: var(--radius);
  background: var(--soft);
}

.service-detail li {
  position: relative;
  padding-left: 22px;
  color: #304158;
  font-weight: 700;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.area-layout {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.map-card {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(219, 229, 240, 0.75) 1px, transparent 1px),
    linear-gradient(0deg, rgba(219, 229, 240, 0.75) 1px, transparent 1px),
    #f8fbff;
  background-size: 42px 42px;
}

.map-card strong,
.map-card p {
  position: absolute;
  z-index: 2;
}

.map-card strong {
  bottom: 66px;
  color: var(--navy);
  font-size: 1.35rem;
}

.map-card p {
  bottom: 32px;
  margin: 0;
}

.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(11, 92, 255, 0.18);
}

.map-ring--one {
  width: 240px;
  height: 240px;
}

.map-ring--two {
  width: 340px;
  height: 340px;
}

.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(11, 92, 255, 0.28);
}

.map-pin span {
  font-size: 2rem;
  font-weight: 900;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.area-list span {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #2a3b55;
  font-weight: 800;
}

.coverage-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.coverage-map__header,
.coverage-map__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.coverage-map__header {
  border-bottom: 1px solid var(--line);
}

.coverage-map__header span,
.coverage-map__footer span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.coverage-map__header strong {
  color: var(--navy);
}

.coverage-map__footer {
  border-top: 1px solid var(--line);
}

.coverage-map__footer a {
  color: var(--blue-dark);
  font-weight: 900;
}

.coverage-map__canvas {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(219, 229, 240, 0.52) 1px, transparent 1px),
    linear-gradient(0deg, rgba(219, 229, 240, 0.52) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
  background-size: 40px 40px, 40px 40px, auto;
}

.coverage-map__canvas::before {
  content: "";
  position: absolute;
  left: 14%;
  top: 8%;
  width: 72%;
  height: 78%;
  border: 2px solid rgba(11, 92, 255, 0.2);
  border-radius: 48% 52% 44% 56% / 42% 38% 62% 58%;
  background: rgba(11, 92, 255, 0.08);
}

.coverage-map__region {
  position: absolute;
  z-index: 1;
  color: rgba(7, 31, 68, 0.36);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-map__region--bergen {
  left: 61%;
  top: 17%;
}

.coverage-map__region--passaic {
  left: 34%;
  top: 28%;
}

.coverage-map__region--essex {
  left: 43%;
  top: 52%;
}

.coverage-map__region--hudson {
  left: 78%;
  top: 57%;
}

.coverage-map__region--union {
  left: 49%;
  top: 75%;
}

.coverage-map__region--morris {
  left: 21%;
  top: 69%;
}

.coverage-map__markers {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.zip-marker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  color: transparent;
  font-size: 0;
  appearance: none;
  box-shadow: 0 7px 18px rgba(7, 31, 68, 0.24);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.zip-marker:hover,
.zip-marker.is-active {
  z-index: 3;
  background: var(--green);
  transform: translate(-50%, -50%) scale(1.55);
}

.zip-marker.is-muted {
  opacity: 0.16;
}

.zip-marker::after {
  content: attr(data-zip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  display: none;
  padding: 5px 7px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  transform: translateX(-50%);
}

.zip-marker:hover::after,
.zip-marker.is-active::after {
  display: block;
}

.county-grid,
.zip-grid {
  display: grid;
  gap: 10px;
}

.county-grid {
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 28px;
}

.county-grid span,
.county-grid a,
.zip-grid span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #2a3b55;
  font-weight: 900;
}

.county-grid span,
.county-grid a {
  min-height: 58px;
  color: var(--blue-dark);
  background: #edf4ff;
}

.county-grid a:hover {
  border-color: #a9c7f7;
  background: var(--white);
}

.zip-tools {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.zip-tools p {
  margin: 0 0 13px;
  font-weight: 800;
}

.zip-grid {
  grid-template-columns: repeat(8, 1fr);
}

.zip-grid span.is-hidden {
  display: none;
}

.zip-grid span.is-active {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.contact-layout {
  align-items: start;
}

.contact-card,
.service-form {
  padding: 30px;
}

.contact-method {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-method span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method a,
.contact-method p {
  display: inline-block;
  margin: 5px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.form-heading {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d6e7;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 92, 255, 0.18);
  border-color: var(--blue);
}

textarea {
  resize: vertical;
}

.service-form .btn {
  margin-top: 18px;
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.92rem;
}

.faq-list {
  max-width: 860px;
}

.faq-list details {
  padding: 0;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  padding: 20px 22px;
}

.faq-list p {
  padding: 0 22px 20px;
}

.site-footer {
  background: #061733;
  color: #dbeafe;
  padding: 54px 0 24px;
}

.site-footer p,
.site-footer span {
  color: #aebfda;
}

.site-footer .brand strong,
.site-footer h2 {
  color: var(--white);
}

.site-footer .brand small {
  color: #aebfda;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 40px;
}

.footer-grid h2 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3rem;
  }

  .hero__grid,
  .split,
  .area-layout,
  .contact-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .review-grid,
  .card-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--four,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-strip,
  .brand-cloud,
  .county-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-area-preview .btn {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .navbar__inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  body {
    padding-bottom: 68px;
  }

  .mobile-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--blue);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(7, 31, 68, 0.24);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__lead,
  .page-hero p {
    font-size: 1.05rem;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-card::before {
    display: none;
  }

  .hero-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-grid,
  .review-grid,
  .card-grid--four,
  .card-grid--three,
  .steps,
  .brand-strip,
  .brand-cloud,
  .county-grid,
  .area-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .zip-tools {
    grid-template-columns: 1fr;
  }

  .zip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coverage-map__canvas {
    min-height: 340px;
  }

  .coverage-map__header,
  .coverage-map__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .booking-panel {
    padding: 22px;
  }

  .final-cta__actions,
  .hero__actions {
    width: 100%;
  }

  .final-cta__actions .btn,
  .hero__actions .btn {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-strip img,
  .brand-cloud img {
    height: 66px;
  }
}

/* 2026 North Jersey header and homepage refresh */
.topbar__inner {
  min-height: 30px;
  font-size: 0.78rem;
}

.navbar__inner {
  min-height: 88px;
  gap: 20px;
}

.brand__mark {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
}

.brand strong {
  max-width: none;
  font-size: 1.02rem;
  line-height: 1;
}

.nav-menu {
  gap: 2px;
}

.nav-menu > a,
.nav-dropdown__toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 11px;
  border: 0;
  border-radius: var(--radius);
  color: #24334a;
  background: transparent;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-chevron,
.nav-dropdown__toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.nav-menu > a:hover,
.nav-menu > a.active,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle[aria-expanded="true"] {
  color: var(--blue-dark);
  background: #edf4ff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 245px;
  display: grid;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.55s;
}

.nav-dropdown__menu--right {
  left: auto;
  right: 0;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.nav-dropdown__menu a {
  padding: 10px 12px;
  border-radius: 5px;
  color: #2d3d54;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-dropdown__menu a:hover {
  color: var(--blue-dark);
  background: #edf4ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 6px;
}

.nav-phone {
  display: grid;
  min-width: max-content;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #edf4ff;
  line-height: 1;
}

.nav-phone small {
  display: none;
}

.nav-phone strong {
  color: var(--blue-dark);
  font-size: 1.16rem;
  font-weight: 900;
}

.hero--photo {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
  background: var(--navy);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 43%;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(3, 16, 38, 0.94) 0%, rgba(3, 16, 38, 0.79) 44%, rgba(3, 16, 38, 0.24) 76%, rgba(3, 16, 38, 0.12) 100%);
}

.hero--photo .hero__grid {
  position: relative;
  z-index: 2;
  display: block;
}

.hero--photo .hero__content {
  max-width: 690px;
}

.hero--photo h1,
.hero--photo .hero__lead {
  color: var(--white);
}

.hero--photo h1 {
  font-size: 4rem;
}

.hero--photo .hero-card {
  display: none;
}

.hero--photo .hero__trust span {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(7, 31, 68, 0.58);
  backdrop-filter: blur(8px);
}

.hero--photo .hero__actions,
.hero--photo .hero__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  align-items: center;
  gap: 10px;
  width: min(100%, 560px);
}

.hero--photo .hero__actions {
  margin-bottom: 12px;
}

.hero--photo .hero__actions .btn {
  width: 100%;
  white-space: nowrap;
}

.hero--photo .hero__trust span {
  justify-content: center;
  width: 100%;
  white-space: nowrap;
}

.hero--photo .hero__trust span:nth-child(3) {
  grid-column: 1 / -1;
}

.btn--glass {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.brand-marquee-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.review-marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand-marquee {
  padding: 18px 0;
  overflow: hidden;
}

.review-marquee {
  padding: 16px 0;
  overflow: hidden;
}

.brand-marquee__track,
.review-marquee__track {
  width: max-content;
  display: flex;
  animation: brand-scroll 34s linear infinite;
}

.review-marquee__track {
  animation-name: review-scroll;
  animation-duration: 42s;
}

.brand-marquee:hover .brand-marquee__track,
.review-marquee:hover .review-marquee__track {
  animation-play-state: paused;
}

.brand-marquee__set,
.review-marquee__set {
  display: flex;
  align-items: center;
}

.brand-marquee__set img {
  width: 145px;
  height: 58px;
  margin: 0 16px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
}

.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  margin: 0 8px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(7, 31, 68, 0.06);
}

.review-pill strong {
  color: var(--gold);
  font-size: 0.9rem;
  white-space: nowrap;
}

.review-pill span {
  color: #2c3c54;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes brand-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes review-scroll {
  to {
    transform: translateX(-50%);
  }
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: 52px;
  align-items: center;
}

.coverage-counties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.coverage-counties li {
  position: relative;
  padding-left: 18px;
  color: #304158;
  font-weight: 800;
}

.coverage-counties li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.google-map {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.google-map iframe {
  width: 100%;
  height: 470px;
  display: block;
  border: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-card h2,
.content-card h3 {
  margin-bottom: 12px;
}

.content-card ul,
.policy-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.content-card li,
.policy-list li {
  position: relative;
  padding-left: 20px;
  color: #304158;
  font-weight: 600;
}

.content-card li::before,
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.mini-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.service-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-links-grid a {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.service-links-grid a:hover {
  color: var(--blue-dark);
  border-color: #a9c7f7;
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track,
  .review-marquee__track {
    animation: none;
  }
}

@media (max-width: 1160px) {
  .navbar__inner {
    gap: 12px;
  }

  .brand strong {
    max-width: none;
    font-size: 0.92rem;
  }

  .nav-menu > a,
  .nav-dropdown__toggle {
    padding-inline: 8px;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: block;
  }

  .topbar__inner {
    min-height: 32px;
    justify-content: center;
    text-align: center;
  }

  .topbar__inner > :last-child {
    display: none;
  }

  .navbar__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    top: 72px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .nav-menu > a,
  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px 14px;
  }

  .nav-dropdown__menu,
  .nav-dropdown__menu--right {
    position: static;
    width: auto;
    margin: 0 8px 8px;
    box-shadow: none;
    background: var(--soft);
  }

  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    visibility: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .hero--photo {
    min-height: 610px;
    padding: 72px 0;
  }

  .hero--photo h1 {
    font-size: 3.2rem;
  }

  .service-links-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(3, 16, 38, 0.93), rgba(3, 16, 38, 0.62));
  }

  .map-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong {
    max-width: none;
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .hero--photo {
    min-height: 650px;
    align-items: flex-end;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(3, 16, 38, 0.97) 0%, rgba(3, 16, 38, 0.72) 64%, rgba(3, 16, 38, 0.34) 100%);
  }

  .hero--photo h1 {
    max-width: 100%;
    font-size: 2.2rem;
    overflow-wrap: anywhere;
  }

  .hero--photo .hero__lead {
    overflow-wrap: anywhere;
  }

  .hero--photo .hero__actions,
  .hero--photo .hero__trust {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .hero--photo .hero__actions .btn,
  .hero--photo .hero__trust span {
    width: 100%;
    justify-content: center;
    min-width: 0;
    min-height: 54px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .hero--photo .hero__trust {
    margin-top: 0;
  }

  .service-links-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .brand-marquee__set img {
    width: 112px;
    height: 46px;
    margin: 0 12px;
  }

  .review-pill {
    padding: 10px 12px;
  }

  .review-pill span {
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .coverage-counties {
    grid-template-columns: 1fr;
  }

  .google-map,
  .google-map iframe {
    min-height: 390px;
    height: 390px;
  }
}

@media (max-width: 390px) {
  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }

  .brand strong {
    font-size: 0.8rem;
  }
}
