/* CTA vertical stack to keep button alignment stable and readable subtext */
.cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

/* unified default subtext style */
.cta-subtext {
  font-size: 0.9rem;
  line-height: 1.2;
  color: #6c757d;
  margin-top: 6px;
  opacity: 0.9;
}

/* Ensure hero CTA subtext stays readable over imagery */
.banner-section .cta-subtext {
  color: #212529;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* Marketing additions for trial messaging */

.nav-cta-subtext {
  font-size: 0.75rem;
  color: #ffffff;
  opacity: 0.9;
  text-align: center;
  margin-top: 4px;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .nav-cta-subtext { display: none; }
}

.trial-badge {
  display: inline-block;
  background: #eafaf1;
  color: #1e7e34;
  border: 1px solid #cdeedb;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
}

.secondary-link { color: #6c757d; }
.secondary-link:hover { color: #343a40; text-decoration: underline; }
