.page-intro-wrap {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-intro {
  box-sizing: border-box;
  text-align: center;
  margin: clamp(2rem, 4vw, 3.5rem) auto clamp(3rem, 6vw, 5rem);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  max-width: 980px;
  position: sticky;
  height: auto;
  top: 200px;
  z-index: 2;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 29, 58, 0.08), rgba(101, 124, 162, 0.1));
  border: 1px solid rgba(101, 124, 162, 0.35);
  box-shadow: 0 20px 50px rgba(9, 26, 54, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .page-intro-wrap {
    min-height: auto;
  }
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(101, 124, 162, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 124, 162, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}

.page-intro::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(101, 124, 162, 0.35);
  box-shadow: inset 0 0 30px rgba(101, 124, 162, 0.18);
  pointer-events: none;
}

.page-intro__quote {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: #657ca2;
  text-wrap: balance;
  position: relative;
  z-index: 1;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(101, 124, 162, 0.45);
  background: linear-gradient(135deg, rgba(246, 250, 255, 0.95), rgb(255 255 255 / 95%));
  color: #2b4368;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(32, 58, 98, 0.12), inset 0 0 14px rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px dashed rgba(163, 191, 224, 0.65);
  pointer-events: none;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(101, 124, 162, 0.75);
  color: #0b1d3a;
  box-shadow: 0 14px 32px rgba(32, 58, 98, 0.2), 0 0 14px rgba(170, 210, 255, 0.35);
  outline: none;
}

.cta:hover::before,
.cta:focus-visible::before {
  transform: translateX(120%);
}

@media (prefers-reduced-motion: reduce) {
  .cta,
  .cta::before {
    transition: none;
  }
  .cta::before {
    transform: none;
    opacity: 0.2;
  }
}
