:root {
  --red: #B73B1D;
  --red-dark: #8D2C15;
  --black: #0B1720;
  --white: #FFFFFF;
  --gray: #F3F6F6;
  --gray-2: #DCE5E6;
  --text: #14242E;
  --muted: #52646D;
  --yellow: #F6BD3A;
  --yellow-dark: #E3A71D;
  --navy: #102A3A;
  --teal: #0D6B6D;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  padding-bottom: 76px;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

h1, h2, h3, h4 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 800; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.025em; }
h1 { font-size: clamp(2.2rem, 5vw + .5rem, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw + .5rem, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; }
ul.checks { list-style: none; padding: 0; margin: 0 0 1em; }
ul.checks li { padding-left: 30px; position: relative; margin-bottom: 8px; }
ul.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--red); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* ==== TOP BAR ==== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: visible;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 77px; min-height: 77px; padding: 0 20px; max-width: 1240px; margin: 0 auto;
  overflow: visible;
}
.brand {
  display: block;
  width: 197px; height: 127px;
  background: var(--white); border: 1px solid var(--gray-2); border-top: 0;
  border-radius: 0 0 10px 10px; box-shadow: 0 10px 26px rgba(0,0,0,.1);
  padding: 12px 15px 10px; overflow: hidden;
  align-self: flex-start;
  text-decoration: none; flex-shrink: 0; margin: 0; position: relative; z-index: 2;
}
.brand-dv,.brand-city,.brand-service { display:block; line-height:1; text-align:center; }
.brand-dv { color:var(--navy); font-weight:900; font-size:2.15rem; letter-spacing:-.08em; }
.brand-city { color:var(--red); font-weight:900; font-size:.87rem; letter-spacing:.14em; margin-top:5px; }
.brand-service { color:var(--navy); font-weight:800; font-size:.64rem; letter-spacing:.18em; margin-top:6px; }
@media (max-width: 600px) {
  .topbar-inner { height: 64px; min-height: 64px; }
  .brand { width: 155px; height: 96px; }
  .brand { padding: 9px 10px 7px; }
  .brand-dv { font-size:1.65rem; }
  .brand-city { font-size:.69rem; margin-top:4px; }
  .brand-service { font-size:.5rem; margin-top:4px; }
}
@media (max-width: 380px) {
  .topbar-inner { height: 58px; min-height: 58px; }
  .brand { width: 135px; height: 81px; }
  .brand-dv { font-size:1.45rem; }
}

.nav { display: none; align-items: center; gap: 22px; }
.nav a { color: var(--black); font-weight: 600; font-size: .95rem; text-decoration: none; }
.nav a:hover, .nav a.active { color: var(--red); text-decoration: none; }
@media (min-width: 1000px) { .nav { display: flex; } }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: "▾"; margin-left: 4px; font-size: .7em; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  background: var(--white);
  border-radius: 10px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-2);
  padding: 10px;
  min-width: 240px;
  display: none;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 14px; border-radius: 6px;
  color: var(--black); font-weight: 600; font-size: .9rem;
}
.nav-dropdown-menu a:hover { background: var(--gray); color: var(--red); }
.nav-dropdown-menu.cols { columns: 2; column-gap: 4px; min-width: 380px; }

.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white) !important;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; white-space: nowrap;
  transition: background .15s;
}
.topbar-cta:hover { background: var(--red-dark); text-decoration: none; }
@media (max-width: 480px) { .topbar-cta { padding: 10px 14px; font-size: .9rem; } }

/* ==== HERO ==== */
.hero {
  position: relative; color: var(--white);
  background-color: #1a1a1a;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(16,42,58,.94), rgba(16,42,58,.76) 55%, rgba(228,87,46,.68));
}
.hero > * { position: relative; z-index: 1; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 70px 20px 80px; text-align: center; }
.hero h1 { color: var(--white); text-shadow: 0 2px 14px rgba(0,0,0,.3); margin-bottom: 18px; }
.hero .sub {
  font-size: clamp(1.05rem, 1.4vw + .6rem, 1.3rem);
  max-width: 780px; margin: 0 auto 32px;
  color: rgba(255,255,255,.95); line-height: 1.5;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-trust { margin-top: 32px; color: rgba(255,255,255,.92); font-size: .95rem; font-weight: 500; letter-spacing: .02em; }
.hero-trust .dot { color: var(--yellow); margin: 0 8px; }

/* ==== Compact hero for inner pages ==== */
.hero.compact .hero-inner { padding: 56px 20px 60px; }
.hero.compact h1 { font-size: clamp(2rem, 4vw + .4rem, 3rem); }
.hero.compact .sub { font-size: clamp(1rem, 1vw + .6rem, 1.18rem); margin-bottom: 24px; }

.breadcrumbs { font-size: .85rem; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--yellow); text-decoration: underline; }
.breadcrumbs .sep { margin: 0 6px; opacity: .6; }

