:root {
  --black: #050505;
  --charcoal: #111311;
  --green: #00ff00;
  --green-deep: #3ad21d;
  --white: #ffffff;
  --off-white: #f5f7f3;
  --gray-100: #eef1ec;
  --gray-300: #c9cec7;
  --gray-600: #616760;
  --gray-800: #292d29;
  --max: 1200px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

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

.topbar {
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
}

.topbar .container {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  border-bottom: 1px solid var(--black);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(5, 5, 5, .97);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 225px 1fr auto;
  min-height: 86px;
  align-items: center;
  gap: 40px;
}

.logo {
  display: block;
  width: 210px;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav a {
  position: relative;
  padding: 33px 0 30px;
  color: #dce0da;
  font-size: 13px;
  font-weight: 750;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--green);
  content: "";
  transition: transform .18s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  transition: background .18s ease, color .18s ease;
}

.header-cta:hover {
  background: var(--green);
  color: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 255, 0, .08), transparent 32%),
    var(--off-white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -130px;
  width: 48%;
  height: 100%;
  transform: skewX(-9deg);
  background: var(--black);
  content: "";
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  min-height: 710px;
  padding: 86px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 21px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 4px;
  background: currentColor;
  content: "";
}

h1,
h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
}

h1 {
  max-width: 720px;
  font-size: clamp(56px, 6.1vw, 88px);
}

h1 em,
h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--gray-600);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-green {
  background: var(--green);
  color: var(--black);
}

.button-green:hover {
  background: var(--green-deep);
}

.button-black {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.button-black:hover {
  background: var(--gray-800);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--green);
  content: "✓";
  font-size: 11px;
  font-weight: 950;
}

.hero-brand-card {
  position: relative;
  min-height: 500px;
  padding: 44px;
  border: 1px solid #272a27;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--charcoal);
  background-size: 34px 34px;
  color: var(--white);
  box-shadow: 0 26px 70px rgba(0,0,0,.26);
}

.hero-brand-card::before {
  position: absolute;
  top: -85px;
  right: -85px;
  width: 230px;
  height: 230px;
  border: 32px solid rgba(0,255,0,.11);
  border-radius: 50%;
  content: "";
}

.hero-brand-card .brand-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin: 12px auto 44px;
}

.brand-card-copy {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  border-top: 1px solid #353935;
}

.brand-card-copy small {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-card-copy h3 {
  max-width: 400px;
  margin: 13px 0 14px;
  font-size: 31px;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.brand-card-copy p {
  margin: 0;
  color: #aeb4ad;
  font-size: 14px;
  line-height: 1.6;
}

.trust-strip {
  background: var(--green);
}

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

.trust-item {
  min-height: 112px;
  padding: 25px 30px;
  border-right: 1px solid rgba(0,0,0,.2);
}

.trust-item:first-child {
  border-left: 1px solid rgba(0,0,0,.2);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.035em;
}

.trust-item span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

h2 {
  font-size: clamp(43px, 5vw, 70px);
}

.section-head > p {
  margin: 0 0 4px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.65;
}

.light-brand-logo {
  width: 215px;
  margin: -38px 0 20px;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 405px;
  padding: 34px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-deep);
  box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.service-number {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 25px 0 30px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 15px;
  background: var(--green);
  font-size: 25px;
  font-weight: 950;
}

.service-card h3 {
  margin: 0 0 13px;
  font-size: 29px;
  letter-spacing: -.04em;
}

.service-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  position: absolute;
  bottom: 32px;
  left: 34px;
  align-items: center;
  gap: 9px;
  border-bottom: 2px solid var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.difference {
  background: var(--black);
  color: var(--white);
}

.difference-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.difference-brand {
  display: flex;
  min-height: 510px;
  align-items: center;
  justify-content: center;
  padding: 55px;
  border: 1px solid #2c302c;
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 20%, rgba(0,255,0,.12), transparent 30%),
    var(--charcoal);
}

.difference-brand img {
  width: 100%;
  max-width: 520px;
}

.difference-copy .eyebrow {
  color: var(--green);
}

.difference-copy h2 em {
  color: var(--green);
}

.difference-copy > p {
  margin: 24px 0 30px;
  color: #b8beb7;
  font-size: 16px;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #343834;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #343834;
}

.check-list b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-size: 13px;
}

