.pricing-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px 60px;
    }
    
    /* Hero Section */
    .pricing-hero {
      text-align: center;
      margin-bottom: 80px;
    }
    
    .pricing-hero-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--color-text-primary);
      line-height: 1.2;
      text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    }
    
    .pricing-hero-subtitle {
      font-size: 1.25rem;
      color: var(--color-text-secondary);
      margin-bottom: 32px;
      line-height: 1.6;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .pricing-badge {
      display: inline-block;
      background: rgba(0, 255, 136, 0.1);
      color: var(--zekt-green);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 600;
      border: 1px solid var(--zekt-green);
      margin-bottom: 24px;
    }
    
    /* Pricing Cards Grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 32px;
      margin-bottom: 80px;
    }
    
    .pricing-card {
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 40px;
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .pricing-card:hover {
      border-color: var(--zekt-green);
      box-shadow: 0 8px 40px rgba(0, 255, 136, 0.4), 0 0 80px rgba(0, 255, 136, 0.1);
      transform: translateY(-8px);
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 1) 100%);
    }
    
    .pricing-card.featured {
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.02) 50%, #0f0f0f 100%);
      box-shadow: 0 4px 30px rgba(0, 255, 136, 0.2), 0 0 60px rgba(0, 255, 136, 0.05);
    }
    
    .featured-badge {
      position: absolute;
      top: 24px;
      right: 24px;
      background: var(--zekt-green);
      color: var(--zekt-black);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 10;
    }
    
    .card-header {
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--zekt-gray-border);
    }
    
    .card-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--color-text-primary);
      margin-bottom: 8px;
      padding-right: 140px;
    }
    
    .card-description {
      font-size: 1rem;
      color: var(--color-text-secondary);
      line-height: 1.6;
    }
    
    .card-price {
      margin-bottom: 32px;
    }
    
    .price-value {
      font-size: 3rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--zekt-green) 0%, #00dd88 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
      filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
    }
    
    .price-value .currency {
      font-size: 1.5rem;
      vertical-align: super;
    }
    
    .price-period {
      font-size: 1rem;
      color: var(--color-text-secondary);
      font-weight: 400;
    }
    
    .price-note {
      font-size: 0.875rem;
      color: #ff9500;
      margin-top: 8px;
      font-style: italic;
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
      margin-bottom: 32px;
    }
    
    .feature-list li {
      padding: 12px 0;
      padding-left: 32px;
      position: relative;
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.6;
    }
    
    .feature-list li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--zekt-green);
      font-weight: 700;
      font-size: 1.25rem;
    }
    
    .feature-list li strong {
      color: var(--color-text-primary);
      font-weight: 600;
    }
    
    .card-cta {
      display: block;
      width: 100%;
      padding: 14px 24px;
      background: var(--zekt-green);
      color: var(--zekt-black);
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .card-cta:hover {
      background: #00dd77;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    }
    
    .card-cta.secondary {
      background: transparent;
      color: var(--zekt-green);
      border: 2px solid var(--zekt-green);
    }
    
    .card-cta.secondary:hover {
      background: rgba(0, 255, 136, 0.1);
    }
    
    /* Usage Pricing Section */
    .usage-pricing-section {
      margin-bottom: 80px;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }
    
    .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--color-text-primary) 0%, rgba(255, 255, 255, 0.7) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }
    
    .section-subtitle {
      font-size: 1.125rem;
      color: var(--color-text-secondary);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }
    
    .usage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }
    
    .usage-card {
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 28px 24px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .usage-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--zekt-green) 0%, #00dd88 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .usage-card:hover {
      border-color: var(--zekt-green);
      box-shadow: 0 4px 24px rgba(0, 255, 136, 0.2), 0 0 40px rgba(0, 255, 136, 0.05);
      transform: translateY(-4px);
    }
    
    .usage-card:hover::before {
      opacity: 1;
    }
    
    .usage-icon {
      font-size: 2rem;
      margin-bottom: 16px;
    }
    
    .usage-name {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--color-text-primary);
      margin-bottom: 8px;
    }
    
    .usage-rate {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--zekt-green) 0%, #00dd88 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
    }
    
    .usage-description {
      font-size: 0.9375rem;
      color: var(--color-text-secondary);
      line-height: 1.6;
    }
    
    .usage-note {
      background: linear-gradient(135deg, rgba(255, 149, 0, 0.12) 0%, rgba(255, 149, 0, 0.05) 100%);
      border: 2px solid #ff9500;
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(255, 149, 0, 0.15), 0 0 40px rgba(255, 149, 0, 0.05);
      position: relative;
      overflow: hidden;
    }
    
    .usage-note::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 149, 0, 0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.1); }
    }
    
    .usage-note-title {
      font-size: 1rem;
      font-weight: 600;
      color: #ff9500;
      margin-bottom: 8px;
    }
    
    .usage-note-text {
      font-size: 0.9375rem;
      color: var(--color-text-secondary);
      line-height: 1.6;
    }
    
    /* Feature Comparison */
    .comparison-section {
      margin-bottom: 80px;
    }
    
    .comparison-table {
      width: 100%;
      background: var(--zekt-gray);
      border: 1px solid var(--zekt-gray-border);
      border-radius: 8px;
      overflow: hidden;
    }
    
    .comparison-table table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .comparison-table th,
    .comparison-table td {
      padding: 13px 16px;
      text-align: left;
      border-bottom: 1px solid var(--zekt-gray-border);
    }
    
    .comparison-table th {
      background: rgba(0, 255, 136, 0.05);
      font-weight: 600;
      color: var(--color-text-primary);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .comparison-table td {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
    }
    
    .comparison-table tr:last-child td {
      border-bottom: none;
    }
    
    .comparison-table .check {
      color: var(--zekt-green);
      font-weight: 700;
      font-size: 1.25rem;
    }

    .comparison-table .check-addon {
      color: var(--zekt-orange);
      font-weight: 700;
      font-size: 1.25rem;
    }
    
    .comparison-table .dash {
      color: var(--color-text-tertiary);
      font-weight: 400;
    }
    
    /* FAQ Section */
    .faq-section {
      margin-bottom: 80px;
    }
    
    .faq-grid {
      display: grid;
      gap: 8px;
    }
    
    .faq-item {
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.9) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }
    
    .faq-item:hover {
      border-color: var(--zekt-green);
      box-shadow: 0 4px 20px rgba(0, 255, 136, 0.15);
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(15, 15, 15, 0.95) 100%);
    }
    
    .faq-question-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 26px;
      cursor: pointer;
      user-select: none;
    }
    
    .faq-question-header:hover .faq-arrow {
      color: var(--zekt-green);
    }
    
    .faq-question {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--color-text-primary);
      margin: 0;
      flex: 1;
    }
    
    .faq-arrow {
      color: var(--zekt-green);
      font-size: 1.5rem;
      transition: transform 0.3s ease, color 0.3s ease;
      margin-left: 16px;
    }
    
    .faq-item.expanded .faq-arrow {
      transform: rotate(90deg);
    }
    
    .faq-answer {
      font-size: 0.9375rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
      padding: 0 26px;
    }
    
    .faq-item.expanded .faq-answer {
      max-height: 500px;
      opacity: 1;
      padding: 0 26px 20px 26px;
    }
    
    .faq-answer strong {
      color: var(--zekt-green);
    }

    .faq-category-header {
      padding: 24px 0 8px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 8px;
    }

    .faq-category-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #ff9800;
      padding: 5px 14px;
      background: rgba(255, 152, 0, 0.1);
      border: 1px solid rgba(255, 152, 0, 0.4);
      border-radius: 20px;
      white-space: nowrap;
    }

    .faq-category-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 152, 0, 0.4), transparent);
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.05) 50%, rgba(0, 221, 136, 0.08) 100%);
      border: 2px solid var(--zekt-green);
      border-radius: 16px;
      padding: 60px 40px;
      text-align: center;
      margin-bottom: 40px;
      box-shadow: 0 8px 40px rgba(0, 255, 136, 0.2), 0 0 80px rgba(0, 255, 136, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }
    
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-text-primary);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    
    .cta-subtitle {
      font-size: 1.125rem;
      color: var(--color-text-secondary);
      margin-bottom: 32px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }
    
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }
    
    .btn-cta.primary {
      background: var(--zekt-green);
      color: var(--zekt-black);
    }
    
    .btn-cta.primary:hover {
      background: #00dd77;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    }
    
    .btn-cta.secondary {
      background: transparent;
      color: var(--zekt-green);
      border: 2px solid var(--zekt-green);
    }
    
    .btn-cta.secondary:hover {
      background: rgba(0, 255, 136, 0.1);
    }
    
    /* Back Button */
    .back-button-container {
      text-align: center;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid var(--zekt-gray-border);
    }
    
    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 32px;
      background: transparent;
      color: var(--zekt-green);
      border: 2px solid var(--zekt-green);
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .btn-back:hover {
      background: #00ff88;
      color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
    }
    
    .btn-back svg {
      width: 20px;
      height: 20px;
    }
    
    /* Horizontal Card Modifier */
    .pricing-card.horizontal {
      grid-column: 1 / -1;
    }
    
    .pricing-card.horizontal .card-content-wrapper {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 40px;
        align-items: center;
    }
    
    .pricing-card.horizontal .card-header {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 20px;
    }
    
    @media (max-width: 900px) {
        .pricing-card.horizontal .card-content-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
      .pricing-container {
        padding: 60px 16px 40px;
      }
      
      .pricing-hero-title {
        font-size: 2rem;
      }
      
      .pricing-grid {
        grid-template-columns: 1fr;
      }
      
      .usage-grid {
        grid-template-columns: 1fr;
      }
      
      .section-title {
        font-size: 1.75rem;
      }
      
      .comparison-table th,
      .comparison-table td {
        padding: 12px 16px;
        font-size: 0.875rem;
      }
    }

    /* One-off pricing overrides */
    .pricing-separator   { color: #333; font-size: 18px; }
    .pricing-note-orange {
      margin-top: 20px;
      padding: 12px 16px;
      background: rgba(255,153,0,0.07);
      border: 1px solid rgba(255,153,0,0.2);
      border-radius: 8px;
      font-size: 0.82rem;
      color: #aaa;
      line-height: 1.6;
    }
    .usage-note-orange {
      margin-top: 24px;
      border-color: #ff9800;
      background: linear-gradient(135deg, rgba(255, 152, 0, 0.12) 0%, rgba(255, 152, 0, 0.05) 100%);
    }
    .pricing-list-faq   { margin: 12px 0 12px 20px; line-height: 1.8; }