/* ==== Buttons ==== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem;
  padding: 18px 28px; border-radius: 12px;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .12s, background .15s, box-shadow .15s;
  cursor: pointer; line-height: 1; min-height: 56px;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-yellow { background: var(--yellow); color: var(--black) !important; box-shadow: 0 8px 22px rgba(255,184,0,.35); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-red { background: var(--red); color: var(--white) !important; box-shadow: 0 8px 22px rgba(200,16,46,.3); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-white { background: transparent; color: var(--white) !important; border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black) !important; }
.btn-outline-red { background: var(--white); color: var(--red) !important; border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white) !important; }
.btn.sm { padding: 14px 22px; font-size: 1rem; min-height: 48px; }

/* ==== TRUST ==== */
.trust { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--gray-2); }
.trust h3 {
  text-align: center; color: var(--muted);
  font-family: 'Inter'; font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 28px;
}
.logos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px;
  align-items: center; justify-items: center;
  max-width: 1080px; margin: 0 auto;
}
@media (min-width: 700px) { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .logos { grid-template-columns: repeat(6, 1fr); } }
.logos img {
  max-width: 140px; max-height: 70px; width: auto; height: auto;
  filter: grayscale(1); opacity: .75;
  transition: filter .2s, opacity .2s;
}
.logos img:hover { filter: grayscale(0); opacity: 1; }

/* ==== Sections ==== */
section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-block; color: var(--red); font-weight: 700;
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Services grid */
.services-bg { background: var(--gray); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: auto; min-width: 68px; height: 40px; border-radius: 8px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; padding: 0 12px; align-self: flex-start;
  font-size: .7rem; font-weight: 900; letter-spacing: .11em;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card .card-cta {
  margin-top: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: var(--white) !important;
  padding: 12px 16px; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
}
.card .card-cta:hover { background: var(--red-dark); text-decoration: none; }
.card .read-more {
  margin-top: 10px; text-align: center; font-size: .9rem; font-weight: 600;
  color: var(--red);
}

/* How it works */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.step {
  background: var(--white); border-radius: 16px; padding: 32px 26px;
  border: 2px solid var(--gray-2); position: relative;
  transition: border-color .15s, transform .15s;
}
.step:hover { border-color: var(--red); transform: translateY(-3px); }
.step .num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-family: 'Poppins'; font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }
.how-cta { text-align: center; margin-top: 40px; }

/* Why */
.why-bg { background: var(--gray); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 32px; } }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); padding: 20px 22px; border-radius: 12px;
  box-shadow: var(--shadow);
}
.why-item .check {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.why-item strong { display: block; color: var(--black); font-family: 'Poppins'; font-weight: 700; margin-bottom: 4px; font-size: 1.05rem; }
.why-item span { color: var(--muted); font-size: .95rem; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review {
  background: var(--white); border-radius: 16px; padding: 26px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-2);
  display: flex; flex-direction: column;
}
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--text); font-size: .98rem; flex: 1; line-height: 1.55; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-2); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; font-family: 'Poppins';
  flex-shrink: 0;
}
.review-author .who { font-weight: 700; color: var(--black); font-size: .95rem; }
.review-author .src { font-size: .8rem; color: var(--muted); }
.reviews-cta { text-align: center; margin-top: 36px; }

/* Before & After */
.ba-bg { background: var(--gray); }
.ba-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 700px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-item {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--black);
  aspect-ratio: 1672/941;
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-item::after {
  content: "BEFORE | AFTER"; position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  background: rgba(0,0,0,.75); color: var(--white);
  padding: 6px 14px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .16em;
}
.ba-cta { text-align: center; margin-top: 36px; }