.check-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.check-list span {
  color: #9ea49e;
  font-size: 13px;
  line-height: 1.5;
}

.process {
  background: var(--off-white);
}

.process-grid {
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border-top: 6px solid var(--green);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,.055);
}

.process-step > span {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
}

.process-step h3 {
  margin: 23px 0 12px;
  font-size: 26px;
  letter-spacing: -.04em;
}

.process-step p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.area {
  overflow: hidden;
  background: var(--white);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 80px;
}

.area-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 25px 0 28px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 9px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 7px;
  background: var(--off-white);
  font-size: 12px;
  font-weight: 850;
}

.area-card {
  position: relative;
  min-height: 450px;
  padding: 44px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.area-card::after {
  position: absolute;
  right: -90px;
  bottom: -95px;
  width: 290px;
  height: 290px;
  border: 50px solid var(--green);
  border-radius: 50%;
  content: "";
  opacity: .16;
}

.area-card small {
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.area-card h3 {
  max-width: 420px;
  margin: 18px 0 24px;
  font-size: 37px;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.area-card p {
  max-width: 380px;
  margin: 0;
  color: #abb1aa;
  font-size: 14px;
  line-height: 1.65;
}

.area-card a {
  display: inline-block;
  position: absolute;
  z-index: 2;
  bottom: 44px;
  left: 44px;
  color: var(--green);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.contact {
  padding: 110px 0;
  background: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 80px;
}

.contact .eyebrow {
  color: var(--black);
}

.contact h2 em {
  color: #146b0c;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 25px 0 31px;
  color: #164b11;
  font-size: 16px;
  line-height: 1.65;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.direct-contact a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.direct-contact small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 19px;
  overflow-wrap: anywhere;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 18px 18px 0 rgba(0,0,0,.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--gray-800);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--off-white);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  outline: none;
  text-transform: none;
}

.lead-form input,
.lead-form select {
  height: 48px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 90px;
  padding: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(58,210,29,.14);
}

.form-submit {
  width: 100%;
  border: 0;
  background: var(--black);
  color: var(--white);
}

.form-note {
  margin: -2px 0 0;
  color: var(--gray-600);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 22px;
  margin: 0;
  padding: 0;
  color: var(--gray-800);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.form-status.success {
  color: #146b0c;
}

.form-status.error {
  color: #a11616;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 255, 0, .14), transparent 24%),
    var(--charcoal);
  color: var(--white);
}

.thank-you-header {
  border-bottom: 1px solid #2d312d;
  background: rgba(5, 5, 5, .97);
}

.thank-you-header .container {
  display: flex;
  min-height: 102px;
  align-items: center;
}

.thank-you-header .logo {
  width: 210px;
}

.thank-you-main {
  display: grid;
  min-height: calc(100vh - 248px);
  place-items: center;
  padding: 80px 0;
}

.thank-you-card {
  position: relative;
  max-width: 900px;
  padding: clamp(38px, 7vw, 84px);
  overflow: hidden;
  border: 1px solid #343934;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 54%),
    var(--black);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.thank-you-card::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 40px solid rgba(0, 255, 0, .1);
  border-radius: 50%;
  content: "";
}

.thank-you-card .eyebrow {
  color: var(--green);
}

.thank-you-card h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7vw, 88px);
}

.thank-you-card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: 0;
  color: #cbd0c9;
  font-size: 18px;
  line-height: 1.75;
}

.thank-you-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.thank-you-actions .button-outline {
  border: 1px solid #4a504a;
  color: var(--white);
}

.thank-you-actions .button-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.thank-you-footer {
  padding: 22px 0;
  border-top: 1px solid #2d312d;
  background: var(--black);
  color: #777d77;
  font-size: 10px;
}

.thank-you-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 760px) {
  .thank-you-page {
    padding-bottom: 0;
  }

  .thank-you-header .container {
    min-height: 82px;
  }

  .thank-you-header .logo {
    width: 170px;
  }

  .thank-you-main {
    min-height: auto;
    padding: 45px 0;
  }

  .thank-you-card {
    padding: 34px 24px 44px;
  }

  .thank-you-actions {
    display: grid;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-footer .container {
    flex-direction: column;
  }
}

/* Phase 2 shared page system */
@media (min-width: 1041px) {
  .nav-wrap {
    grid-template-columns: 190px 1fr auto;
    gap: 20px;
  }

  .logo {
    width: 184px;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 11px;
    white-space: nowrap;
  }
}

.button-outline-light {
  border-color: #606660;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--green);
  color: var(--green);
}

.internal-hero {
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    linear-gradient(120deg, rgba(0, 255, 0, .1), transparent 42%),
    radial-gradient(circle at 87% 34%, rgba(0, 255, 0, .08), transparent 23%),
    var(--black);
  color: var(--white);
}

.breadcrumbs {
  margin-bottom: 58px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #9ea49d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--green);
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--green);
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: 90px;
}

