/* ============================================================================
   TRUST LINE COMPONENT

   Muted subtext displayed beneath CTA buttons to reduce friction.
   Typically communicates "no risk" signals like free trials, no credit card, etc.

   Required HTML Structure:

   <p class="trust-line">No credit card required &bull; Free forever</p>

   Modifiers:
   - (none currently)

   Notes:
   - Pair directly beneath a CTA button inside a .hero-cta or similar wrapper
   - Uses muted text color so it doesn't compete with the CTA
   ============================================================================ */

.trust-line {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: var(--spacing-sm);
}

@media (max-width: 768px) {
  .trust-line {
    font-size: 0.8rem;
  }
}
