.pl-hero {
  position: relative;
  max-width: 1240px;
  margin: 24px auto 40px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.pl-hero__media,
.pl-hero__media picture,
.pl-hero__image {
  display: block;
  width: 100%;
}

.pl-hero__image {
  min-height: 340px;
  object-fit: cover;
}

.pl-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.12), transparent 32%),
    linear-gradient(180deg, rgba(9, 16, 29, .18), rgba(9, 16, 29, .72));
}

.pl-hero__content {
  width: min(100%, 780px);
  text-align: center;
  color: #fff;
}

.pl-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 700;
}

.pl-hero__icon-shell {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, .22);
}

.pl-hero__icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.pl-hero__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.03em;
  color: inherit;
}

.pl-hero__subtitle {
  margin: 0 auto 22px;
  max-width: 680px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255,255,255,.95);
}

.pl-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: 0 14px 30px rgba(15,23,42,.22);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pl-hero__cta:hover,
.pl-hero__cta:focus {
  background: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15,23,42,.28);
}

.pl-hero__cta:focus-visible {
  outline: 3px solid rgba(255,255,255,.55);
  outline-offset: 4px;
}

.pl-hero__content.is-visible {
  animation: plHeroFade .5s ease-out;
}

@keyframes plHeroFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .pl-hero {
    margin: 16px auto 28px;
    border-radius: 22px;
  }

  .pl-hero__image {
    min-height: 520px;
  }

  .pl-hero__overlay {
    padding: 18px;
    align-items: flex-end;
  }

  .pl-hero__icon-shell {
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
  }

  .pl-hero__icon {
    width: 44px;
    height: 44px;
  }

  .pl-hero__subtitle {
    margin-bottom: 18px;
  }

  .pl-hero__cta {
    width: min(100%, 280px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-hero__cta,
  .pl-hero__content {
    transition: none;
    animation: none;
  }
}
