/* Contact hero — design tokens from global theme only. */

.hero.contact-hero {
  position: relative;
  text-align: center;
  padding: clamp(72px, 9vw, 140px) 0 clamp(56px, 7vw, 100px) !important;
  overflow: hidden;
}
.contact-hero .ch-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-hero h1 .gradient {
  background: linear-gradient(120deg, var(--brand-navy) 0%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-hero .lede {
  text-align: center;
}
.contact-hero .hero-ctas {
  justify-content: center;
}

.contact-hero .about-ambient.ch-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ch-ambient::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  left: 50%;
  top: -300px;
  transform: translateX(-60%);
  background: radial-gradient(closest-side, rgba(30, 31, 140, 0.18), transparent 70%);
  filter: blur(20px);
}
.ch-ambient::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: 8%;
  bottom: -120px;
  background: radial-gradient(closest-side, rgba(31, 174, 94, 0.18), transparent 70%);
  filter: blur(20px);
}

.contact-hero > .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 16, 38, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 16, 38, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.ch-chip {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 14px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.ch-chip .ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green-soft);
  color: var(--brand-green);
}
.ch-chip.navy .ico {
  background: rgba(30, 31, 140, 0.08);
  color: var(--brand-navy);
}
.ch-chip .lbl {
  font-size: 12.5px;
  font-weight: 600;
}
.ch-chip .sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ch-chip.c1 {
  top: 18%;
  left: 6%;
  animation: float1 9s ease-in-out infinite;
}
.ch-chip.c2 {
  top: 28%;
  right: 8%;
  animation: float3 11s ease-in-out infinite;
}
.ch-chip.c3 {
  bottom: 11%;
  left: 14%;
  animation: float2 12s ease-in-out infinite;
}
.ch-chip.c4 {
  bottom: 22%;
  right: 12%;
  animation: float4 10s ease-in-out infinite;
}
@media (max-width: 980px) {
  .ch-chip.c1,
  .ch-chip.c2,
  .ch-chip.c3,
  .ch-chip.c4 {
    display: none;
  }
}
@media (max-width: 720px) {
  .hero.contact-hero {
      padding: 28px 18px 42px !important;
  }
}