.seo-header {
  position: relative;
  z-index: 10;
  min-height: 92px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.seo-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.seo-header .logo__image {
  width: 230px;
  height: auto;
}

.seo-header nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.seo-header nav a:hover,
.seo-header nav a:focus {
  color: var(--accent-dark);
}

.seo-header .header-phone {
  font-size: 18px;
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 82px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 13, 16, 0.98), rgba(4, 13, 16, 0.82) 58%, rgba(4, 13, 16, 0.56)),
    url("../img/hero-bg-source-match.webp") center / cover no-repeat;
}

.seo-hero .container {
  position: relative;
  z-index: 1;
}

.seo-hero h1 {
  max-width: 900px;
  margin: 16px 0 18px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.seo-hero p:not(.seo-eyebrow) {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.6;
}

.seo-eyebrow {
  color: #7bd067;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #fff;
  text-decoration: underline;
}

.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.seo-hero .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  align-items: start;
  padding-top: 76px;
  padding-bottom: 88px;
}

.seo-section {
  padding-bottom: 56px;
}

.seo-section + .seo-section {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.seo-section h2,
.seo-directory-intro h2,
.seo-directory-cta h2 {
  margin: 0 0 18px;
  color: #0a171a;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.seo-section p,
.seo-directory-intro p {
  margin: 0 0 18px;
  color: #3d4946;
  font-size: 17px;
  line-height: 1.72;
}

.seo-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.seo-two-col h2 {
  font-size: 27px;
}

.seo-checks {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-checks li {
  position: relative;
  padding-left: 31px;
  color: #2d3936;
  line-height: 1.55;
}

.seo-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.seo-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.seo-process li {
  position: relative;
  min-height: 145px;
  padding: 26px 24px 22px 70px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8faf7;
  counter-increment: process;
}

.seo-process li::before {
  content: counter(process);
  position: absolute;
  left: 22px;
  top: 23px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent-dark);
  font-weight: 800;
}

.seo-process strong,
.seo-process span {
  display: block;
}

.seo-process strong {
  margin-bottom: 8px;
  color: #10201d;
  font-weight: 800;
}

.seo-process span {
  color: #56615e;
  font-size: 14px;
  line-height: 1.55;
}

.seo-faq__list {
  display: grid;
  gap: 12px;
}

.seo-faq details,
.area-directory details {
  border: 1px solid #dbe2dc;
  border-radius: 10px;
  background: #fff;
}

.seo-faq summary,
.area-directory summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  cursor: pointer;
  color: #10201d;
  font-weight: 800;
  list-style: none;
}

.seo-faq summary::-webkit-details-marker,
.area-directory summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after,
.area-directory summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-dark);
  font-size: 25px;
}

.seo-faq details[open] summary::after,
.area-directory details[open] summary::after {
  content: "–";
}

.seo-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
}

.seo-sidebar {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 22px;
}

.seo-cta-card,
.seo-sidebar__links {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(10, 24, 20, 0.08);
  background: #fff;
}

.seo-cta-card {
  color: #fff;
  border: 0;
  background: #071417;
}

.seo-cta-card h2,
.seo-sidebar__links h2 {
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 800;
}

.seo-cta-card p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.seo-cta-card > a:last-child {
  display: block;
  margin-top: 16px;
  color: #9fdf90;
  font-size: 13px;
  text-align: center;
}

.seo-sidebar__links {
  display: grid;
  gap: 12px;
}

.seo-sidebar__links a {
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: #2f7425;
  font-size: 14px;
  font-weight: 700;
}

