/**
 * Hero pages hub — ServiceHubHero (design minimal type Apple).
 */

.page-content.tao-page-service-hub .tao-hub-hero-v2 {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(560px, 92svh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #0a0e0d;
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 8, 0.78) 0%,
      rgba(6, 9, 8, 0.48) 34%,
      rgba(6, 9, 8, 0.12) 58%,
      rgba(6, 9, 8, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 9, 8, 0.08) 0%,
      rgba(6, 9, 8, 0) 45%,
      rgba(6, 9, 8, 0.28) 100%
    );
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 8rem) clamp(1.5rem, 5vw, 2.5rem)
    clamp(3rem, 8vh, 4rem);
  box-sizing: border-box;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__copy {
  max-width: 34rem;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__kicker {
  margin: 0 0 1rem;
  font-family: var(--font-body), "Bricolage Grotesque", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading), "Ovo", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #fff;
  text-wrap: balance;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__title-line {
  display: block;
  font-size: clamp(2.35rem, 5.8vw, 4.25rem);
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__title-line--soft {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__tagline {
  margin: 0 0 2rem;
  max-width: 28rem;
  font-family: var(--font-body), "Bricolage Grotesque", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.005em;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5rem;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.85rem;
  border-radius: 980px;
  background: #fff;
  color: #101514;
  font-family: var(--font-body), sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.page-content.tao-page-service-hub .tao-hub-hero-v2__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  background: #f7f7f7;
}

@media (max-width: 767px) {
  .page-content.tao-page-service-hub .tao-hub-hero-v2 {
    min-height: clamp(520px, 94svh, 720px);
    align-items: flex-end;
    background-position: center center;
  }

  .page-content.tao-page-service-hub .tao-hub-hero-v2__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(6, 9, 8, 0.15) 0%,
        rgba(6, 9, 8, 0.08) 28%,
        rgba(6, 9, 8, 0.72) 68%,
        rgba(6, 9, 8, 0.94) 100%
      );
  }

  .page-content.tao-page-service-hub .tao-hub-hero-v2__inner {
    padding-top: clamp(5rem, 16vw, 6rem);
    padding-bottom: clamp(2.5rem, 8vw, 3rem);
  }

  .page-content.tao-page-service-hub .tao-hub-hero-v2__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
