.services-section {
  padding: 6.5rem 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(123, 187, 39, 0.08), transparent 26%),
    linear-gradient(180deg, #080808 0%, #101010 100%);
  color: #ffffff;
}

.services-section__inner {
  width: min(100%, 80rem);
  margin: 0 auto;
}

.services-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.services-section__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-section__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.services-section__intro-copy {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.9;
  text-wrap: pretty;
}

.services-section__carousel {
  position: relative;
}

.services-section__viewport {
  overflow: hidden;
}

.services-section__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.services-section__slide {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}

.services-section__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.84);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.services-section__arrow:hover,
.services-section__arrow:focus-visible {
  border-color: rgba(123, 187, 39, 0.55);
  background: rgba(0, 0, 0, 0.56);
  color: #7bbb27;
}

.services-section__arrow--prev {
  left: -3.1rem;
}

.services-section__arrow--next {
  right: -3.1rem;
}

.services-section__arrow-icon {
  width: 1.7rem;
  height: 1.7rem;
}

.services-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  min-height: 31rem;
}

.services-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}

.services-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 4%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.68) 66%, rgba(0, 0, 0, 0.94) 100%);
  pointer-events: none;
}

.services-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.services-card:hover .services-card__image,
.services-card:focus-within .services-card__image {
  transform: scale(1.04);
}

.services-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 2rem;
}

.services-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.65rem 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.services-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.35vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.services-card__description {
  max-width: 31rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 1);
  font-size: 0.98rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.services-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.35rem;
  border: 1px solid rgba(123, 187, 39, 0.9);
  background: #7bbb27;
  padding: 0.9rem 1.35rem;
  color: #101010;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.services-card__link:hover,
.services-card__link:focus-visible {
  transform: translateY(-2px);
  background: #93d13d;
  color: #101010;
}

.services-section__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.services-section__footer-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-section__footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 187, 39, 0.9);
  background: #7bbb27;
  padding: 1rem 1.45rem;
  color: #101010;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.services-section__footer-cta:hover,
.services-section__footer-cta:focus-visible {
  transform: translateY(-2px);
  background: #93d13d;
}

@media (max-width: 1023px) {
  .services-section {
    padding: 5rem 1.5rem;
  }

  .services-section__intro {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .services-section__slide {
    flex-basis: calc((100% - 1.25rem) / 2);
  }

  .services-section__arrow--prev {
    left: -0.75rem;
  }

  .services-section__arrow--next {
    right: -0.75rem;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 4.5rem 1rem;
  }

  .services-section__slide {
    flex-basis: 100%;
  }

  .services-section__arrow {
    width: 3.2rem;
    height: 3.2rem;
  }

  .services-section__arrow--prev {
    left: 0.35rem;
  }

  .services-section__arrow--next {
    right: 0.35rem;
  }

  .services-card {
    min-height: 28rem;
  }

  .services-card__content {
    padding: 1.4rem;
  }

  .services-section__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .services-section__intro {
    gap: 1rem;
    margin-bottom: 1.7rem;
  }

  .services-section__title {
    font-size: clamp(2.35rem, 10vw, 3.7rem);
  }

  .services-section__intro-copy {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .services-section__carousel {
    padding-top: 3.6rem;
  }

  .services-section__track {
    gap: 0.85rem;
  }

  .services-section__arrow {
    top: 0;
    bottom: auto;
    transform: none;
    width: 2.9rem;
    height: 2.9rem;
    background: rgba(255, 255, 255, 0.08);
  }

  .services-section__arrow--prev {
    left: 0;
  }

  .services-section__arrow--next {
    right: 0;
  }

  .services-card {
    min-height: 30rem;
  }

  .services-card__content {
    padding: 1.25rem;
  }

  .services-card__tag {
    margin-bottom: 0.85rem;
    font-size: 0.64rem;
  }

  .services-card__title {
    font-size: clamp(1.32rem, 6.8vw, 1.9rem);
  }

  .services-card__description {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .services-card__link {
    width: 100%;
    margin-top: 1.15rem;
    padding: 0.95rem 1.1rem;
    font-size: 0.68rem;
  }

  .services-section__footer {
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .services-section__footer-copy {
    font-size: 0.74rem;
    line-height: 1.6;
  }

  .services-section__footer-cta {
    width: 100%;
  }
}

.home-local-seo {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:#0c1c0a;
}

.home-local-seo__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.home-local-seo__intro {
  max-width: 56rem;
  margin-bottom: 2.45rem;
}

.home-local-seo__eyebrow,
.home-local-seo__card-title {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ad53d;
}

.home-local-seo__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}

.home-local-seo__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: #f3f1e8;
}

.home-local-seo__lead,
.home-local-seo__card p,
.home-local-seo__links a {
  color: rgba(243, 241, 232, 0.8);
}

.home-local-seo__lead {
  max-width: 58rem;
  margin: 1.35rem 0 0;
  line-height: 1.6;
}

.home-local-seo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
}

.home-local-seo__card {
  padding: 1.75rem 1.6rem 1.8rem;
  border: 1px solid rgba(154, 213, 61, 0.18);
  background: rgba(16, 18, 16, 0.78);
}

.home-local-seo__card-title {
  margin: 0 0 0.85rem;
}

.home-local-seo__card--services {
  display: grid;
  align-content: start;
}

.home-local-seo__services-copy {
  max-width: 34rem;
  margin: 0.15rem 0 0;
  line-height: 1.6;
}

.home-local-seo__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.home-local-seo__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  border: 1px solid rgba(154, 213, 61, 0.22);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.7rem 0.95rem;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-local-seo__links a:hover,
.home-local-seo__links a:focus-visible {
  border-color: rgba(154, 213, 61, 0.5);
  background: rgba(154, 213, 61, 0.08);
  color: #d8ee9c;
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .home-local-seo__grid,
  .home-local-seo__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .services-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.3) 28%, rgba(0, 0, 0, 0.76) 58%, rgba(0, 0, 0, 0.97) 100%);
  }

  .services-card__content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.78) 100%);
  }

  .services-card__description {
    color: rgba(255, 255, 255, 0.9);
  }
}