.seo-sidebar__links a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.seo-service-links a {
  display: block;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8faf7;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.seo-service-links a:hover,
.seo-service-links a:focus {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.seo-service-links strong,
.seo-service-links span {
  display: block;
}

.seo-service-links strong {
  margin-bottom: 8px;
  color: #14221f;
  font-weight: 800;
}

.seo-service-links span {
  color: #606b68;
  font-size: 13px;
  line-height: 1.5;
}

.seo-location-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.seo-location-list li {
  position: relative;
  padding-left: 17px;
  color: #34433f;
  font-size: 14px;
  line-height: 1.5;
}

.seo-location-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.seo-hero--directory {
  padding-bottom: 72px;
}

.seo-directory-intro {
  max-width: 910px;
  padding-top: 70px;
  padding-bottom: 36px;
}

.area-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-bottom: 80px;
}

.area-directory__column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.area-directory__column > h2 {
  margin: 0 0 6px;
  color: #10201d;
  font-size: 22px;
  text-align: left;
}

.area-directory summary {
  display: grid;
  gap: 5px;
}

.area-directory summary small {
  color: #68736f;
  font-size: 12px;
  font-weight: 600;
}

.area-directory details > div {
  padding: 0 22px 24px;
}

.area-directory__hub {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.area-directory ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-directory li {
  color: #53605c;
  font-size: 13px;
  line-height: 1.45;
}

.seo-directory-cta {
  padding: 70px 0;
  color: #fff;
  text-align: center;
  background: #071417;
}

.seo-directory-cta h2 {
  color: #fff;
}

.seo-directory-cta p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.seo-footer {
  padding-top: 62px;
  color: rgba(255, 255, 255, 0.82);
  background: #041014;
}

.seo-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}

.seo-footer img {
  width: 255px;
  height: auto;
}

.seo-footer p,
.seo-footer a,
.seo-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.seo-footer nav,
.seo-footer address {
  display: grid;
  align-content: start;
  gap: 9px;
  font-style: normal;
}

.seo-footer strong {
  margin-bottom: 8px;
  color: #fff;
  font-weight: 800;
}

.seo-footer a:hover,
.seo-footer a:focus {
  color: #8bd87a;
}

.seo-footer__bottom {
  margin: 0;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.home-faq {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 64px 0 72px;
  background: var(--cream);
}

.home-faq .container {
  width: min(var(--max), calc(100% - 220px));
}

.home-faq__layout {
  display: grid;
  grid-template-columns: minmax(330px, 400px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.home-faq__intro {
  padding-top: 3px;
}

.home-faq__eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-faq__rule {
  display: block;
  width: 49px;
  height: 3px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.home-faq h2 {
  max-width: 360px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}

.home-faq__intro > p:not(.home-faq__eyebrow) {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.home-faq__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.home-faq__phone-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 2px solid rgba(177, 124, 34, 0.65);
  border-radius: 50%;
  background: #fff;
}

.home-faq__phone-icon img {
  width: 22px;
  height: 22px;
  filter: sepia(1) saturate(1.55) hue-rotate(352deg) brightness(0.88);
}

.home-faq__contact strong {
  display: block;
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 800;
}

.home-faq__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.home-faq__trust > span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(17, 21, 20, 0.08);
  border-radius: 14px;
  background: #fff;
}

.home-faq__trust img {
  width: 26px;
  height: 26px;
  filter: sepia(1) saturate(1.55) hue-rotate(352deg) brightness(0.88);
}

.home-faq__trust b {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.home-faq .seo-faq__list {
  gap: 16px;
  padding-top: 8px;
}

.home-faq .seo-faq__list details {
  overflow: hidden;
  border: 1px solid rgba(17, 21, 20, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-faq .seo-faq__list details:hover {
  border-color: rgba(66, 144, 50, 0.35);
  transform: translateY(-1px);
}

.home-faq .seo-faq__list details[open] {
  border-color: rgba(66, 144, 50, 0.45);
  box-shadow: 0 18px 42px rgba(18, 24, 20, 0.12);
}

.home-faq .seo-faq__list summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  gap: 16px;
  align-items: center;
  min-height: 84px;
  padding: 18px 26px 18px 22px;
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.home-faq .seo-faq__list summary::-webkit-details-marker {
  display: none;
}

.home-faq .seo-faq__list details[open] summary {
  min-height: 84px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.home-faq .seo-faq__list details p {
  margin: 0;
  padding: 23px 40px 27px 42px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.home-faq__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-light);
}

.home-faq__arrow img {
  width: 14px;
  height: 14px;
}

.home-faq__chevron--open,
.home-faq__minus {
  display: none;
}

.home-faq .seo-faq__list details[open] .home-faq__arrow {
  background: var(--accent);
}

.home-faq .seo-faq__list details[open] .home-faq__chevron--closed,
.home-faq .seo-faq__list details[open] .home-faq__plus {
  display: none;
}

.home-faq .seo-faq__list details[open] .home-faq__chevron--open,
.home-faq .seo-faq__list details[open] .home-faq__minus {
  display: block;
}

.home-faq__toggle {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.home-faq__toggle img {
  width: 18px;
  height: 18px;
}

.service-card[href] {
  color: inherit;
}

.service-card[href]:hover h3,
.service-card[href]:focus h3 {
  color: var(--accent-dark);
}

@media (max-width: 1320px) and (min-width: 821px) {
  .home-faq .container {
    width: min(1130px, calc(100% - 48px));
  }
}

@media (max-width: 1100px) {
  .seo-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .seo-header nav {
    display: none;
  }

  .seo-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 35px;
  }

  .seo-location-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .seo-header {
    min-height: 74px;
  }

  .seo-header__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .seo-header .logo__image {
    width: 175px;
  }

  .seo-header .header-phone {
    display: inline-flex;
    font-size: 14px;
  }

  .seo-header .btn {
    display: none;
  }

  .seo-hero {
    padding: 52px 0 60px;
  }

  .seo-hero h1 {
    font-size: 42px;
  }

  .seo-layout {
    display: block;
    padding-top: 58px;
  }

  .seo-sidebar {
    position: static;
    margin-top: 20px;
  }

  .seo-two-col,
  .seo-service-links,
  .area-directory,
  .seo-footer__grid {
    grid-template-columns: 1fr;
  }

  .seo-footer__grid {
    gap: 34px;
  }

  .home-faq {
    min-height: 0;
    padding: 64px 0 76px;
  }

  .home-faq .container {
    width: min(720px, calc(100% - 48px));
  }

  .home-faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-faq__intro {
    padding-top: 0;
  }

  .home-faq h2,
  .home-faq__intro > p:not(.home-faq__eyebrow) {
    max-width: 620px;
  }

  .home-faq__contact {
    max-width: 520px;
  }

  .home-faq__trust {
    max-width: 560px;
  }

  .home-faq .seo-faq__list {
    padding-top: 0;
  }

  .home-faq .seo-faq__list summary {
    font-size: 19px;
  }
}

@media (max-width: 560px) {
  .seo-header .header-phone {
    font-size: 0;
  }

  .seo-header .header-phone::after {
    content: "Call Now";
    font-size: 14px;
  }

  .seo-hero h1 {
    font-size: 36px;
  }

  .seo-hero p:not(.seo-eyebrow) {
    font-size: 16px;
  }

  .seo-hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .seo-process,
  .seo-location-list,
  .area-directory ul {
    grid-template-columns: 1fr;
  }

  .seo-section {
    padding-bottom: 42px;
  }

  .seo-section + .seo-section {
    padding-top: 42px;
  }

  .home-faq {
    padding: 52px 0 64px;
  }

  .home-faq .container {
    width: calc(100% - 32px);
  }

  .home-faq h2 {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .home-faq__eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .home-faq__rule {
    margin-bottom: 30px;
  }

  .home-faq__intro > p:not(.home-faq__eyebrow) {
    font-size: 16px;
  }

  .home-faq__contact {
    gap: 18px;
    margin-top: 30px;
    padding-top: 24px;
    font-size: 14px;
  }

  .home-faq__phone-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .home-faq__phone-icon img {
    width: 22px;
    height: 22px;
  }

  .home-faq__contact strong {
    font-size: 18px;
  }

  .home-faq__trust {
    margin-top: 34px;
  }

  .home-faq__trust > span {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 9px;
  }

  .home-faq__trust img {
    width: 27px;
    height: 27px;
  }

  .home-faq__trust b {
    font-size: 10px;
  }

  .home-faq .seo-faq__list summary {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    gap: 12px;
    min-height: 88px;
    padding: 19px 16px;
    font-size: 15px;
  }

  .home-faq .seo-faq__list details[open] summary {
    min-height: 88px;
  }

  .home-faq__arrow {
    width: 38px;
    height: 38px;
  }

  .home-faq__toggle img {
    width: 18px;
    height: 18px;
  }

  .home-faq .seo-faq__list details p {
    padding: 24px 20px 26px;
    font-size: 15px;
  }
}

/* Local content blocks on generated SEO pages */
.seo-problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.seo-problem-list li {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8faf7;
}

.seo-problem-list strong {
  display: block;
  margin-bottom: 10px;
  color: #10201d;
  font-weight: 800;
  line-height: 1.35;
}

.seo-problem-list p {
  margin: 0;
  color: #56615e;
  font-size: 14px;
  line-height: 1.62;
}

.seo-area-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.seo-area-links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
  color: #2f7425;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.seo-area-links a:hover,
.seo-area-links a:focus {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.seo-area-links__more {
  margin-top: 20px;
}

.seo-area-links__more a {
  color: var(--accent-dark);
  font-weight: 800;
}

.seo-request-cta {
  padding: 40px 38px 44px;
  border-radius: 14px;
  color: #fff;
  background: #071417;
}

.seo-request-cta h2 {
  color: #fff;
}

.seo-request-cta p {
  color: rgba(255, 255, 255, 0.8);
}

/* Homepage: popular service areas internal-linking block */
.popular-areas {
  background: var(--cream);
  padding-top: 50px;
  padding-bottom: 54px;
}

.popular-areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.popular-areas__col h3 {
  margin: 0 0 10px;
  color: var(--soft-ink);
  font-size: 18px;
  font-weight: 800;
}

.popular-areas__col ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.popular-areas__col a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 21, 20, 0.08);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.popular-areas__col a:hover,
.popular-areas__col a:focus {
  color: var(--accent);
  transform: translateY(-1px);
}

.popular-areas__all {
  margin-top: 22px;
  text-align: center;
}

@media (max-width: 900px) {
  .seo-problem-list {
    grid-template-columns: 1fr;
  }

  .seo-area-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .seo-area-links {
    grid-template-columns: 1fr;
  }

  .seo-request-cta {
    padding: 30px 22px 34px;
  }

  .popular-areas__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Global typography request: keep SEO page text non-bold even after SEO overrides. */
body,
body *,
body *::before,
body *::after {
  font-weight: 400 !important;
}

/* 2026-07-04 reference match for homepage FAQ and area link blocks. */
.home-faq {
  min-height: 780px;
  padding: 64px 0 72px;
  background:
    linear-gradient(180deg, rgba(247, 248, 245, 0.96), rgba(247, 248, 245, 0.96)),
    var(--cream);
}

.home-faq .container {
  width: min(var(--max), calc(100% - 220px));
}

.home-faq__layout {
  grid-template-columns: minmax(330px, 400px) minmax(0, 1fr);
  gap: 56px;
}

.home-faq__eyebrow {
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.home-faq__rule {
  background: var(--gold);
}

.home-faq h2 {
  max-width: 360px;
  margin-bottom: 26px;
  color: #101a17;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 500;
}

.home-faq__intro > p:not(.home-faq__eyebrow) {
  color: #59635f;
}

.home-faq__contact {
  padding-top: 26px;
  border-top: 1px solid #dfe4de;
}

.home-faq__contact strong {
  color: rgb(179, 124, 35);
}

.home-faq__trust {
  margin-top: 38px;
}

.home-faq__trust > span {
  grid-template-columns: 30px 1fr;
  padding: 0 13px;
  border-right: 1px solid #dfe4de;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-faq__trust > span:first-child {
  padding-left: 0;
}

.home-faq__trust > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-faq__trust img {
  width: 30px;
  height: 30px;
}

.home-faq .seo-faq__list {
  gap: 20px;
  padding-top: 24px;
}

.home-faq .seo-faq__list details {
  border-color: #e4e8e2;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(17, 21, 20, 0.08);
}

.home-faq .seo-faq__list details[open] {
  border-color: rgba(62, 139, 47, 0.58);
  box-shadow: 0 16px 34px rgba(31, 77, 39, 0.11);
}

.home-faq .seo-faq__list summary {
  min-height: 82px;
  color: #1d2723;
  font-size: 18px;
}

.home-faq .seo-faq__list details[open] summary {
  min-height: 88px;
  color: #131c19;
  border-bottom: 1px solid #dfe4de;
}

.home-faq .seo-faq__list details p {
  padding: 26px 40px 30px 42px;
  color: #59635f;
}

.popular-areas {
  background: var(--cream);
  padding-top: 50px;
  padding-bottom: 54px;
}

.popular-areas__grid {
  max-width: 860px;
  gap: 24px;
}

.popular-areas__col {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.popular-areas__col h3 {
  color: var(--soft-ink);
  font-size: 18px;
  font-weight: 800;
}

.popular-areas__col a {
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 21, 20, 0.08);
  color: var(--accent-dark);
}

@media (max-width: 1320px) {
  .home-faq .container {
    width: min(1130px, calc(100% - 48px));
  }
}

@media (max-width: 1040px) {
  .home-faq {
    min-height: 0;
    padding: 64px 0 76px;
  }

  .home-faq .container {
    width: min(720px, calc(100% - 48px));
  }

  .home-faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .home-faq {
    padding: 52px 0 64px;
  }

  .home-faq .container {
    width: calc(100% - 32px);
  }

  .home-faq h2 {
    font-size: 42px;
  }

  .home-faq__trust > span {
    grid-template-columns: 28px 1fr;
    padding: 0 9px;
  }

  .home-faq .seo-faq__list summary,
  .home-faq .seo-faq__list details[open] summary {
    min-height: 88px;
  }

  .home-faq .seo-faq__list details p {
    padding: 24px 20px 26px;
  }

  .popular-areas__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* Pricing blocks for service pages */
.seo-pricing {
  overflow: hidden;
  border: 1px solid rgba(66, 144, 50, 0.18);
  background: linear-gradient(135deg, #f8fbf6 0%, #fff 58%, #f5efe3 100%);
}

.seo-pricing__header {
  max-width: 760px;
  margin-bottom: 22px;
}

.seo-pricing__header .seo-eyebrow {
  margin-bottom: 8px;
}

.seo-pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.seo-pricing__grid--single {
  grid-template-columns: 1fr;
}

.seo-price-card {
  padding: 20px 20px 18px;
  border: 1px solid rgba(66, 144, 50, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(14, 27, 20, 0.06);
}

.seo-price-card span,
.seo-price-card strong,
.seo-price-card p {
  display: block;
}

.seo-price-card span {
  color: #293834;
  font-size: 14px;
  font-weight: 800;
}

.seo-price-card strong {
  margin: 8px 0 7px;
  color: var(--accent-dark);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1;
}

.seo-price-card p,
.seo-pricing__formula p,
.seo-pricing__note {
  color: #56615e;
  line-height: 1.55;
}

.seo-pricing__formula {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: #fff;
}

.seo-pricing__formula strong {
  display: block;
  margin-bottom: 5px;
  color: #10201d;
  font-weight: 900;
}

.seo-pricing__example {
  margin-top: 5px;
  color: #31403b !important;
  font-weight: 800;
}

.seo-pricing__note {
  margin-top: 14px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .seo-pricing__grid {
    grid-template-columns: 1fr;
  }
}

/* Services & Prices visual upgrade - 2026 */
.service-price-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(66, 144, 50, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f8f4 0%, #ffffff 34%, #f6f8f4 100%);
}

.service-price-hero {
  position: relative;
  padding: 62px 0 74px;
  background:
    linear-gradient(90deg, rgba(5, 18, 13, 0.98) 0%, rgba(5, 18, 13, 0.93) 43%, rgba(5, 18, 13, 0.66) 100%),
    var(--service-image) center / cover no-repeat;
}

.service-price-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(119, 208, 101, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.service-price-hero .container {
  position: relative;
  z-index: 1;
}

.service-price-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.service-price-hero h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.service-price-hero__copy > p:not(.seo-eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
}

.service-price-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-price-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.service-price-hero__badges span::before {
  content: "✓";
  color: #8bd87a;
  font-weight: 900;
}

.service-price-hero__visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.service-price-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 13, 16, 0.75) 100%);
}

.service-price-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.service-price-hero__quote-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(7, 19, 13, 0.86);
  color: #fff;
  backdrop-filter: blur(16px);
}

.service-price-hero__quote-card span {
  color: #8bd87a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-price-hero__quote-card strong {
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.service-price-hero__quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.service-price-summary {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

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

.service-price-summary article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(17, 21, 20, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 24, 20, 0.1);
}

.service-price-summary span,
.service-price-card__tag,
.service-sidebar-card > span,
.service-price-formula span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-price-summary strong {
  display: block;
  margin: 9px 0 6px;
  color: #0a171a;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-price-summary p {
  margin: 0;
  color: #5c6763;
  font-size: 14px;
  line-height: 1.5;
}

.service-price-layout {
  padding-top: 64px;
}

.service-price-layout > article {
  display: grid;
  gap: 0;
}

.service-price-intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 38px;
  align-items: start;
  padding-bottom: 48px;
}

.service-price-intro .seo-eyebrow,
.service-section-heading .seo-eyebrow,
.service-inline-cta .seo-eyebrow {
  color: var(--gold);
}

.service-price-intro h2,
.service-section-heading h2,
.service-inline-cta h2,
.service-info-card h2 {
  margin: 0;
  color: #0a171a;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.service-price-intro > p {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 24, 20, 0.07);
}

.service-pricing {
  padding-bottom: 56px;
}

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

.service-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 284px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid #dfe5dc;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(10, 24, 20, 0.08);
}

.service-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), #8bd87a);
}

.service-price-card h3 {
  margin: 14px 0 10px;
  color: #0a171a;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.service-price-card strong {
  display: block;
  margin-bottom: 13px;
  color: var(--accent-dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.service-price-card p {
  margin: 0 0 22px;
  color: #59645f;
  font-size: 15px;
  line-height: 1.55;
}

.service-price-card a {
  margin-top: auto;
  color: #2f7425;
  font-size: 14px;
  font-weight: 900;
}

.service-price-card a:hover,
.service-price-card a:focus {
  text-decoration: underline;
}

.service-price-formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 26px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(66, 144, 50, 0.14), transparent 42%),
    #071417;
  color: #fff;
}

.service-price-formula strong {
  display: block;
  margin: 8px 0 8px;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
}

.service-price-formula p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.service-price-disclaimer {
  margin: 16px 0 0;
  padding: 16px 18px;
  border: 1px solid #dfe5dc;
  border-radius: 16px;
  background: #fff;
  color: #5c6763;
  font-size: 14px;
  line-height: 1.55;
}

.service-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-info-card {
  padding: 30px;
  border: 1px solid #dfe5dc;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(10, 24, 20, 0.06);
}

.service-info-card--cream {
  background: #f8faf7;
}

.service-info-card h2 {
  margin-bottom: 22px;
  font-size: 30px;
}

.service-section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.service-section-heading h2 {
  margin-bottom: 12px;
}

.service-section-heading p:not(.seo-eyebrow) {
  margin: 0;
  color: #5c6763;
  font-size: 16px;
  line-height: 1.65;
}

.service-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-factor-grid li {
  position: relative;
  min-height: 90px;
  padding: 22px 18px 18px 48px;
  border: 1px solid #dfe5dc;
  border-radius: 18px;
  background: #fff;
  color: #20302c;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 10px 26px rgba(10, 24, 20, 0.05);
}

.service-factor-grid li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 5px #eaf6e7;
}

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

.service-compare__grid article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(66, 144, 50, 0.12), transparent 42%),
    #fff;
  border: 1px solid #dfe5dc;
  box-shadow: 0 14px 34px rgba(10, 24, 20, 0.07);
}

.service-compare__grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(66, 144, 50, 0.12);
}

.service-compare__grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #0a171a;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.service-compare__grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5c6763;
  font-size: 16px;
  line-height: 1.6;
}

.service-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: 8px 0 56px;
  padding: 34px;
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(66, 144, 50, 0.18), transparent 48%),
    linear-gradient(180deg, #071417 0%, #041014 100%);
  box-shadow: 0 20px 54px rgba(5, 16, 13, 0.22);
}

.service-inline-cta h2 {
  margin: 7px 0 10px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
}

.service-inline-cta p:not(.seo-eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.service-process li {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 24, 20, 0.05);
}

.service-area-pill-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-area-pill-list li {
  padding: 0;
}

.service-area-pill-list li::before {
  display: none;
}

.service-area-pill-list a {
  display: block;
  padding: 13px 14px;
  border: 1px solid #dfe5dc;
  border-radius: 999px;
  background: #fff;
  color: #2f7425;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.service-area-pill-list a:hover,
.service-area-pill-list a:focus {
  border-color: var(--accent);
  background: #eef8eb;
}

.service-price-sidebar {
  top: 108px;
}

.service-sidebar-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(66, 144, 50, 0.22), transparent 46%),
    #071417;
}

