/* ── PARALLAX TAGLINE SECTION ── */
#parallax-tagline {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 110px 0;
  overflow: hidden;
}

/* Dark overlay */
#parallax-tagline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21,101,192,.82) 0%,
    rgba(13,30,53,.88) 100%
  );
  z-index: 0;
}

/* Orange accent strip at top */
#parallax-tagline::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  z-index: 1;
}

.parallax-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Small top label */
.parallax-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.parallax-label::before,
.parallax-label::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Main tagline */
.parallax-tagline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.parallax-tagline .pt-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.parallax-tagline .pt-highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Sub-tagline */
.parallax-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

/* Stats row */
.parallax-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 40px;
}
.parallax-stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.parallax-stat:last-child { border-right: none; }

.parallax-stat .ps-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.parallax-stat .ps-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Divider bottom strip */
.parallax-bottom-strip {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  z-index: 1;
}

@media (max-width: 767px) {
  #parallax-tagline {
    padding: 80px 0;
    background-attachment: scroll; /* disable parallax on mobile */
  }
  .parallax-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 18px 20px;
    min-width: 50%;
    flex: 0 0 50%;
  }
  .parallax-stat:last-child { border-bottom: none; }
}
@media (max-width: 400px) {
  .parallax-stat { flex: 0 0 100%; border-right: none; }
}
