section.pp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(86vh, 780px);
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  color: #fff;
  background: #081628;
}

section.pp-hero .pp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

section.pp-hero .pp-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.06);
  animation: pp-hero-pan 18s ease-in-out infinite alternate;
}

section.pp-hero .pp-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 78% 45%, rgba(35, 96, 147, 0.25) 0%, transparent 58%),
    linear-gradient(100deg, rgba(6, 16, 30, 0.94) 0%, rgba(6, 16, 30, 0.82) 38%, rgba(6, 16, 30, 0.45) 62%, rgba(6, 16, 30, 0.28) 100%);
}

section.pp-hero .pp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 1.25rem 4.25rem;
}

section.pp-hero .pp-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 36rem;
  opacity: 1;
}

section.pp-hero .pp-hero__brand {
  margin: 0 0 0.9rem;
  font-size: clamp(2.6rem, 5.4vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #7ec62a;
  opacity: 1;
}

section.pp-hero .pp-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 500;
  line-height: 1.22;
  color: #ffffff;
  opacity: 1;
}

section.pp-hero .pp-hero__lead {
  margin: 0 0 1.9rem;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 33rem;
  opacity: 1;
}

section.pp-hero .pp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  opacity: 1;
}

section.pp-hero .pp-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.75rem 1.55rem;
  border-radius: 0.45rem;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

section.pp-hero a.pp-hero__btn--primary {
  background: #62a70f;
  color: #fff;
  border: 1.5px solid #62a70f;
  box-shadow: 0 12px 30px rgba(98, 167, 15, 0.32);
}

section.pp-hero a.pp-hero__btn--primary:hover {
  background: #528c0c;
  border-color: #528c0c;
  color: #fff;
  transform: translateY(-2px);
}

section.pp-hero a.pp-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

section.pp-hero a.pp-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

@keyframes pp-hero-pan {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, 1%, 0); }
}

@media (max-width: 991.98px) {
  section.pp-hero {
    min-height: 70vh;
    align-items: flex-end;
  }
  section.pp-hero .pp-hero__inner {
    padding: 4rem 1.1rem 3rem;
  }
  section.pp-hero .pp-hero__shade {
    background: linear-gradient(180deg, rgba(6, 16, 30, 0.65) 0%, rgba(6, 16, 30, 0.88) 45%, rgba(6, 16, 30, 0.96) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  section.pp-hero .pp-hero__bg {
    animation: none;
    transform: none;
  }
}
