  /* 1. Base Pricing Item Style */
  .pricing-item {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  /* 2. Dynamic Border & Shadow on Hover */
  .pricing-item:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color);
    box-shadow: 0 10px 40px -10px var(--theme-glow);
  }

  /* 3. Text Colors Inherit from Variable */
  .pricing-item h3 {
    color: white;
    font-weight: 700;
  }
  
  /* Apply Color & Glow to both standard and static prices */
  .pricing-item h4 sup,
  .pricing-item h4 span.price-value,
  .pricing-item h4 span.price-value-static {
    color: var(--theme-color);
    text-shadow: 0 0 15px var(--theme-glow);
  }
  
  /* ENSURE FONT SIZE IS CORRECT (BIG) FOR BOTH */
  .pricing-item h4 span.price-value,
  .pricing-item h4 span.price-value-static {
      font-size: 3.5rem;
      font-weight: 700;
  }

  .leasing-info {
    color: var(--theme-color) !important;
    display: none; 
    font-size: 0.9em; 
    margin-bottom: 15px;
  }

  /* 4. List Icons */
  .pricing-item ul li i {
    color: var(--theme-color);
    margin-right: 10px;
    font-size: 1.1rem;
  }

  /* 5. Buttons */
  .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
  }

  .cta-btn:hover {
    background-color: var(--theme-color);
    color: #000; /* Black text on neon background reads better */
    box-shadow: 0 0 20px var(--theme-glow);
  }

  /* 6. Popular Badge (Growth Card) */
  .pricing-item .popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--theme-glow);
    color: white;
    border: 1px solid var(--theme-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  /* 7. Custom Badge (CV / Upgrades) */
  .badge-custom {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
  }

  /* 8. Details Section Styling */
  .card-details .details-title {
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .detail-header {
    color: var(--theme-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .detail-text {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    color: #e0e0e0;
  }

  .view-details-link {
    font-size: 0.85rem;
    opacity: 0.7;
    cursor: pointer;
    border-bottom: 1px dotted rgba(255,255,255,0.5);
    transition: 0.3s;
  }
  .view-details-link:hover {
    color: var(--theme-color);
    opacity: 1;
    border-color: var(--theme-color);
  }

  .price-badge {
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: white;
  }

  /* Force Z-Index for Clickability */
  .cta-btn {
    position: relative;
    z-index: 100 !important;
  }
  .card-details .cta-btn,
  .pricing-content .cta-btn {
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
  }
  .card-details {
    z-index: 50 !important;
    position: relative;
  }