/* ============================================================
   NAMESPACE: uhcp__  (UnderHost Control Panels page)
   
   SECTION BACKGROUNDS:
     Hero        → DARK NAVY  (immersive opening, fades to white)
     Panels Grid → WHITE      (primary content area)
     Comparison  → #f5f7fb    (soft light grey, gentle break)
     Features    → DARK NAVY  (accent divider strip)
     CTA         → WHITE      (clean close with accent stripe)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  /* Dark sections */
  --uhcp-dark:       #070b12;
  --uhcp-dark2:      #0b1120;
  --uhcp-navy:       #0e1a2e;
  --uhcp-border-dk:  rgba(99,179,237,0.11);
  --uhcp-text-dk:    #e8edf5;
  --uhcp-muted-dk:   #7a8ba3;

  /* Light sections */
  --uhcp-white:      #ffffff;
  --uhcp-offwhite:   #f5f7fb;
  --uhcp-border-lt:  #e2e8f2;
  --uhcp-text-lt:    #0d1321;
  --uhcp-muted-lt:   #5a6a80;
  --uhcp-muted-lt2:  #9aaabb;

  /* Shared accent */
  --uhcp-accent:     #3b9eff;
  --uhcp-accent2:    #00d4aa;
  --uhcp-green:      #22c55e;
  --uhcp-gold:       #f5a623;

  /* Legacy aliases so old references don't break */
  --uhcp-bg:         #070b12;
  --uhcp-bg2:        #0b1120;
  --uhcp-surface:    #0e1525;
  --uhcp-surface2:   #121c30;
  --uhcp-border:     rgba(99,179,237,0.11);
  --uhcp-border2:    rgba(99,179,237,0.2);
  --uhcp-text:       #e8edf5;
  --uhcp-muted:      #7a8ba3;
  --uhcp-muted2:     #4a5a72;
}

/* ── PAGE BASE — white, not dark ── */
.uhcp__page {
  background: var(--uhcp-white);
  font-family: 'DM Sans', sans-serif;
  color: var(--uhcp-text-lt);
  -webkit-font-smoothing: antialiased;
}
.uhcp__page *,
.uhcp__page *::before,
.uhcp__page *::after { box-sizing: border-box; }

/* ── CONTAINER ── */
.uhcp__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) { .uhcp__wrap { padding: 0 20px; } }

/* ── SCROLL REVEAL ── */
.uhcp__sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.uhcp__sr--on { opacity: 1; transform: none; }

/* ── EYEBROW PILL ── */
.uhcp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--uhcp-accent);
  background: rgba(59,158,255,0.08);
  border: 1px solid rgba(59,158,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.uhcp__eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--uhcp-accent);
  flex-shrink: 0;
  animation: uhcp-blink 2.2s ease-in-out infinite;
}
@keyframes uhcp-blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.65); }
}

/* ── SECTION TITLE — adapts to bg ── */
.uhcp__section-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.022em !important;
  color: var(--uhcp-text-lt) !important;
  margin: 0 0 16px !important;
}
.uhcp__title-em {
  font-style: normal;
  background: linear-gradient(135deg, var(--uhcp-accent), var(--uhcp-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.uhcp__section-sub {
  font-size: 17px;
  color: var(--uhcp-muted-lt);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── BADGES ── */
.uhcp__badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.uhcp__badge--free {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.25);
}
.uhcp__badge--premium {
  background: rgba(245,166,35,0.09);
  color: #d97706;
  border: 1px solid rgba(245,166,35,0.24);
}

/* ── FEATURE TAGS ── */
.uhcp__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 22px;
}
.uhcp__tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--uhcp-muted-lt);
  background: var(--uhcp-offwhite);
  border: 1px solid var(--uhcp-border-lt);
  border-radius: 6px;
  padding: 3px 10px;
}

/* ── BUTTONS ── */
.uhcp__btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, var(--uhcp-accent), #2577cc) !important;
  color: #fff !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 11px 22px !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(59,158,255,0.22) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}
