.page-hero{
  position:relative;
  overflow:hidden;
  padding:110px 0 90px;
  background:
    linear-gradient(135deg, #131922 0%, #1a2330 52%, #11161d 100%);
  background-size:cover;
  background-position:center;
  color:#fff;
}

.page-hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 82% 26%, rgba(193,18,31,.22), transparent 18%),
    linear-gradient(90deg, rgba(17,22,29,.18) 0%, rgba(17,22,29,.08) 100%);
  pointer-events:none;
}

.page-hero__inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0, 760px) 1fr;
  align-items:center;
  gap:40px;
}

.page-hero__breadcrumbs{
  margin-bottom:16px;
  color:rgba(255,255,255,.72);
  font-size:.92rem;
}

.page-hero__breadcrumbs a{
  color:rgba(255,255,255,.76);
}

.page-hero__breadcrumbs a:hover{
  color:#fff;
}

.page-hero__title{
  color:#fff;
  max-width:900px;
  margin-bottom:14px;
}

.page-hero__desc{
  max-width:720px;
  color:rgba(255,255,255,.82);
  font-size:1.04rem;
}

.page-hero__desc p:last-child{
  margin-bottom:0;
}

.page-hero__shape{
  position:relative;
  min-height:260px;
}

.page-hero__shape span{
  position:absolute;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:var(--frey-shadow-md);
}

.page-hero__shape span:nth-child(1){
  width:220px;
  height:220px;
  right:20px;
  top:0;
  transform:rotate(12deg);
}

.page-hero__shape span:nth-child(2){
  width:180px;
  height:180px;
  right:140px;
  bottom:0;
  transform:rotate(-14deg);
}

.page-hero__shape span:nth-child(3){
  width:88px;
  height:88px;
  right:0;
  bottom:18px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(193,18,31,.82), rgba(193,18,31,.12));
  border:none;
}

@media (max-width: 991px){
  .page-hero{
    padding:88px 0 72px;
  }

  .page-hero__inner{
    grid-template-columns:1fr;
  }

  .page-hero__shape{
    display:none;
  }
}

@media (max-width: 640px){
  .page-hero{
    padding:78px 0 60px;
  }

  .page-hero__desc{
    font-size:.98rem;
  }
}