.service-sidebar-card h2 {
  margin-top: 8px;
  color: #fff;
}

.service-sidebar-prices a:first-of-type {
  color: #0a171a;
}

@media (max-width: 1180px) {
  .service-price-hero__grid,
  .service-price-intro,
  .service-inline-cta {
    grid-template-columns: 1fr;
  }

  .service-price-hero__visual {
    max-width: 720px;
  }

  .service-price-card-grid,
  .service-factor-grid,
  .service-area-pill-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-price-formula {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .service-price-hero {
    padding: 46px 0 62px;
  }

  .service-price-hero__grid,
  .service-price-layout,
  .service-info-grid,
  .service-compare__grid,
  .service-price-summary__grid {
    grid-template-columns: 1fr;
  }

  .service-price-summary {
    margin-top: -20px;
  }

  .service-price-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .service-price-hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .service-price-hero__copy > p:not(.seo-eyebrow) {
    font-size: 17px;
  }

  .service-price-hero__badges {
    display: grid;
  }

  .service-price-hero__visual,
  .service-price-hero__visual img {
    min-height: 360px;
  }

  .service-price-card-grid,
  .service-factor-grid,
  .service-area-pill-list {
    grid-template-columns: 1fr;
  }

  .service-price-summary article,
  .service-price-card,
  .service-info-card,
  .service-inline-cta,
  .service-price-formula {
    padding: 22px;
    border-radius: 18px;
  }

  .service-price-card strong,
  .service-price-summary strong {
    font-size: 29px;
  }

  .service-factor-grid li {
    min-height: 0;
  }
}