.uhcp__btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 28px rgba(59,158,255,0.38) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* Ghost on light bg */
.uhcp__btn-ghost {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent !important;
  color: var(--uhcp-accent) !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(59,158,255,0.28) !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.uhcp__btn-ghost:hover {
  background: rgba(59,158,255,0.07) !important;
  border-color: rgba(59,158,255,0.5) !important;
  color: var(--uhcp-accent) !important;
  text-decoration: none !important;
}

/* Ghost on dark hero bg */
.uhcp__btn-ghost-hero {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent !important;
  color: rgba(232,237,245,0.88) !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.uhcp__btn-ghost-hero:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.38) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* =============================================================
   SECTION 1 — HERO  ● DARK NAVY
   ============================================================= */
.uhcp__hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--uhcp-dark);
}
.uhcp__hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.underhost.com/images/team/mattdatacenter.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  z-index: 0;
}
.uhcp__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,11,18,0.97) 0%, rgba(11,17,32,0.8) 60%, rgba(59,158,255,0.05) 100%);
  z-index: 1;
}
.uhcp__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,158,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,158,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 2;
}
/* Key: fades smoothly into white below */
.uhcp__hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(0deg, #ffffff 0%, transparent 100%);
  z-index: 3;
}
.uhcp__hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 110px 0 100px;
  text-align: center;
}
.uhcp__hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59,158,255,0.1);
  border: 1px solid rgba(59,158,255,0.25);
  color: var(--uhcp-accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.uhcp__hero-pill i { font-size: 10px; }
.uhcp__hero-h1 {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(38px, 6vw, 70px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em !important;
  color: var(--uhcp-text-dk) !important;
  margin: 0 0 22px !important;
}
.uhcp__hero-sub {
  font-size: 18px;
  color: rgba(232,237,245,0.78);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 38px;
}
.uhcp__hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.uhcp__cta-btn-xl {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, var(--uhcp-accent), #2577cc) !important;
  color: #fff !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 15px 36px !important;
  border-radius: 10px !important;
  border: none !important;
  box-shadow: 0 0 36px rgba(59,158,255,0.32) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.uhcp__cta-btn-xl:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 0 56px rgba(59,158,255,0.5) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.uhcp__hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(99,179,237,0.14);
}
.uhcp__hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--uhcp-accent), var(--uhcp-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.uhcp__hero-stat-lbl {
  font-size: 12px;
  color: var(--uhcp-muted-dk);
  margin-top: 3px;
  display: block;
  letter-spacing: 0.04em;
}

/* =============================================================
   SECTION 2 — PANELS  ● WHITE
   ============================================================= */
.uhcp__panels-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--uhcp-white);
}
.uhcp__panels-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59,158,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.uhcp__panels-hd {
  text-align: center;
  margin-bottom: 56px;
}
.uhcp__group-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--uhcp-muted-lt2);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.uhcp__group-label::before,
.uhcp__group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--uhcp-border-lt);
}
.uhcp__grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}
@media (max-width: 720px) { .uhcp__grid-two { grid-template-columns: 1fr; } }
.uhcp__grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
@media (max-width: 900px) { .uhcp__grid-three { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .uhcp__grid-three { grid-template-columns: 1fr; } }
.uhcp__grid-two-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .uhcp__grid-two-sm { grid-template-columns: 1fr; } }

/* Card — light */
.uhcp__pcard {
  background: var(--uhcp-white);
  border: 1.5px solid var(--uhcp-border-lt);
  border-radius: 18px;
  padding: 34px 26px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.uhcp__pcard::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--uhcp-accent), var(--uhcp-accent2));
  border-radius: 0 0 5px 5px;
  opacity: 0;
  transition: opacity 0.28s ease, left 0.28s ease, right 0.28s ease;
}
.uhcp__pcard:hover {
  border-color: rgba(59,158,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(59,158,255,0.09), 0 3px 10px rgba(0,0,0,0.05);
}
.uhcp__pcard:hover::before { opacity: 1; left: 8%; right: 8%; }

.uhcp__pcard--featured {
  border-color: rgba(59,158,255,0.2);
  background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 55%);
}
.uhcp__pcard--featured::after {
  content: 'FREE';
  position: absolute;
  top: 18px; right: -26px;
  background: linear-gradient(90deg, var(--uhcp-accent), var(--uhcp-accent2));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 38px;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 1;
}

.uhcp__pcard-logozone {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
/* Natural colour logos on white — no invert */
.uhcp__pcard-logo {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  filter: saturate(0.75) opacity(0.82);
  transition: filter 0.28s ease, transform 0.28s ease;
}
.uhcp__pcard:hover .uhcp__pcard-logo {
  filter: saturate(1) opacity(1);
  transform: scale(1.06);
}
.uhcp__pcard-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  color: var(--uhcp-text-lt) !important;
  margin: 0 0 10px !important;
}
.uhcp__pcard-desc {
  font-size: 14px;
  color: var(--uhcp-muted-lt);
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.uhcp__pcard-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.uhcp__pcard--sm { padding: 26px 22px 22px; }
.uhcp__pcard-sm-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--uhcp-text-lt) !important;
  margin: 0 0 10px !important;
}

/* =============================================================
   SECTION 3 — COMPARISON  ● LIGHT GREY
   ============================================================= */
