.hd-home {
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(144, 190, 52, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(144, 190, 52, 0.06),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #1f242b 0%,
      #252a31 48%,
      #1d2228 100%
    );
  color: #fff;
  overflow: hidden;
}

.hd-home *,
.hd-home *::before,
.hd-home *::after {
  box-sizing: border-box;
}

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

.hd-section {
  padding: 82px 0;
}

.hd-eyebrow {
  margin: 0 0 14px;
  color: #8fbd38;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  max-width: 100%;
  padding: 0 26px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .5px;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

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

.hd-btn-primary {
  background: linear-gradient(135deg, #9acd32, #78a81f);
  color: #101419;
  box-shadow: 0 12px 35px rgba(154, 205, 50, .18);
}

.hd-btn-primary:hover {
  box-shadow: 0 18px 42px rgba(154, 205, 50, .25);
}

.hd-btn-outline {
  border: 1px solid rgba(154, 205, 50, .8);
  color: #fff;
  background: rgba(255, 255, 255, .02);
}

/* HERO */

.hd-hero {
  position: relative;
  min-height: 820px;
  padding: 150px 0 120px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hd-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hd-hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
  opacity: .86;
}

.hd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(19, 23, 28, .98) 0%,
      rgba(19, 23, 28, .85) 34%,
      rgba(19, 23, 28, .38) 68%,
      rgba(19, 23, 28, .18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(19, 23, 28, .95) 0%,
      transparent 38%
    );
}

.hd-hero-inner {
  position: relative;
  z-index: 2;
}

.hd-hero-content {
  max-width: 650px;
  min-width: 0;
}

.hd-hero h1 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(46px, 6vw, 86px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -2px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hd-hero h1 span {
  display: block;
  margin-top: 12px;
  color: #8fbd38;
}

.hd-hero-text {
  max-width: 560px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.7;
}

.hd-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* SERVICE STRIP */

.hd-service-strip {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 0 0 70px;
}

.hd-service-strip-box {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(154, 205, 50, .3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.hd-strip-item {
  min-width: 0;
  min-height: 250px;
  padding: 28px 16px 24px;
  color: #fff;
  text-decoration: none;
  background: rgba(28, 33, 39, .96);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    background .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.hd-strip-item:hover {
  z-index: 2;
  background: rgba(38, 45, 51, .98);
  box-shadow: inset 0 0 32px rgba(154, 205, 50, .07);
}

.hd-strip-item img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.hd-strip-item strong {
  display: block;
  min-height: 38px;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hd-strip-item > span {
  min-height: 57px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.5;
}

.hd-strip-more {
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(143, 189, 56, .65);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .6px;
  background: rgba(255, 255, 255, .02);
  transition:
    color .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.hd-strip-more b {
  color: #8fbd38;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  opacity: .8;
  transition:
    transform .22s ease,
    opacity .22s ease;
}

.hd-strip-item:hover .hd-strip-more {
  color: #8fbd38;
  border-color: #8fbd38;
  background: rgba(143, 189, 56, .07);
  box-shadow: 0 0 28px rgba(143, 189, 56, .22);
}

.hd-strip-item:hover .hd-strip-more b {
  transform: translateX(4px);
  opacity: 1;
}

/* INTRO */

.hd-intro {
  padding-top: 20px;
}

.hd-intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.hd-intro-image,
.hd-intro-content {
  min-width: 0;
}

.hd-intro-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.hd-intro-content h2,
.hd-section-head h2,
.hd-cta h2 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hd-intro-content h2::after,
.hd-section-head h2::after,
.hd-section-head-center h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 14px;
  background: #8fbd38;
}

.hd-intro-content > p {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.8;
}

.hd-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.hd-values > div {
  min-width: 0;
}

.hd-values span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #8fbd38;
  font-size: 28px;
}

.hd-values strong {
  display: block;
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hd-values p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.45;
}

/* GALLERY */

.hd-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 34px;
}

.hd-section-head > * {
  min-width: 0;
}

.hd-section-head a {
  flex-shrink: 0;
  padding: 12px 18px;
  border: 1px solid rgba(154, 205, 50, .5);
  color: #8fbd38;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.hd-gallery {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.hd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hd-gallery-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .08);
}

/* REVIEWS */

.hd-reviews {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .025);
}

.hd-section-head-center {
  display: block;
  text-align: center;
}

.hd-section-head-center h2::after {
  margin-right: auto;
  margin-left: auto;
}

.hd-section-head-center p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .7);
}

.hd-review-slider {
  overflow: hidden;
  margin-top: 42px;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    );
}

.hd-review-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: hdReviewLoop 42s linear infinite;
}

.hd-review-slider:hover .hd-review-track {
  animation-play-state: paused;
}

.hd-review-card {
  width: 370px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(20, 24, 29, .78);
}

