  :root {
    --primary-color: #6f42c1;
    --primary-hover: #5a32a3;
    --secondary-color: #ffc107;
    --bg-light: #f8f9fc;
    --text-dark: #1e293b;
    --border-color: #e2e8f0;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
  }

  /* Hero Section */ 
  .bg-half-170 {
    padding: 120px 0 80px;
  }

  /* Header Section */
  .header-section {
    padding: 3rem 0;
    text-align: center;
  }
  
  .header-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.05rem;
  }

  /* Pricing Cards */
  .pricing-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.1);
    border-color: var(--primary-color);
  }

  .pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, #ffffff, #fdfbff);
  }
  
  .popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .discount-badge {
    display: inline-flex;
    align-items: center;
    background: #fff1f2;
    color: #e11d48;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
  }

  .price-section {
    margin: 1.5rem 0;
  }

  .price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
  }

  .price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
    margin-right: 8px;
  }

  .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
  }

  .features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
  }

  .icon-check {
    color: #10b981;
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .icon-cross {
    color: #cbd5e1;
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
  }
  
  .text-disabled {
    color: #94a3b8;
  }

  .notes-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
  }

  .notes-box ul {
    margin-bottom: 0;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }

  .btn-select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-primary-custom {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.25);
  }

  .btn-primary-custom:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.35);
    color: white;
  }

  /* FAQ Section */
  .faq-section {
    background: #fff;
    padding: 80px 0;
  }

  .nav-pills .nav-link {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    background: #fff;
  }

  .nav-pills .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }

  .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
  }

  .accordion-button {
    font-weight: 600;
    padding: 1.25rem;
  }

  .accordion-button:not(.collapsed) {
    background-color: #f8f9fc;
    color: var(--primary-color);
  }

  .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
  }

  /* Footer Note */
  .footer-note {
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
  }

  @media (max-width: 768px) {
    .pricing-card { 
      padding: 2rem; 
    }
    .header-section { 
      padding: 2rem 0; 
    }
    .price-current {
      font-size: 2rem;
    }
  }