.uhcp__compare-section {
  padding: 88px 0 100px;
  background: var(--uhcp-offwhite);
  border-top: 1px solid var(--uhcp-border-lt);
  border-bottom: 1px solid var(--uhcp-border-lt);
  position: relative;
}
.uhcp__compare-hd { text-align: center; margin-bottom: 48px; }
.uhcp__table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1.5px solid var(--uhcp-border-lt);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.uhcp__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--uhcp-white);
  min-width: 640px;
}
.uhcp__table thead tr { background: #eef1f8; }
.uhcp__table th {
  padding: 15px 20px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--uhcp-muted-lt);
  border-bottom: 1.5px solid var(--uhcp-border-lt);
  white-space: nowrap;
}
.uhcp__table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--uhcp-muted-lt);
  border-bottom: 1px solid var(--uhcp-border-lt);
  vertical-align: middle;
}
.uhcp__table tbody tr:last-child td { border-bottom: none; }
.uhcp__table tbody tr { transition: background 0.18s ease; }
.uhcp__table tbody tr:hover { background: #f7f9fd; }
.uhcp__table-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--uhcp-text-lt);
}
.uhcp__table-usage { display: inline-flex; align-items: center; gap: 7px; }
.uhcp__usage-bar { display: flex; gap: 3px; }
.uhcp__usage-pip { width: 8px; height: 8px; border-radius: 2px; background: #cdd8e8; }
.uhcp__usage-pip--on { background: var(--uhcp-accent); }
.uhcp__table-link {
  color: var(--uhcp-accent) !important;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.18s;
}
.uhcp__table-link:hover { color: var(--uhcp-accent2) !important; }

/* =============================================================
   SECTION 4 — FEATURES  ● DARK NAVY GRADIENT
   ============================================================= */
.uhcp__features-section {
  padding: 88px 0;
  background: linear-gradient(160deg, #07111f 0%, #0b1a2e 50%, #081420 100%);
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}
.uhcp__features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,158,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,158,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.uhcp__features-section::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(59,158,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.uhcp__features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .uhcp__features-grid { grid-template-columns: 1fr; gap: 0; }
}
.uhcp__feat {
  text-align: center;
  padding: 44px 36px;
  border-right: 1px solid rgba(99,179,237,0.1);
  transition: background 0.25s;
}
.uhcp__feat:last-child { border-right: none; }
.uhcp__feat:hover { background: rgba(59,158,255,0.04); }
@media (max-width: 720px) {
  .uhcp__feat { border-right: none; border-bottom: 1px solid rgba(99,179,237,0.1); }
  .uhcp__feat:last-child { border-bottom: none; }
}
.uhcp__feat-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(59,158,255,0.1);
  border: 1px solid rgba(59,158,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 22px;
  color: var(--uhcp-accent);
  transition: transform 0.25s ease, background 0.25s;
}
.uhcp__feat:hover .uhcp__feat-icon {
  transform: translateY(-4px) scale(1.06);
  background: rgba(59,158,255,0.17);
}
.uhcp__feat-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--uhcp-text-dk) !important;
  margin: 0 0 10px !important;
}
.uhcp__feat-desc {
  font-size: 14px;
  color: var(--uhcp-muted-dk);
  line-height: 1.65;
  margin: 0;
}

/* Contrast pass for dark control-panel surfaces */
.uhcp__hero-sub,
.uhcp__hero-stat-lbl,
.uhcp__features-section .uhcp__section-sub,
.uhcp__feat-desc {
  color: rgba(232, 244, 255, 0.84) !important;
}

.uhcp__hero-pill {
  background: rgba(0, 18, 35, 0.62) !important;
  border-color: rgba(0, 212, 255, 0.38) !important;
  color: #c9f7ff !important;
}

.uhcp__feat {
  background: rgba(8, 22, 40, 0.28);
}

@media (max-width: 640px) {
  .uhcp__hero {
    min-height: auto;
  }

  .uhcp__hero-bg-img {
    opacity: 0.2;
  }

  .uhcp__hero-overlay {
    background: linear-gradient(135deg, rgba(4, 10, 20, 0.96) 0%, rgba(8, 18, 34, 0.9) 62%, rgba(0, 212, 255, 0.08) 100%);
  }

  .uhcp__hero-inner {
    padding: 78px 0 82px;
  }

  .uhcp__hero-sub {
    color: rgba(245, 250, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.65;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  }

  .uhcp__hero-stat-lbl,
  .uhcp__feat-desc {
    color: rgba(232, 244, 255, 0.86) !important;
  }

  .uhcp__feat {
    padding: 34px 24px;
  }
}

/* =============================================================
   SECTION 5 — CTA  ● WHITE
   ============================================================= */
.uhcp__cta-section {
  padding: 100px 0;
  background: var(--uhcp-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.uhcp__cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--uhcp-accent), var(--uhcp-accent2), var(--uhcp-accent));
}
.uhcp__cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,158,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.uhcp__cta-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(30px, 4.5vw, 50px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.022em !important;
  color: var(--uhcp-text-lt) !important;
  margin: 0 0 18px !important;
}
.uhcp__cta-sub {
  font-size: 17px;
  color: var(--uhcp-muted-lt);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}
.uhcp__cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
