@media (max-width: 768px) {  .plan-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 8px 6px;
    margin-bottom: 10px;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .plan-card:active {
    transform: scale(0.98);
  }
  .plan-logo {
    margin: 0;
    order: 1;
    width: 100%;
    height: auto;
    min-height: unset;
    padding: 0;
  }
  
  .plan-logo img {
    max-width: 140px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .plan-details {
    padding: 4px 0 2px;
    text-align: left;
    min-width: unset;
    width: 100%;
    order: 2;
  }
  
  .plan-details h2 {
    font-size: 1rem;
    margin-bottom: 2px;
    text-align: center;
  }
  
  .plan-details .tagline {
    font-size: 0.8rem;
    margin-bottom: 6px;
    text-align: center;
  }
  
  .plan-features {
    gap: 2px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    padding: 0 6px;
  }
  .plan-features li {
    font-size: 0.8rem;
    margin-bottom: 1px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
    line-height: 1.2;
  }

  .plan-features li i.fas {
    display: none;
  }

  .plan-features li::before {
    content: '•';
    color: #666;
    margin-right: 4px;
  }
    .plan-score {
    margin: 4px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    order: 3;
  }

  .plan-score .score {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0;
  }

  .plan-score .stars {
    color: var(--star);
    font-size: 1rem;
    margin: 0;
  }  .plan-ctas {
    width: 100%;
    order: 4;
    margin-top: 2px;
    padding: 0 6px;
  }
  
  .view-btn {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .view-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
  }

  .view-btn:active {
    transform: translateY(1px);
  }

  .view-btn:hover::after {
    left: 100%;
  }

  .plans-section {
    padding: 6px 10px;
    margin-top: 12px;
  }
  
  div[style*="margin: 32px 0 0 0"] {
    margin: 12px 0 8px 0 !important;
  }
  
  div[style*="margin: 32px 0 0 0"] img {
    width: 160px !important;
    height: 38px !important;
  }
}

@media (max-width: 480px) {
  .plan-card {
    padding: 6px;
    margin-bottom: 8px;
    gap: 4px;
  }

  .plan-score .score {
    font-size: 1.5rem;
  }

  .plan-score .stars {
    font-size: 0.8rem;
  }

  .plan-logo img {
    max-width: 100px;
    max-height: 35px;
  }

  .view-btn {
    padding: 10px;
    font-size: 0.85rem;
  }

  .plans-section {
    padding: 10px;
  }
}
