.pg-hero {
  background:
    linear-gradient(135deg, rgba(4, 9, 48, 0.96) 0%, rgba(0, 0, 160, 0.85) 55%, rgba(4, 9, 48, 0.92) 100%),
    url('../images/image_009.png') center / cover no-repeat;
  padding-top: calc(var(--hh) + 72px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.pg-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(2, 227, 227, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 227, 227, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.pg-hero__inner { position: relative; z-index: 1; }
.pg-hero__bread {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.pg-hero__bread a { color: var(--cyan); transition: opacity .2s; }
.pg-hero__bread a:hover { opacity: .7; }
.pg-hero__bread span { opacity: .3; }

.pg-hero__h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}

.pg-hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  line-height: 1.75;
}

.pg-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pg-hero__stat { display: flex; flex-direction: column; gap: 4px; }
.pg-hero__stat b {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cyan);
}

.pg-hero__stat span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.gal-sec {
  padding: 72px 0;
  background: var(--gray);
}

.gal-sec .slider__btn {
  background: #fff;
  border-color: rgba(5, 13, 46, 0.14);
  color: var(--navy);
}

.gal-sec .slider__btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}

.gal-sec .slider__dot {
  background: rgba(5, 13, 46, 0.22);
}

.gal-sec .slider__dot.active {
  background: var(--navy);
}

.gal-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #000090 60%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gal-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 227, 227, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.gal-cta__inner { position: relative; z-index: 1; }
.gal-cta__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(2, 227, 227, 0.1);
  border: 1px solid rgba(2, 227, 227, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.gal-cta h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.gal-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.gal-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pg-hero { padding-top: calc(var(--hh) + 48px); padding-bottom: 52px; }
  .pg-hero__h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .pg-hero__stats { gap: 24px; margin-top: 32px; }
  .pg-hero__stat b { font-size: 1.8rem; }
  .gal-sec { padding: 56px 0; }
  .gal-cta { padding: 56px 0; }
}

@media (max-width: 560px) {
  .pg-hero { padding-top: calc(var(--hh) + 36px); padding-bottom: 40px; }
  .gal-cta__btns { flex-direction: column; align-items: center; }
  .gal-cta__btns .btn { width: 100%; max-width: 320px; }
}
