/* ============================================================
   /css/text-hero.css
   Shared "text-only hero" treatment used on pages that don't have
   a big photo hero (contact, sitemap, awards, error, review,
   reviews, survey, etc.). Mirrors the visual style of /pricing's
   .pt-hero so the brand stays consistent across the no-photo
   landing surfaces.
   ============================================================ */

.txt-hero {
  position: relative;
  /* Top padding: clear the fixed nav (--nav-h) PLUS a fluid breathing margin
     of 48-88px. Using a flat clamp() like `clamp(80px, 12vw, 140px)` only
     gave ~8px clearance on mobile where the clamp resolved to its 80px
     minimum and the nav itself is 72px tall. */
  padding: calc(var(--nav-h, 72px) + clamp(48px, 6vw, 88px)) 0 clamp(20px, 3vw, 36px);
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(26,172,224,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #F0F6FA 0%, transparent 100%);
}

.txt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,172,224,0.10);
  color: #006a92;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.txt-hero-eyebrow svg {
  width: 14px;
  height: 14px;
}

.txt-hero h1 {
  font-family: var(--font-display, Raleway, sans-serif);
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #111;
  margin: 0 auto 16px;
  max-width: 800px;
}

.txt-hero h1 .txt-hero-accent {
  background: linear-gradient(135deg, #7dd8f5 0%, #1AACE0 50%, #002f5c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.txt-hero .txt-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #5F5F5F;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Tighten gap between a slim text hero and the first content section (promoted from 5 pages 2026-06-10) */
#main.txt-hero + .section.s-page{padding-top:clamp(20px,3vw,36px)}