.internal-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 5.7vw, 78px);
}

.internal-hero-grid > div > p:not(.eyebrow) {
  max-width: 790px;
  margin: 28px 0 0;
  color: #b7bdb6;
  font-size: 18px;
  line-height: 1.7;
}

.promise-card {
  padding: 30px;
  border-top: 4px solid var(--green);
  background: #171a17;
  box-shadow: 18px 18px 0 rgba(0, 255, 0, .07);
}

.promise-card span,
.decision-grid span,
.area-directory span {
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
}

.promise-card p {
  margin: 15px 0 0;
  color: #e4e8e3;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.page-section {
  padding: 100px 0;
}

.page-section:nth-child(odd) {
  background: var(--off-white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 80px;
}

.article-content {
  min-width: 0;
}

.article-content > h2,
.related-section h2,
.page-cta h2,
.contact-page-section h2 {
  margin: 74px 0 22px;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.04;
}

.article-content > h2:first-of-type {
  margin-top: 52px;
}

.article-content > p,
.article-content li,
.content-card p,
.decision-grid p,
.page-steps p,
.faq-list p,
.related-links span,
.area-directory p,
.city-services p,
.decision-note p,
.contact-expectations li {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.75;
}

.answer-lede {
  margin: 0;
  padding: 0 0 32px 30px;
  border-left: 5px solid var(--green-deep);
  color: var(--gray-800) !important;
  font-size: 21px !important;
  font-weight: 650;
  line-height: 1.65 !important;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.content-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--gray-300);
  border-radius: 13px;
  background: var(--white);
}

.content-card h3,
.decision-grid h3,
.page-steps h3,
.city-services h3 {
  margin: 0 0 13px;
  font-size: 21px;
  line-height: 1.18;
}

.content-card p,
.decision-grid p,
.page-steps p,
.city-services p {
  margin: 0;
  font-size: 14px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.decision-grid article {
  padding: 34px;
  border-radius: 13px;
  background: var(--black);
  color: var(--white);
}

.decision-grid article:last-child {
  background: var(--gray-800);
}

.decision-grid h3 {
  margin-top: 14px;
}

.decision-grid p {
  color: #bec4bd;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 17px 18px 17px 45px;
  border-bottom: 1px solid var(--gray-300);
}

.detail-list li::before {
  position: absolute;
  top: 19px;
  left: 12px;
  color: var(--green-deep);
  content: "✓";
  font-weight: 950;
}

.page-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: 32px;
  background: var(--gray-300);
}

.page-steps article {
  min-height: 245px;
  padding: 30px;
  background: var(--white);
}

.page-steps span,
.city-services span {
  display: block;
  margin-bottom: 34px;
  color: var(--green-deep);
  font-size: 24px;
  font-weight: 950;
}

