/* ==========================================================================
   PRICING SECTION
   Pricing highlight and features
   ========================================================================== */

  /* Pricing Section */
  .pricing-section {
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
  }

  .pricing-highlight {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-main);
    border-radius: 24px;
    color: var(--white);
    margin: 0 auto 3rem;
    max-width: 800px;
    box-shadow: 0 30px 60px rgba(0,102,255,.3);
    position: relative;
    overflow: hidden;
  }

  .price-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  @media (min-width: 768px) {
    .price-options {
      gap: 3rem;
    }
  }

  .price-option {
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,.1);
  }

  .price-option.highlighted {
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.5);
    transform: scale(1.05);
  }

  .price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  @media (min-width: 768px) {
    .price-tag {
      font-size: 3rem;
    }
  }

  .price-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .price-label {
      font-size: 1rem;
    }
  }

  .price-strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 0.25rem;
  }

  .price-tagline {
    font-size: 1.25rem;
    opacity: 0.95;
  }

  .pricing-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  @media (min-width: 640px) {
    .pricing-features {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .pricing-features {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .pricing-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .pricing-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
  }

  .pricing-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(0,102,255,.3);
  }
