/* ===== CTA (xcta- scoped) ===== */
.xcta-zone {
  --ink: #0f172a;
  --muted: #556277;
  --pill: #e8f4f3;          /* soft mint background */
  --pill-text: #12616E;     /* unified brand color */
  --accent: #12616E;        /* single brand accent */

  background:
    radial-gradient(1200px 700px at 10% -10%, #edf9f6 0%, transparent 60%),
    radial-gradient(900px 500px at 110% 10%, #e9f7f4 0%, transparent 55%),
    #fbfcff;
  padding: clamp(36px, 2vw, 100px) 16px;
  font-family: inherit;
}

.xcta-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Pill button above the heading */
.xcta-pill {
  margin: 0 0 18px;
}

.xcta-pill-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pill);
  color: var(--pill-text);
  text-decoration: none;
  font-weight: 700;
  box-shadow: inset 0 1px 0 #fff, 0 6px 18px rgba(18, 97, 110, 0.08); /* subtle brand glow */
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}

.xcta-pill-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}

.xcta-pill-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(18, 97, 110, 0.18), inset 0 1px 0 #fff;
}

/* Title */
.xcta-title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-size: clamp(32px, 7.2vw, 44px);
}

/* Brand accent text — now solid, no gradient */
.xcta-accent {
  display: block;
  color: var(--accent);
}

/* Sub text */
.xcta-sub {
  margin: 0 auto;
  max-width: 1000px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .xcta-pill-btn {
    transition: none;
  }
}

/* Small screen spacing */
@media (max-width: 640px) {
  .xcta-zone {
    padding: 36px 18px 44px;
  }
  .xcta-pill {
    margin-bottom: 14px;
  }
}