.faq-list {
  border-top: 1px solid var(--gray-300);
}

.faq-list details {
  border-bottom: 1px solid var(--gray-300);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 8px;
  color: var(--green-deep);
  content: "+";
  font-size: 25px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 760px;
  margin: -4px 0 24px;
}

.article-sidebar {
  display: grid;
  position: sticky;
  top: 120px;
  gap: 18px;
}

.sidebar-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  box-shadow: 12px 12px 0 rgba(0, 255, 0, .12);
}

.sidebar-card h2,
.footer-nav h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}

.sidebar-card p {
  margin: 0;
  color: #b9bfb8;
  font-size: 14px;
  line-height: 1.7;
}

.sidebar-card > a:not(.button) {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.sidebar-links {
  gap: 0;
  box-shadow: none;
  background: var(--gray-100);
  color: var(--black);
}

.sidebar-links h2 {
  margin-bottom: 12px;
}

.sidebar-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-300);
  color: var(--black) !important;
}

.sidebar-logo {
  width: 190px;
  margin-bottom: 8px;
}

.related-section {
  background: var(--gray-100) !important;
}

.related-section h2 {
  margin-top: 0;
}

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

.related-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--gray-300);
  border-radius: 13px;
  background: var(--white);
  transition: transform .18s ease, border-color .18s ease;
}

.related-links a:hover {
  transform: translateY(-4px);
  border-color: var(--green-deep);
}

.related-links strong,
.related-links span {
  grid-column: 1;
}

.related-links strong {
  font-size: 20px;
}

.related-links b {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--green-deep);
}

.locations-heading {
  margin-top: 70px !important;
  font-size: 28px !important;
}

.inline-location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-location-links a {
  padding: 11px 15px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.inline-location-links a:hover {
  border-color: var(--green-deep);
}

.page-cta {
  padding: 88px 0;
  background: var(--black);
  color: var(--white);
}

.page-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 80px;
}

.page-cta h2 {
  max-width: 760px;
  margin: 0;
}

.page-cta p:not(.eyebrow) {
  max-width: 750px;
  color: #b8beb7;
  line-height: 1.75;
}

.cta-actions {
  display: grid;
  gap: 13px;
}

.cta-actions > a:not(.button) {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.quote-panel {
  margin: 44px 0;
  padding: 38px;
  border-left: 6px solid var(--green);
  background: var(--black);
}

.quote-panel p {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.55;
}

.area-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 45px;
}

.area-directory > a {
  min-height: 285px;
  padding: 34px;
  border-radius: 14px;
  background: var(--black);
  color: var(--white);
  transition: transform .18s ease;
}

.area-directory > a:hover {
  transform: translateY(-5px);
}

.area-directory h3 {
  margin: 35px 0 15px;
  font-size: 30px;
}

.area-directory p {
  color: #b7bdb6;
  font-size: 14px;
}

.area-directory b {
  display: block;
  margin-top: 25px;
  color: var(--green);
  font-size: 13px;
}

.service-area-services {
  background: var(--white) !important;
}

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

.city-services a {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--gray-300);
  border-radius: 13px;
  background: var(--white);
}

.city-services a:hover {
  border-color: var(--green-deep);
}

.decision-note {
  margin-top: 32px;
  padding: 30px;
  border-radius: 13px;
  background: var(--gray-100);
}

.decision-note strong {
  font-size: 19px;
}

.decision-note a {
  color: #188a0a;
  font-size: 14px;
  font-weight: 900;
}

.contact-page-section {
  padding: 100px 0;
}

.contact-page-section h2 {
  margin-top: 0;
}

.contact-expectations {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid #363a36;
}

.contact-expectations h3 {
  margin: 0 0 15px;
  font-size: 22px;
}

.contact-expectations ol {
  margin: 0;
  padding-left: 22px;
}

.contact-expectations li {
  padding: 5px 0;
  color: #b5bbb4;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 54px;
}

.footer-intro,
.footer-nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 11px;
}

