.service-detail {
  background: var(--color-bg-primary);
}

.detail-hero {
  padding-top: 4.8rem;
  padding-bottom: 4.6rem;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.6rem;
  align-items: center;
}

.detail-hero__image-wrap img {
  width: 100%;
  height: 390px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top left;
}

.detail-hero__content h1 {
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  margin-bottom: 1.15rem;
}

.detail-hero__content .feature-item {
  max-width: 325px;
  margin-bottom: 1rem;
}

.detail-hero__text {
  max-width: 430px;
  color: var(--color-text-secondary);
  font-size: 0.7rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.detail-benefits {
  padding-top: 4.2rem;
  padding-bottom: 4.4rem;
}

.detail-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  gap: 1.9rem;
  align-items: center;
}

.detail-benefits__col .feature-item {
  margin-bottom: 1.65rem;
}

.detail-benefits__col .feature-item:last-child {
  margin-bottom: 0;
}

.detail-benefits__col .feature-item__text {
  font-size: 0.66rem;
  line-height: 1.45;
}

.detail-benefits__image-wrap img {
  width: 100%;
  height: 285px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center;
}

.cta-banner--detail {
  min-height: 350px;
  background-image: url("../../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 992px) {
  .detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detail-benefits__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .detail-benefits__image-wrap {
    order: -1;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    padding-top: 3.8rem;
  }

  .detail-hero__image-wrap img {
    height: 270px;
  }

  .detail-benefits__image-wrap img {
    height: 220px;
  }
}
