/* === Base Styling === */
.pricing-section {
    padding: 100px 20px;
    background-color: #0e0e0e;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
    margin-top: -60px;
  }
  
  .pricing-title {
    font-size: 3rem;
    color: #00c2ff;
    margin-bottom: 40px;
  }
  
  /* === Toggle Buttons === */
  .roi-toggle {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .roi-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #00c2ff;
    color: #00c2ff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .roi-btn.active,
  .roi-btn:hover {
    background-color: #00c2ff;
    color: #000;
  }
  
  /* === Pricing Grid === */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .pricing-section.show .pricing-grid {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* === Pricing Card === */
  .pricing-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px 20px;
    transition: 0.3s ease;
    box-shadow: 0 0 0 transparent;
  }
  
  .pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 194, 255, 0.2);
  }
  
  .plan-name {
    font-size: 1.8rem;
    color: #00c2ff;
    margin-bottom: 10px;
  }
  
  .min-investment {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .roi-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }
  
  .roi-list li {
    font-size: 1rem;
    color: #aaa;
    margin: 8px 0;
  }
  
  .plan-cta {
    padding: 12px 24px;
    background-color: #00c2ff;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .plan-cta:hover {
    background-color: #00a0d1;
  }
  
  /* === Responsive Grid (Compressed Media Queries) === */
  
  /* Extra Large Desktops (1280px+) */

  
  /* Desktop & Large Tablets (1024px–1279px) */
  @media (min-width: 1024px) and (max-width: 1279px) {
    .pricing-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
  }
  
  /* Tablets (768px–1023px) */
  @media (min-width: 768px) and (max-width: 1023px) {
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .pricing-section {
      padding: 80px 15px;
    }
  
    .pricing-title {
      font-size: 2.2rem;
    }
  }
  
  /* Large Phones / Phablets (576px–767px) */
  @media (min-width: 576px) and (max-width: 767px) {
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Standard Mobile Phones (max-width: 575px) */
  @media (max-width: 575px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
  
    .pricing-card {
      max-width: 360px;
      margin: auto;
      width: 100%;
    }
  
    .pricing-title {
      font-size: 2rem;
    }
  
    .roi-btn {
      padding: 8px 16px;
    }
  }
  
  /* Small Mobile Phones (max-width: 375px) */
  @media (max-width: 375px) {
    .pricing-section {
      padding: 60px 10px;
    }
  
    .plan-name {
      font-size: 1.5rem;
    }
  
    .pricing-card {
      padding: 20px 15px;
    }
  
    .roi-btn {
      font-size: 0.85rem;
      padding: 6px 12px;
    }
  }