/**
 * Standalone page hero: matches go-solar.html #pfos-hero (contact-us, etc.)
 */
:root {
  --navy: #002e5d;
  --navy-dark: #011b36;
  --navy-mid: #002347;
  --navy-deep: #003a75;
  --yellow: #ffc72c;
  --yellow-dk: #e6b000;
  --white: #ffffff;
  --font: "Urbanist", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
}

#pfos-hero {
  font-family: var(--font);
  background: linear-gradient(
    150deg,
    var(--navy-dark) 0%,
    var(--navy) 55%,
    var(--navy-deep) 100%
  );
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 12vw, 120px) 20px;
  text-align: center;
}

#pfos-hero .dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

#pfos-hero .glow {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

#pfos-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

#pfos-hero .pfos-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 199, 44, 0.14);
  color: var(--yellow);
  border: 1px solid rgba(255, 199, 44, 0.38);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

#pfos-hero .pfos-hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

#pfos-hero .pfos-hero-h1 span {
  color: var(--yellow);
}

#pfos-hero .pfos-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.75;
}

#pfos-hero .pfos-hero-sub a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#pfos-hero .pfos-hero-sub2 {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

#pfos-hero .pfos-hero-sub2 strong {
  color: var(--white);
}

#pfos-hero .pfos-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}

#pfos-hero .pfos-hero-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

#pfos-hero .pfos-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  white-space: nowrap;
}

#pfos-hero .pfos-btn:hover {
  transform: translateY(-2px);
}

#pfos-hero .pfos-btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 22px rgba(255, 199, 44, 0.4);
}

#pfos-hero .pfos-btn-yellow:hover {
  background: var(--yellow-dk);
  box-shadow: 0 8px 32px rgba(255, 199, 44, 0.5);
}

#pfos-hero .pfos-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

#pfos-hero .pfos-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.pfos-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pfos-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pfos-reveal.d1 {
  transition-delay: 0.08s;
}
.pfos-reveal.d2 {
  transition-delay: 0.16s;
}
.pfos-reveal.d3 {
  transition-delay: 0.24s;
}
.pfos-reveal.d4 {
  transition-delay: 0.32s;
}
.pfos-reveal.d5 {
  transition-delay: 0.4s;
}
