.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 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: 780px;
  padding: 70px 0 84px;
  background: #fdfdfb url("../img/faq-wave.webp") center bottom / 100% 42% no-repeat;
}

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

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

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

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

.home-faq__rule {
  display: block;
  width: 49px;
  height: 3px;
  margin-bottom: 34px;
  background: var(--accent-dark);
}

.home-faq h2 {
  max-width: 360px;
  margin: 0 0 26px;
  color: #101a17;
  font-size: clamp(36px, 2.45vw, 46px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: left;
}

.home-faq__intro > p:not(.home-faq__eyebrow) {
  max-width: 380px;
  margin: 0;
  color: #59635f;
  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 #d7ded5;
  color: #4d5854;
  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 var(--accent);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

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

.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);
  margin-top: 38px;
}

.home-faq__trust > span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid #d1d8d0;
}

.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__trust b {
  color: #4f5a56;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

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

.home-faq .seo-faq__list details {
  overflow: hidden;
  border: 1px solid #e4e8e2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(18, 34, 27, 0.08);
  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(62, 139, 47, 0.48);
  transform: translateY(-1px);
}

.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 {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 20px 28px 20px 24px;
  cursor: pointer;
  color: #17231f;
  font-size: clamp(16px, 1.05vw, 18px);
  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: 88px;
  color: #131c19;
  border-bottom: 1px solid #dfe4de;
  background: rgba(255, 255, 255, 0.98);
}

.home-faq .seo-faq__list details p {
  margin: 0;
  padding: 26px 40px 30px 42px;
  color: #59635f;
  font-size: 15px;
  line-height: 1.65;
}

.home-faq__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #e9f1e7;
}

.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: 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;
    background-size: auto 56%;
  }

  .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;
    background-size: auto 42%;
  }

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

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

  .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: 0 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;
  }
}
