.why-switch-comparison {
    padding: 80px 30px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }
  
  .comparison-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
  }
  
  .comparison-heading p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
  }
  
  .comparison-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .comparison-card {
    width: 340px;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .comparison-card ul {
    margin-top: 15px;
    padding-left: 20px;
    line-height: 1.6;
    font-size: 0.98rem;
  }
  
  .comparison-card.manual {
    background: #f2f2f2;
    color: #888;
    border: 1px dashed #ddd;
  }
  
  .comparison-card.ai {
    background: #000;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .comparison-card.ai .tick {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #4caf50;
  }
  
  .comparison-card:hover {
    transform: translateY(-4px);
  }
  