.pn-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pn-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pn-hero-media video,
.pn-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(14,41,64,0.92) 0%,
    rgba(14,41,64,0.68) 50%,
    rgba(14,41,64,0.35) 100%);
}

.pn-hero-content {
  position: relative;
  width: 100%;
  z-index: 3;
  padding-bottom: 60px;
}

.pn-hero-content h1 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
}

.pn-hero-content p {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  font-size: 1.04rem;
  margin-bottom: 0;
}

.pn-hero-breadcrumb {
  margin-top: 18px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
}

.pn-hero-breadcrumb a { color: rgba(255,255,255,0.8); }
.pn-hero-breadcrumb a:hover { color: var(--gold-light); }

.pn-industry-section {
  padding: 35px 0 45px;
  scroll-margin-top: 130px;
}

.pn-bg-white  { background: #ffffff; }
.pn-bg-gray   { background: #f5f7f9; }

.pn-industry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #1941691a;
}

.pn-bg-navy .pn-industry-head {
  border-bottom-color: rgba(255,255,255,0.12);
}

.pn-industry-label {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pn-industry-label h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.pn-bg-navy .pn-industry-label h2 {
  color: var(--navy-dark);
}

:root {
  --pn-bullet: "•";
}

.pn-product-box {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(25,65,105,0.09);
  border-radius: 16px;
  padding: 34px 40px;
  box-shadow: 0 8px 26px rgba(25,65,105,0.06);
}

.pn-box-wrap {
  position: relative;
}

.pn-box-wrap::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(25,65,105,0.35) 1.6px, transparent 1.7px);
  background-size: 11px 11px;
  pointer-events: none;
}

.pn-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 3;
  column-gap: 36px;
}

.pn-bullet-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 1.10rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  border-bottom: 1px dashed rgba(25,65,105,0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.pn-bullet-list li:hover {
  color: var(--navy-dark);
  font-weight: 700;
  padding-left: 26px;
}

.pn-bullet-list li::before {
  content: var(--pn-bullet);
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.pn-product-box-light {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.pn-product-box-light .pn-bullet-list li {
  color: rgba(255,255,255,0.82);
  border-bottom-color: rgba(255,255,255,0.09);
}

.pn-product-box-light .pn-bullet-list li:hover {
  color: var(--white);
}

.pn-product-box-light .pn-bullet-list li::before {
  color: var(--gold-light);
}

.pn-cta-section {
  background: var(--gray-bg);
  padding: 60px 0;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .pn-hero { height: 400px; }
  .pn-hero-content h1 { font-size: 2.4rem; }
  .pn-bullet-list { column-count: 2; }
  .pn-jump-inner { padding: 0 16px; }
}

@media (max-width: 576px) {
  .pn-hero { height: 340px; }
  .pn-hero-content h1 { font-size: 1.85rem; }
  .pn-industry-section { padding: 44px 0 50px; }
  .pn-bullet-list { column-count: 1; }
  .pn-product-box { padding: 24px 22px; }
  .pn-industry-label h2 { font-size: 1.25rem; }
  .pn-jump-nav a { padding: 12px 14px; font-size: 0.76rem; }
}

.pn-cta-section {
  padding: 20px 0 70px;
}

.pn-cta-section .cta-strip {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 24px;
  padding: 46px 50px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,37,64,0.18);
}

.pn-cta-section .cta-strip::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201,149,47,0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pn-cta-section .cta-strip::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  pointer-events: none;
}

.pn-cta-section .cta-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.pn-cta-section .cta-flex h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.pn-cta-section .cta-flex p {
  color: rgba(255,255,255,0.75);
  font-size: 0.96rem;
  max-width: 520px;
  margin: 0;
  line-height: 1.65;
}

.pn-cta-section .cta-flex .btn-gold {
  padding: 15px 34px;
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 26px rgba(201,149,47,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pn-cta-section .cta-flex .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201,149,47,0.45);
}

@media (max-width: 768px) {
  .pn-cta-section .cta-strip { padding: 36px 28px; }
  .pn-cta-section .cta-flex { flex-direction: column; align-items: flex-start; }
  .pn-cta-section .cta-flex h3 { font-size: 1.3rem; }
}