  h2 {
    font-size: 1.3rem;
  }

  #feature-section {
    max-width: 100%;
  }

  #pricingwrapper {
    max-width: 1200px;
    /* was 1300px but guide-wrap at 800px was the real culprit */
  }

  /* Override guide-wrap width only on pricing page */
  .guide-wrap {
    max-width: 100% !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Responsive Improvements */
  #feature-section {
    padding-top: 40px !important;
    /* Reduced from 80px */
    padding-bottom: 40px !important;
    /* Reduced from 80px */
    background: transparent;
    position: relative;
    overflow: visible;
    /* Changed to prevent image cutoff */
  }


  /* Pricing wrapper enhancement */
  #pricingwrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
  }

  #pricing-tables {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    align-items: start;
    font-family: inherit;
  }

  /* Individual pricing cards */
  .pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .pricing-table:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  /* Featured (VIP/PRO/Enterprise) styling */
  .pricing-table.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
      linear-gradient(135deg, #25D366, #2463EB) border-box;
  }


  /* Header section */
  .pricing-table .header {
    min-height: 130px;
    /* all headers same height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* content anchors to bottom */
    padding: 16px 16px 20px;
  }

  .pricing-table.featured .header {
    background: #f0fdf6;
  }

  .pricing-table .header {
    background: #EEEEEE;
    min-height: 170px;
  }

  .pricing-table .title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .pricing-table.featured .title {
    color: #25D366;
  }

  .pricing-table .price {
    font-size: 48px;
    font-weight: 300;
    color: #2c3e50;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
  }

  .pricing-table .price span {
    font-size: 18px;
    color: #999;
    font-weight: 400;
  }

    /* Features section */
  .pricing-table .features {
    background: white;
    padding: 20px 18px;
    flex-grow: 1;
  }

  .pricing-table .features ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .pricing-table .features li {

    color: #555;
    font-size: 14px;
    padding: 10px 0 10px 22px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .pricing-table .features li:last-child {
    border-bottom: none;
  }



  /* Style for empty list items (spacers) */
  .pricing-table .features li:empty {
    padding: 6px 0;
    border: none;
  }

  /* Highlight AI features */
  .pricing-table .features li:contains("✨") {
    font-weight: 500;
    color: #333;
  }

  /* Strong text in features */
  .pricing-table .features li b {
    font-weight: 600;
    font-size: 16px;
  }

  /* Signup button section */
  .pricing-table .signup {
    padding: 25px;
    background: linear-gradient(135deg, #fafafa, white);
    display: flex;
    justify-content: center;

  }

  .pricing-table .signup a {
    display: inline-block;

    background: white;



    text-decoration: none;
    font-weight: 600;


    transition: all 0.3s ease;


    background: white;
    color: #25D366;
    border: 1.5px solid #25D366;
    border-radius: 8px;
    /* less rounded = more professional */
    font-size: 14px;
    text-transform: none;
    /* remove all-caps */
    letter-spacing: 0;
    padding: 12px 32px;

  }

  .pricing-table .signup a:hover {
    background: #25D366;
    color: white;
    box-shadow: none;
    /* remove glow effect */
    transform: none;
    /* remove float on hover */
  }

  /* Featured card buttons */
  .pricing-table.featured .signup a {
    background: #25D366;
    /* flat solid, no gradient */
    color: white;
    border: none;

  }

  .pricing-table.featured .signup a:hover {
    background: #075e54;
    /* your brand dark green */
    box-shadow: none;
  }

  /* Enterprise button special */


  .pricing-table:last-child .signup a:hover {
    background: #34495e;
    border-color: #34495e;
  }



  /* Mobile responsiveness */
  @media (max-width: 1100px) {
    #pricing-tables {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    #feature-section {
      padding-top: 30px !important;
      padding-bottom: 30px !important;
    }

    #pricingwrapper {
      padding: 8px;
    }

    #pricing-tables {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .guide-wrap {
      padding-left: 0.75rem !important;
      padding-right: 0.75rem !important;
    }

    .pricing-table {
      max-width: 100% !important;
      margin: 0;
      width: 100%;
    }

    .pricing-table.featured::before {
      display: none;
    }

    .pricing-table .price {
      font-size: 36px;
    }

    .pricing-table .header {
      padding: 16px 12px 18px;
    }

    .pricing-table .features {
      padding: 14px 14px;
    }

    .pricing-table .signup {
      padding: 14px;
    }
  }

  /* Animation on scroll */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .pricing-table:nth-child(1) {
    animation-delay: 0.1s;
  }

  .pricing-table:nth-child(2) {
    animation-delay: 0.2s;
  }

  .pricing-table:nth-child(3) {
    animation-delay: 0.3s;
  }

  .pricing-table:nth-child(4) {
    animation-delay: 0.4s;
  }

  /* Page title section - add above pricing tables */
  .pricing-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .pricing-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .pricing-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
