/* ==============================
   HOME FEATURES - neon / card style
   File: 52-home-features.css
   (Sanitized - no non-ASCII hyphens)
   ============================== */

   .features {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 20px;
  }
  
  /* Card container (two-column on desktop) */
  .features-card {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 22px;
    align-items: start;
    background: linear-gradient(180deg, rgba(255,20,147,0.03), rgba(128,0,128,0.01));
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 0, 255, 0.16);
    box-shadow:
      0 8px 30px rgba(255, 0, 255, 0.06),
      0 0 20px rgba(255, 105, 180, 0.03);
  }
  
  /* Left column: heading + list */
  .features-card .left h2 {
    margin: 0 0 6px 0;
    font-size: 1.6rem;
    color: #ff8fcf;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.45);
    letter-spacing: 0.2px;
  }
  
  .features-card .left p.lead {
    margin: 0 0 14px 0;
    color: #e8dff2;
    opacity: 0.95;
    font-size: 0.98rem;
  }
  
  /* list */
  .features-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .features-list li {
    position: relative;
    padding-left: 48px;
    color: #f6eaff;
    font-size: 0.98rem;
    line-height: 1.25;
    transition: transform 0.18s ease, text-shadow 0.18s ease;
  }
  
  .features-list li .muted {
    color: #e6d8f1;
    opacity: 0.9;
    font-size: 0.9rem;
    margin-top: 4px;
  }
  
  /* music note glyph as neon bullet */
  .features-list li::before {
    content: "♪";
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 22px;
    color: #ff69b4;
    display: inline-block;
    -webkit-text-fill-color: #ff69b4;

    text-shadow:
      0 0 8px rgba(255, 105, 180, 0.7),
      0 0 16px rgba(255, 0, 204, 0.4);
  
    transform: translateY(0);
  }
  
  /* subtle hover lift for each item */
  .features-list li:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.20);
  }
  
  /* Right column: CTA and small badge */
  .features-card .right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    justify-content: center;
  }
  
  /* small neon CTA box */
  .features-cta {
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.05), rgba(255, 105, 180, 0.02));
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 0, 255, 0.16);
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.06);
  }
  
  .features-cta h4 {
    margin: 0 0 6px 0;
    color: #ffb4dd;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.35);
    font-size: 1.05rem;
  }
  
  .features-cta p {
    margin: 0 0 10px 0;
    color: #f0e6f5;
    font-size: 0.95rem;
    opacity: 0.95;
  }
  
  .features-cta a.cta-small {
    display: inline-block;
    background: #120005;
    color: #ffd8f6;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255, 0, 255, 0.22);
    box-shadow: 0 6px 18px rgba(255, 0, 255, 0.18);
    font-weight: 600;
  }
  
  /* small badge under CTA */
  .features-badge {
    margin-top: 6px;
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.03);
    color: #ffdff8;
    text-align: center;
    font-size: 0.92rem;
  }
  
  .features-badge .badge-title {
    color: #ff9fd6;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(255, 105, 180, 0.25);
    margin-bottom: 6px;
  }
  
  .features-badge .badge-body {
    color: #f0e6f5;
    opacity: 0.95;
  }
  
  /* Responsive: stack on narrow screens */
  @media (max-width: 880px) {
    .features-card {
      grid-template-columns: 1fr;
    }
    .features-card .right {
      flex-direction: row;
      gap: 12px;
    }
    .features-cta { padding: 12px; }
    .features-badge { display: none; }
  }