/* QI_SECTION_START:02-service-overview-with-starting-prices */
[data-qi-section="section-home-services-overview"] {
  background-color: #0A0A0F;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

[data-qi-section="section-home-services-overview"] .services__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

[data-qi-section="section-home-services-overview"] .services__header {
  max-width: 620px;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

[data-qi-section="section-home-services-overview"] .services__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #F0EDE8;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

[data-qi-section="section-home-services-overview"] .services__body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: #F0EDE8;
  opacity: 0.7;
  margin: 0;
}

[data-qi-section="section-home-services-overview"] .services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background-color: #3A3A4A;
  border: 1.5px solid #3A3A4A;
}

[data-qi-section="section-home-services-overview"] .services__card {
  background-color: #0A0A0F;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background-color 240ms ease;
}

[data-qi-section="section-home-services-overview"] .services__card:hover {
  background-color: #1E1E28;
}

[data-qi-section="section-home-services-overview"] .services__card-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}

[data-qi-section="section-home-services-overview"] .services__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms ease;
}

[data-qi-section="section-home-services-overview"] .services__card:hover .services__card-image {
  transform: scale(1.04);
}

[data-qi-section="section-home-services-overview"] .services__card-body {
  padding: 1.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

[data-qi-section="section-home-services-overview"] .services__card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8C547;
  margin-bottom: 0.65rem;
}

[data-qi-section="section-home-services-overview"] .services__card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #F0EDE8;
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
}

[data-qi-section="section-home-services-overview"] .services__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #F0EDE8;
  opacity: 0.65;
  margin: 0 0 1.25rem;
  flex: 1;
}

[data-qi-section="section-home-services-overview"] .services__card-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #E8C547;
  text-decoration: none;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: color 200ms ease, gap 200ms ease;
  align-self: flex-start;
}

[data-qi-section="section-home-services-overview"] .services__card-link:hover {
  color: #C4923A;
  gap: 0.5em;
}

[data-qi-section="section-home-services-overview"] .services__card-link:focus-visible {
  outline: 2px solid #E8C547;
  outline-offset: 3px;
  border-radius: 2px;
}

[data-qi-section="section-home-services-overview"] .services__footer-cta {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

[data-qi-section="section-home-services-overview"] .services__book-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  background-color: #E8C547;
  color: #0A0A0F;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background-color 240ms ease, transform 200ms ease;
}

[data-qi-section="section-home-services-overview"] .services__book-cta:hover {
  background-color: #C4923A;
  transform: translateY(-2px);
}

[data-qi-section="section-home-services-overview"] .services__book-cta:focus-visible {
  outline: 2px solid #E8C547;
  outline-offset: 3px;
}

[data-qi-section="section-home-services-overview"] .services__all-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #F0EDE8;
  opacity: 0.7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: opacity 200ms ease;
}

[data-qi-section="section-home-services-overview"] .services__all-link:hover {
  opacity: 1;
  color: #E8C547;
}

[data-qi-section="section-home-services-overview"] .services__all-link:focus-visible {
  outline: 2px solid #E8C547;
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 767px) {
  [data-qi-section="section-home-services-overview"] .services__grid {
    grid-template-columns: 1fr;
  }
  [data-qi-section="section-home-services-overview"] .services__footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  [data-qi-section="section-home-services-overview"] .services__book-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-qi-section="section-home-services-overview"] .services__card-image,
  [data-qi-section="section-home-services-overview"] .services__book-cta,
  [data-qi-section="section-home-services-overview"] .services__card-link {
    transition: none;
  }
}
/* QI_SECTION_END:02-service-overview-with-starting-prices */