/* Area */
.area-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .area-wrap { grid-template-columns: 1fr 1fr; gap: 50px; } }
.area-cities { display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 20px 0 28px; }
.city-chip {
  background: var(--gray); color: var(--text);
  padding: 8px 14px; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.city-chip:hover { background: var(--red); color: var(--white); text-decoration: none; }
.area-map { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 14px; box-shadow: var(--shadow); }

/* FAQ */
.faq-bg { background: var(--gray); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-2); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: var(--white); border: 0;
  font-family: 'Poppins'; font-weight: 700; font-size: 1.05rem;
  color: var(--black);
  padding: 20px 56px 20px 22px; position: relative;
}
.faq-q:hover { color: var(--red); }
.faq-q::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--red); font-weight: 400;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; padding: 0 22px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* Final CTA */
.final {
  background: linear-gradient(135deg, var(--navy) 0%, #173F52 66%, var(--teal) 100%);
  color: var(--white); text-align: center;
}
.final h2 { color: var(--white); }
.final p { color: rgba(255,255,255,.95); font-size: 1.15rem; max-width: 640px; margin: 0 auto 30px; }
.final-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Footer */
footer { background: var(--black); color: rgba(255,255,255,.78); padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; } }
.foot-grid h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 700; letter-spacing: 0; }
.foot-grid a { color: rgba(255,255,255,.78); text-decoration: none; }
.foot-grid a:hover { color: var(--white); text-decoration: underline; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-brand img { height: 96px; width: auto; display: block; background: var(--white); padding: 8px; border-radius: 10px; margin-bottom: 14px; }
.foot-brand p { font-size: .95rem; line-height: 1.6; }
.foot-tag { color: rgba(255,255,255,.6); font-style: italic; font-size: .9rem; margin-top: 6px; }
.foot-phone { display: inline-block; color: var(--yellow) !important; font-weight: 700; font-size: 1.15rem; margin-top: 4px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.badge {
  background: rgba(255,255,255,.08); color: var(--white);
  padding: 6px 12px; border-radius: 999px; font-size: .75rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px; padding-top: 22px;
  text-align: center; font-size: .85rem; color: rgba(255,255,255,.55);
}
.copyright a { color: rgba(255,255,255,.7); margin: 0 8px; }

/* Sticky mobile bar */
.mbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--gray-2);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
}
.mbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 8px 4px;
  border-radius: 10px;
  font-size: .78rem; font-weight: 700;
  text-decoration: none; line-height: 1.1; text-align: center;
}
.mbar .ic { font-size: 1.15rem; line-height: 1; }
.mbar .call { background: var(--red); color: var(--white); }
.mbar .text { background: var(--gray); color: var(--black); }
.mbar .quote { background: var(--yellow); color: var(--black); }
@media (min-width: 900px) { .mbar { display: none; } }

/* ==== Page content (long-form) ==== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.4em; margin-bottom: .4em; font-size: 1.4rem; }
.prose p, .prose ul, .prose ol { font-size: 1.05rem; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose ul li, .prose ol li { margin-bottom: 6px; }
.prose blockquote {
  border-left: 4px solid var(--red); background: var(--gray);
  padding: 16px 20px; margin: 1.4em 0; border-radius: 6px;
  font-style: italic;
}
.prose img { border-radius: 12px; box-shadow: var(--shadow); margin: 1.4em 0; }

/* Two-column content */
.two-col { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 60px; } }
.two-col img { border-radius: 14px; box-shadow: var(--shadow-lg); width: 100%; }

/* City links grid */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
@media (min-width: 700px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
.city-link {
  background: var(--white); border: 2px solid var(--gray-2);
  padding: 18px 16px; border-radius: 12px;
  font-weight: 700; color: var(--black);
  text-align: center; text-decoration: none;
  transition: border-color .15s, transform .15s, color .15s;
}
.city-link:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); text-decoration: none; }
.city-link small { display: block; color: var(--muted); font-size: .75rem; font-weight: 500; margin-top: 4px; }

/* Form */
.form-wrap { background: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: var(--shadow-lg); max-width: 580px; margin: 0 auto; }
.form-wrap label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.form-wrap input, .form-wrap select, .form-wrap textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--gray-2); border-radius: 10px;
  font: inherit; margin-bottom: 16px;
  background: var(--white); color: var(--text);
}
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus { outline: none; border-color: var(--red); }
.form-wrap textarea { min-height: 110px; resize: vertical; }
.form-wrap button { width: 100%; }

/* Utility */
.center { text-align: center; }
.mt-4 { margin-top: 28px; }
.mb-0 { margin-bottom: 0 !important; }

/* ==== Cape Coral additions ==== */
.skip-link { position: fixed; left: 12px; top: -70px; z-index: 1000; background: var(--yellow); color: var(--black); padding: 12px 18px; border-radius: 0 0 8px 8px; font-weight: 800; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; margin-left: auto; }
.nav-toggle > span:not(.sr-only) { display: block; width: 25px; height: 3px; border-radius: 3px; background: var(--navy); }
.nav.open { display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 22px 20px 26px; background: var(--white); border-bottom: 1px solid var(--gray-2); box-shadow: var(--shadow-lg); }
.nav.open a { padding: 13px 6px; border-bottom: 1px solid var(--gray-2); }
@media (min-width: 1000px) { .nav-toggle { display: none; } .nav { margin-left: auto; } }

