.features-cta {
    margin-top: 4rem;      /* più spazio sopra */
    padding-bottom: 1rem;  /* anche un po' di spazio sotto */
    text-align: center;
  }
  .cta-btn {
    background-color: var(--accent, #FB8B04);
    color: white;
    padding: 1rem 2.4rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-top: 3rem;
  }

  .cta-btn:hover {
    background-color: var(--accent-hover, #e07c00);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .cta-btn {
      font-size: 1rem;
      padding: 0.9rem 2rem;
    }
  }
  