/* Ortak sayfa hero — ana sayfa, hizmet detay ve iletişim sayfaları hariç */

.page-hero {
  position: relative;
  margin-top: calc(var(--site-header-h) + 4px);
  padding: 40px 0;
  background: var(--color-bg);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1056px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.2;
}

/* Çift tekrarlayan üçgen SVG (.page-hero__bg--dual) */
.page-hero__bg--dual svg {
  flex-shrink: 0;
  width: 407px;
  height: auto;
  max-height: 100%;
  display: block;
}

.page-hero__bg--dual svg + svg {
  margin-left: -86px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.page-hero__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: transparent;
  margin: 0;
  text-align: center;
  -webkit-text-stroke: 1px rgba(253, 253, 253, 0);
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.04;
  color: var(--color-black);
  margin: 0;
  max-width: 893px;
}

.page-hero__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
  max-width: 623px;
}

@media (max-width: 900px) {
  .page-hero {
    margin-top: var(--site-header-h);
    padding: 40px 0;
  }

  .page-hero__bg {
    top: 0;
    right: -25%;
    bottom: 0;
    height: auto;
    opacity: 0.2;
  }

  /* Çift SVG: alanı doldur, oranı koru (cover), ortala */
  .page-hero__bg--dual {
    align-items: stretch;
  }

  .page-hero__bg--dual svg {
    flex: 1 1 0;
    width: 205px;
    max-width: 205px;
    object-position: right;
    object-fit: cover;
  }

  .page-hero__bg--dual svg + svg {
    margin-left: clamp(-48px, -8vw, -26px);
  }

  .page-hero__inner {
    gap: 24px;
  }

  .page-hero__title {
    font-size: 48px;
    line-height: 1.08;
  }

  .page-hero__desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding-top: var(--site-header-h);
    padding-bottom: 40px;
  }

  .page-hero__title {
    font-size: clamp(36px, 12vw, 48px);
  }
}