.hd-stars {
  margin-bottom: 18px;
  color: #8fbd38;
  font-size: 20px;
  letter-spacing: 2px;
}

.hd-review-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.hd-review-card strong {
  color: #8fbd38;
}

@keyframes hdReviewLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* CTA */

.hd-cta {
  padding: 46px 0;
  background:
    radial-gradient(
      circle at 88% 50%,
      rgba(154, 205, 50, .2),
      transparent 28%
    ),
    rgba(255, 255, 255, .035);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hd-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hd-cta-inner > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 22px;
  align-items: center;
}

.hd-cta-icon {
  width: 72px;
  height: 72px;
  grid-row: span 2;
  flex-shrink: 0;
  border-radius: 50%;
  background: #8fbd38;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  box-shadow:
    0 0 0 8px rgba(143, 189, 56, .08),
    0 0 35px rgba(143, 189, 56, .35);
}

.hd-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
}

/* TABLET */

@media (max-width: 1180px) {
  .hd-service-strip-box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hd-strip-item:nth-child(n+4) {
    min-height: 230px;
  }

  .hd-service-strip-box .hd-strip-item:nth-child(4) {
    grid-column: 1 / 2;
  }

  .hd-service-strip-box .hd-strip-item:nth-child(5) {
    grid-column: 2 / 4;
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .hd-container {
    width: min(calc(100% - 28px), 1180px);
  }

  .hd-section {
    padding: 64px 0;
  }

  .hd-hero {
    min-height: auto;
    padding: 130px 0 58px;
    align-items: flex-start;
  }

  .hd-hero-bg img {
    object-position: 66% center;
  }

  .hd-hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(19, 23, 28, .95),
        rgba(19, 23, 28, .58)
      ),
      linear-gradient(
        0deg,
        rgba(19, 23, 28, .97) 0%,
        rgba(19, 23, 28, .45) 55%,
        transparent 100%
      );
  }

  .hd-hero-content {
    max-width: 100%;
    overflow: hidden;
  }

  .hd-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.02;
    letter-spacing: -1px;
  }

  .hd-hero h1 span {
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .hd-hero-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .hd-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hd-service-strip {
    padding-bottom: 56px;
  }

  .hd-service-strip-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd-service-strip-box .hd-strip-item:nth-child(4) {
    grid-column: auto;
  }

  .hd-service-strip-box .hd-strip-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .hd-strip-item,
  .hd-strip-item:nth-child(n+4) {
    min-height: 215px;
    padding: 24px 12px;
  }

  .hd-service-strip-box .hd-strip-item:nth-child(5) {
    min-height: 205px;
  }

  .hd-strip-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .hd-strip-item strong {
    min-height: auto;
    font-size: 12px;
    line-height: 1.25;
  }

  .hd-strip-item > span {
    display: none;
    min-height: 0;
  }

  .hd-strip-more {
    min-height: 34px;
    margin-top: 14px;
    padding: 0 12px;
    gap: 7px;
    font-size: 9px;
  }

  .hd-strip-more b {
    font-size: 15px;
  }

  .hd-intro {
    padding-top: 8px;
  }

  .hd-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hd-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd-intro-content h2,
  .hd-section-head h2,
  .hd-cta h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
  }

  .hd-section-head {
    display: block;
  }

  .hd-section-head a {
    display: inline-flex;
    max-width: 100%;
    margin-top: 20px;
  }

  .hd-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd-cta-inner {
    display: block;
    text-align: left;
  }

  .hd-cta-inner > div {
    display: block;
    margin-bottom: 24px;
  }

  .hd-cta-icon {
    display: none;
  }

  .hd-cta h2,
  .hd-cta p {
    max-width: 420px;
    text-align: left;
  }

  .hd-cta-inner > a {
    width: fit-content;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .hd-container {
    width: calc(100% - 28px);
  }

  .hd-hero {
    padding-top: 118px;
  }

  .hd-hero h1 {
    font-size: 34px;
  }

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

  .hd-review-card {
    width: min(310px, calc(100vw - 44px));
  }

  .hd-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hd-values {
    gap: 18px 14px;
  }

  .hd-values strong {
    font-size: 12px;
  }

  .hd-values p {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hd-hero h1 {
    font-size: 31px;
  }

  .hd-hero h1 span {
    font-size: 33px;
  }

  .hd-strip-item,
  .hd-strip-item:nth-child(n+4) {
    min-height: 200px;
    padding: 22px 9px;
  }

  .hd-strip-item strong {
    font-size: 11px;
  }

  .hd-strip-more {
    padding: 0 10px;
    font-size: 8.5px;
    letter-spacing: .4px;
  }
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {
  .hd-review-track {
    animation: none;
  }

  .hd-btn,
  .hd-strip-item,
  .hd-strip-more,
  .hd-strip-more b {
    transition: none;
  }
}