 .pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  }
  .popular {
    border: 2px solid #198754;
    position: relative;
  }
  .popular::after {
    content: "★ Recommended";
    position: absolute;
    top: -12px;
    right: 12px;
    background: #198754;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
  }
  ul li .icon {
    color: orangered; /* Bootstrap primary */
    margin-right: 6px;
    font-weight: bold;
  }