.hero-inner { padding-top: 92px; }
.hero-kicker { display: inline-block; margin-bottom: 16px; color: var(--yellow); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.home-hero .hero-inner { padding-top: 108px; padding-bottom: 96px; }
.eyebrow { display: inline-block; color: var(--red); font-weight: 800; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow.light { color: var(--yellow); }

.proof-strip { padding: 0; background: var(--navy); color: var(--white); border: 0; }
.proof-grid { display: grid; grid-template-columns: 1fr; padding-top: 24px; padding-bottom: 24px; }
.proof-grid > div { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.proof-grid > div:last-child { border-bottom: 0; }
.proof-grid strong,.proof-grid span { display: block; }
.proof-grid strong { color: var(--yellow); font-size: .93rem; letter-spacing: .02em; }
.proof-grid span { color: rgba(255,255,255,.78); font-size: .82rem; margin-top: 3px; }
@media (min-width: 700px) { .proof-grid { grid-template-columns: repeat(2,1fr); } .proof-grid > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); } }
@media (min-width: 1050px) { .proof-grid { grid-template-columns: repeat(4,1fr); } .proof-grid > div { border-bottom: 0; border-right: 1px solid rgba(255,255,255,.12); } }

.problem-section { background: var(--white); }
.top-align { align-items: start; }
.scope-card { background: var(--navy); color: var(--white); padding: 34px; border-radius: 16px; box-shadow: var(--shadow-lg); }
.scope-card > span { color: var(--yellow); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .75rem; }
.scope-card h3 { color: var(--white); margin-top: 14px; }
.scope-card p { font-size: 1.2rem; }
.scope-card a { color: var(--yellow); font-weight: 800; }

.audience-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 940px; margin: 0 auto; }
.audience-grid > div { display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: var(--white); border: 1px solid var(--gray-2); border-radius: 12px; font-weight: 700; box-shadow: var(--shadow); }
.audience-grid span { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--teal); color: var(--white); }
@media (min-width: 700px) { .audience-grid { grid-template-columns: repeat(2,1fr); } }
.audience-grid.compact { grid-template-columns: 1fr; }

/* Local city-page content */
.local-notes-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 800px) { .local-notes-grid { grid-template-columns: repeat(3, 1fr); } }
.local-note { background: var(--white); border: 1px solid var(--gray-2); border-radius: 14px; padding: 28px 24px; box-shadow: var(--shadow); }
.local-note-num { display: inline-block; color: var(--red); font-family: 'Poppins'; font-size: .82rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 14px; }
.local-note h3 { margin-bottom: 10px; font-size: 1.25rem; }
.local-note p { margin: 0; color: var(--muted); }
.local-operator-grid { display: grid; grid-template-columns: 1fr; gap: 46px; align-items: start; }
@media (min-width: 900px) { .local-operator-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; } }
.local-operator-grid > div > p { color: var(--muted); }

.gallery-note { color: var(--muted); text-align: center; font-size: .86rem; max-width: 760px; margin: 25px auto 0; }
.number-list { list-style: none; counter-reset: list; padding: 0 !important; }
.number-list li { counter-increment: list; position: relative; padding: 0 0 22px 58px; }
.number-list li::before { content: counter(list); position: absolute; left: 0; top: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--red); color: var(--white); font-weight: 900; }
.number-list strong { display: block; margin-bottom: 4px; }

.city-grid.local { grid-template-columns: 1fr; }
.city-grid.area-index { max-width: 1020px; }
.setup-notice { border-top: 5px solid var(--yellow); background: #FFFBEE; }
.iframe-wrap { padding: 8px; }
.iframe-wrap iframe { border: 0; border-radius: 12px; display: block; }
.legal-hero { background: var(--navy); }
.not-found { min-height: 60vh; display: flex; align-items: center; }
.error-code { display: block; color: var(--red); font-size: clamp(5rem, 18vw, 10rem); line-height: .8; font-weight: 900; letter-spacing: -.08em; margin-bottom: 30px; }

.footer-wordmark { display: flex; flex-direction: column; margin-bottom: 18px; }
.footer-wordmark strong { color: var(--yellow); font-size: 2.2rem; line-height: 1; letter-spacing: -.07em; }
.footer-wordmark span { color: var(--white); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; font-size: .78rem; margin-top: 5px; }
.mbar.two-actions { grid-template-columns: 1fr 1fr; }
.faq-item h3 { margin: 0; }
.faq-a p { margin: 0; }

@media (max-width: 999px) {
  .topbar-cta { font-size: .82rem; padding: 10px 12px; }
}
@media (max-width: 600px) {
  .topbar-cta { display: none; }
  section { padding: 54px 0; }
  .hero-inner,.home-hero .hero-inner { padding-top: 78px; padding-bottom: 62px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .btn { font-size: 1rem; padding: 16px 20px; }
  .section-head { margin-bottom: 34px; }
  .city-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 25px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