.footer-intro p {
  max-width: 330px;
  margin: 8px 0 12px;
  color: #a7ada6;
  font-size: 13px;
  line-height: 1.7;
}

.footer-intro > a:not(.footer-logo) {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.footer-nav h2 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #a7ada6;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--green);
}

@media (max-width: 1040px) {
  .internal-hero-grid,
  .article-layout,
  .page-cta-grid {
    grid-template-columns: 1fr;
  }

  .internal-hero-grid {
    gap: 48px;
  }

  .promise-card {
    max-width: 680px;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-directory,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-cta-grid {
    gap: 35px;
  }

  .cta-actions {
    max-width: 400px;
  }
}

@media (max-width: 760px) {
  .internal-hero {
    padding: 25px 0 68px;
  }

  .breadcrumbs {
    margin-bottom: 38px;
  }

  .internal-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .internal-hero-grid > div > p:not(.eyebrow) {
    font-size: 16px;
  }

  .page-section,
  .page-cta,
  .contact-page-section {
    padding: 72px 0;
  }

  .content-card-grid,
  .decision-grid,
  .page-steps,
  .related-links,
  .city-services,
  .area-directory,
  .article-sidebar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-content > h2,
  .related-section h2,
  .page-cta h2,
  .contact-page-section h2 {
    margin-top: 58px;
    font-size: clamp(33px, 10vw, 46px);
  }

  .answer-lede {
    padding-left: 20px;
    font-size: 18px !important;
  }

  .content-card,
  .page-steps article,
  .city-services a {
    min-height: auto;
  }

  .related-links a {
    min-height: 165px;
  }

  .footer-grid {
    gap: 34px;
  }
}

.site-footer {
  padding: 68px 0 25px;
  background: var(--black);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 65px;
  padding-bottom: 52px;
}

.footer-logo {
  width: 250px;
}

.footer-main p {
  max-width: 440px;
  margin: 0;
  color: #a7ada6;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 10px;
  font-size: 13px;
  font-weight: 850;
}

.footer-links a:last-child {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  border-top: 1px solid #303330;
  color: #777d77;
  font-size: 10px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: 225px 1fr;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero::before {
    right: -30%;
    width: 75%;
  }

  .hero-grid,
  .difference-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-brand-card {
    width: min(100%, 680px);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .difference-brand {
    min-height: 380px;
  }

  .lead-form {
    max-width: 680px;
  }

  .footer-main {
    grid-template-columns: 250px 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 62px;
  }

  .topbar .container {
    min-height: 42px;
    justify-content: center;
    text-align: center;
  }

  .topbar p:last-child {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    gap: 18px;
  }

  .logo {
    width: 170px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero::before {
    top: auto;
    right: -50%;
    bottom: 0;
    width: 120%;
    height: 47%;
  }

  .hero-grid {
    min-height: auto;
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(49px, 14.5vw, 68px);
  }

  h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-brand-card {
    min-height: 420px;
    padding: 30px;
  }

  .hero-brand-card .brand-logo {
    margin-bottom: 30px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    min-height: 96px;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,.2);
  }

  .section {
    padding: 82px 0;
  }

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

  .service-card {
    min-height: 370px;
  }

  .difference-brand {
    min-height: 310px;
    padding: 35px;
  }

  .area-card {
    min-height: 420px;
    padding: 32px;
  }

  .area-card a {
    bottom: 32px;
    left: 32px;
    font-size: 21px;
  }

  .contact {
    padding: 82px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px;
    box-shadow: 10px 10px 0 rgba(0,0,0,.16);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    width: 230px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    display: grid;
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: .85fr 1.15fr;
    height: 62px;
    box-shadow: 0 -8px 28px rgba(0,0,0,.19);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--black);
    font-size: 12px;
    font-weight: 950;
  }

  .mobile-cta a:last-child {
    background: var(--green);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #353935;
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: 225px 1fr auto;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .nav {
    position: absolute;
    z-index: 20;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid #303430;
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: rgba(5, 5, 5, .99);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .22);
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .nav a {
    padding: 14px 16px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }
}
