/* ==========================================================================
   Page: Services Hub
   Page-specific styles for the services overview page.
   ========================================================================== */

/* Hero — shorter inner-page variant for services hub */
.hero--services {
  min-height: auto;
  padding-block: var(--space-16);
}

.hero--services::before {
  background: linear-gradient(
    135deg,
    rgba(14, 34, 53, 0.92) 0%,
    rgba(14, 34, 53, 0.80) 100%
  );
}

.hero--services .hero__content {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.hero--services .hero__title {
  margin-bottom: var(--space-4);
}

.hero--services .hero__subtitle {
  margin-bottom: 0;
}

/* Services grid intro text above the cards */
.services-intro {
  text-align: center;
  max-width: var(--container-narrow);
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.services-intro__text {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
}

/* Visual card grid & responsive handled by components.css */

/* Why choose strip on services hub */
.services-why {
  text-align: center;
}

.services-why__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--container-narrow);
  margin-inline: auto;
  margin-top: var(--space-10);
}

.services-why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.services-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-surface-ice);
  color: var(--color-brand-cyan-500);
  flex-shrink: 0;
}

.services-why__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.services-why__label {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

@media (min-width: 48rem) {
  .services-why__items {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}
