> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bnplx.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Support Matrix

> Complete overview of BNPLX provider capabilities and supported payment methods

<div className="min-h-screen bg-background relative">
  <div className="absolute inset-0 bg-grid-foreground/[0.02] bg-[size:20px_20px]" />

  <div className="relative px-8 py-12 max-w-7xl mx-auto">
    {(() => {
            const [activeTab, setActiveTab] = React.useState('payment-methods');
            
            const activeButtonClass = 'px-6 py-3 rounded-md font-medium text-white shadow hover:shadow-md hover:-translate-y-0.5 transition-all duration-300 transform';
            const inactiveButtonClass = 'px-6 py-3 rounded-md font-medium hover:shadow-md hover:-translate-y-0.5 transition-all duration-300 transform border border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-200 hover:border-gray-400';
            
            return (
              <>
                {/* Header */}
                <div className="text-center mb-12">
                  <h1 className="text-5xl font-bold text-gray-900 dark:text-white mb-4">
                    Support Matrix
                  </h1>
                  <p className="text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto">
                    Complete overview of BNPLX provider capabilities and supported payment methods
                  </p>
                </div>

                {/* Tab Navigation */}
                <div className="mb-8 mt-8">
                  <div className="flex flex-col sm:flex-row gap-4 justify-center">
                    <button
                      id="payment-methods-btn"
                      onClick={() => setActiveTab('payment-methods')}
                      className={activeTab === 'payment-methods' ? activeButtonClass : inactiveButtonClass}
                      style={activeTab === 'payment-methods' ? {backgroundColor: '#16A34A'} : {}}
                    >
                      Payment Methods
                    </button>
                    <button
                      id="transaction-flows-btn"
                      onClick={() => setActiveTab('transaction-flows')}
                      className={activeTab === 'transaction-flows' ? activeButtonClass : inactiveButtonClass}
                      style={activeTab === 'transaction-flows' ? {backgroundColor: '#16A34A'} : {}}
                    >
                      Transaction Flows
                    </button>
                    <button
                      id="shop-integration-btn"
                      onClick={() => setActiveTab('shop-integration')}
                      className={activeTab === 'shop-integration' ? activeButtonClass : inactiveButtonClass}
                      style={activeTab === 'shop-integration' ? {backgroundColor: '#16A34A'} : {}}
                    >
                      Shop Integration
                    </button>
                </div>
              </div>

                {/* Payment Methods Support Matrix */}
                {activeTab === 'payment-methods' && (
                <div id="payment-methods-tab" className="mb-20">
                  <div className="bg-transparent rounded-2xl overflow-hidden">
                    <div className="overflow-x-auto">
                      <table className="w-full">
                        <thead>
                                  <tr className="bg-transparent">
                      <th className="px-6 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          Connector
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Status</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Invoice</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Installment</span>
                          <span>Invoice</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Subscription</span>
                          <span>Invoice</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Direct Debit</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Installment</span>
                          <span>Direct Debit</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Subscription</span>
                          <span>Direct Debit</span>
                        </div>
                      </th>
                                </tr>
                        </thead>
                        <tbody className="divide-y divide-gray-100 dark:divide-gray-700">
                                  <tr className="transition-all duration-200 group">
                                    <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                              <div className="flex items-center gap-3">
                                <img
                                  src="https://app.staging.bnplx.io/generic-assets/avarda.svg"
                                  alt="AVARDA logo"
                                  className="w-8 h-8 shadow-md object-contain bg-white"
                                />
                                <span>AVARDA</span>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                                <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                                Production
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                                <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                                  <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                                </svg>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                                <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                                  <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                                </svg>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                </tr>
                                  <tr className="transition-all duration-200 group">
                                    <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                              <div className="flex items-center gap-3">
                                <img
                                  src="https://app.staging.bnplx.io/generic-assets/axytos.svg"
                                  alt="AXYTOS logo"
                                  className="w-8 h-8 shadow-md object-contain bg-white"
                                />
                                <span>AXYTOS</span>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                                <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                                Development
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                                <div className="w-3 h-0.5 bg-white rounded-full"></div>
                              </div>
                            </td>
                                </tr>
                                  <tr className="transition-all duration-200 group">
                                    <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                              <div className="flex items-center gap-3">
                                <img
                                  src="https://app.staging.bnplx.io/generic-assets/billie.svg"
                                  alt="BILLIE logo"
                                  className="w-8 h-8 shadow-md object-contain bg-white"
                                />
                                <span>BILLIE</span>
                              </div>
                            </td>
                                    <td className="px-4 py-4 text-center">
                              <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                                <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                                Production
                              </div>
                            </td>
                    <td className="px-4 py-4 text-center">
                      <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                        <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                          <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                        </svg>
                      </div>
                    </td>
                    <td className="px-4 py-4 text-center">
                      <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                        <div className="w-3 h-0.5 bg-white rounded-full"></div>
                      </div>
                    </td>
                    <td className="px-4 py-4 text-center">
                      <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                        <div className="w-3 h-0.5 bg-white rounded-full"></div>
                      </div>
                    </td>
                    <td className="px-4 py-4 text-center">
                      <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                        <div className="w-3 h-0.5 bg-white rounded-full"></div>
                      </div>
                    </td>
                    <td className="px-4 py-4 text-center">
                      <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                        <div className="w-3 h-0.5 bg-white rounded-full"></div>
                      </div>
                    </td>
                  <td className="px-4 py-4 text-center">
                      <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                        <div className="w-3 h-0.5 bg-white rounded-full"></div>
                      </div>
                    </td>
                    </tr>
                  <tr className="transition-all duration-200 group">
                  <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                    <div className="flex items-center gap-3">
                      <img
                        src="https://app.staging.bnplx.io/generic-assets/mondu.svg"
                        alt="MONDU logo"
                        className="w-8 h-8 shadow-md object-contain bg-white"
                      />
                      <span>MONDU</span>
                    </div>
                  </td>
                  <td className="px-4 py-4 text-center">
                    <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                      <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                      Sandbox
                    </div>
                  </td>
                  <td className="px-4 py-4 text-center">
                    <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                      <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                        <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                      </svg>
                    </div>
                  </td>
                  <td className="px-4 py-4 text-center">
                    <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                      <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                        <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                      </svg>
                    </div>
                  </td>
                  <td className="px-4 py-4 text-center">
                    <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                      <div className="w-3 h-0.5 bg-white rounded-full"></div>
                    </div>
                  </td>
                  <td className="px-4 py-4 text-center">
                    <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                      <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                        <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                      </svg>
                    </div>
                  </td>
                  <td className="px-4 py-4 text-center">
                    <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                      <div className="w-3 h-0.5 bg-white rounded-full"></div>
                    </div>
                  </td>
                <td className="px-4 py-4 text-center">
                    <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                      <div className="w-3 h-0.5 bg-white rounded-full"></div>
                    </div>
                  </td>
                  </tr>
                <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/payla.svg"
                      alt="PAYLA logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>PAYLA</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                    Production
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr>
              <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/ratepay.svg"
                      alt="RATEPAY logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>RATEPAY</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                    Sandbox
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr>
              <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/riverty.svg"
                      alt="RIVERTY logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>RIVERTY</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                    Sandbox
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr>
              {/* SCALAPAY row commented out */}
              {/* <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/scalapay.svg"
                      alt="SCALAPAy logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>SCALAPAY</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                    Development
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                  <div className="w-3 h-0.5 bg-white rounded-full"></div>
                </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr> */}
              {/* SKIP PAY row commented out */}
              {/* <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/skippay.svg"
                      alt="SKIPPAY logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>SKIP PAY</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                    Development
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                  <div className="w-3 h-0.5 bg-white rounded-full"></div>
                </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr> */}
              <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/svea.svg"
                      alt="SVEA logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>SVEA</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                    Production
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                </tr>
              <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/twisto.svg"
                      alt="TWISTO logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>TWISTO</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                    Development
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                  <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                    <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                  </svg>
                </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr>
              <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/zaver.svg"
                      alt="ZAVER logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>ZAVER</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                    Sandbox
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                    <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                      <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                    </svg>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr>
              <tr className="transition-all duration-200 group">
                <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                  <div className="flex items-center gap-3">
                    <img
                      src="https://app.staging.bnplx.io/generic-assets/openbank.svg"
                      alt="Openbank logo"
                      className="w-8 h-8 shadow-md object-contain bg-white"
                    />
                    <span>Openbank</span>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                    <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                    Development
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                  <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                    <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                  </svg>
                </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
              <td className="px-4 py-4 text-center">
                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                    <div className="w-3 h-0.5 bg-white rounded-full"></div>
                  </div>
                </td>
                </tr>
              </tbody>
            </table>
                </div>
              </div>
            </div>
                )}

                {/* Transaction Flows Support Matrix */}
                {activeTab === 'transaction-flows' && (
                <div id="transaction-flows-tab" className="mb-16">
                  <div className="bg-transparent rounded-2xl overflow-hidden">
                    <div className="overflow-x-auto">
                      <table className="w-full">
                        <thead>
                                  <tr className="bg-transparent">
                      <th className="px-6 py-5 text-left text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex items-center gap-2">
                          Connector
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Status</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Payments</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Refunds</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Partial</span>
                          <span>Refunds</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Cancellation</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Partial</span>
                          <span>Cancellation</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Capture</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Partial</span>
                          <span>Capture</span>
                        </div>
                      </th>
                    </tr>
                  </thead>
                        <tbody className="divide-y divide-gray-100 dark:divide-gray-700">
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/avarda.svg"
                            alt="AVARDA logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>AVARDA</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/axytos.svg"
                            alt="AXYTOS logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>AXYTOS</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/billie.svg"
                            alt="BILLIE logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>BILLIE</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/mondu.svg"
                            alt="MONDU logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>MONDU</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/payla.svg"
                            alt="PAYLA logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>PAYLA</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/ratepay.svg"
                            alt="RATEPAY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>RATEPAY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/riverty.svg"
                            alt="RIVERTY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>RIVERTY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                    {/* SCALAPAY row commented out */}
                    {/* <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/scalapay.svg"
                            alt="SCALAPAY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>SCALAPAY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                    </tr> */}
                    {/* SKIP PAY row commented out */}
                    {/* <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/skippay.svg"
                            alt="SKIP PAY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>SKIP PAY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                    </tr> */}
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/svea.svg"
                            alt="SVEA logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>SVEA</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/twisto.svg"
                            alt="TWISTO logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>TWISTO</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/zaver.svg"
                            alt="ZAVER logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>ZAVER</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                      </td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/openbank.svg"
                            alt="Openbank logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>Openbank</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                    </tr>
                  </tbody>
                </table>
                    </div>
                  </div>
                </div>
                )}

                {/* Shop Integration Support Matrix */}
                {activeTab === 'shop-integration' && (
                <div id="shop-integration-tab" className="mb-16 shop-integration-only">
                  <div className="bg-transparent rounded-2xl overflow-hidden">
                    <div className="overflow-x-auto">
                      <table className="w-full shop-integration-table" id="shop-integration-table">
                        <thead>
                                  <tr className="bg-transparent">
                      <th className="px-6 py-5 text-left text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex items-center gap-2">
                          Connector
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Status</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>WooCommerce</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Shopify</span>
                        </div>
                      </th>
                      <th className="px-4 py-5 text-center text-sm font-bold text-gray-900 dark:text-white border-b-2 border-gray-200 dark:border-gray-600">
                        <div className="flex flex-col items-center gap-1">
                          <span>Shopware</span>
                        </div>
                      </th>
                    </tr>
                  </thead>
                        <tbody className="divide-y divide-gray-100 dark:divide-gray-700">
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/avarda.svg"
                            alt="AVARDA logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>AVARDA</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/axytos.svg"
                            alt="AXYTOS logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>AXYTOS</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/billie.svg"
                            alt="BILLIE logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>BILLIE</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/mondu.svg"
                            alt="MONDU logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>MONDU</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/payla.svg"
                            alt="PAYLA logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>PAYLA</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/ratepay.svg"
                            alt="RATEPAY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>RATEPAY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/riverty.svg"
                            alt="RIVERTY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>RIVERTY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                    {/* SCALAPAY row commented out */}
                    {/* <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/scalapay.svg"
                            alt="SCALAPAY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>SCALAPAY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr> */}
                    {/* SKIP PAY row commented out */}
                    {/* <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/skippay.svg"
                            alt="SKIP PAY logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>SKIP PAY</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md bg-gray-400 dark:bg-gray-600">
                          <div className="w-3 h-0.5 bg-white rounded-full"></div>
                        </div>
                      </td>
                    </tr> */}
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/svea.svg"
                            alt="SVEA logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>SVEA</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/twisto.svg"
                            alt="TWISTO logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>TWISTO</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/zaver.svg"
                            alt="ZAVER logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>ZAVER</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform duration-200" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-4 h-4 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div></td>
                    </tr>
                            <tr className="transition-all duration-200 group">
                              <td className="px-6 py-4 text-sm font-semibold text-gray-900 dark:text-white">
                        <div className="flex items-center gap-3">
                          <img
                            src="https://app.staging.bnplx.io/generic-assets/openbank.svg"
                            alt="Openbank logo"
                            className="w-8 h-8 shadow-md object-contain bg-white"
                          />
                          <span>Openbank</span>
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                      </td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                              <td className="px-4 py-4 text-center">                  <div className="w-6 h-6 mx-auto rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '16px', lineHeight: '1' }}>!</span>
                        </div></td>
                    </tr>
                  </tbody>
                </table>
                    </div>
                  </div>
                </div>
                )}

                {/* Legend Section for Shop Integration */}
                {activeTab === 'shop-integration' && (
          <div className="bg-gray-50 dark:bg-gray-800/40 rounded-2xl p-6 mb-16">
            <h3 className="text-xl font-bold text-gray-900 dark:text-white mb-4 text-center">Legend</h3>
            <div className="flex flex-wrap justify-center items-center gap-4">
                      {/* Production */}
                      <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                          Production
                        </div>
                        <span className="text-xs text-gray-600 dark:text-gray-300">Live & certified</span>
                      </div>

                      {/* Sandbox */}
                      <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                          Sandbox
                        </div>
                        <span className="text-xs text-gray-600 dark:text-gray-300">Testing environment</span>
                      </div>

                      {/* Development */}
                      <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                        <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                          <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                          Development
                        </div>
                        <span className="text-xs text-gray-600 dark:text-gray-300">In development</span>
                      </div>

                      {/* Fully Supported */}
                      <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                        <div className="w-5 h-5 rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#16A34A' }}>
                          <svg className="w-3 h-3 text-white" fill="currentColor" viewBox="0 0 20 20">
                            <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                          </svg>
                        </div>
                        <span className="text-xs text-gray-600 dark:text-gray-300">Fully Supported</span>
                      </div>

                      {/* On Request */}
                      <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                        <div className="w-5 h-5 rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#F97316' }}>
                          <span className="text-white font-bold leading-none" style={{ fontSize: '14px', lineHeight: '1' }}>!</span>
                        </div>
                        <span className="text-xs text-gray-600 dark:text-gray-300">On Request</span>
                      </div>
                    </div>
                  </div>
                )}

                {/* Legend Section for other tabs */}
                {activeTab !== 'shop-integration' && (
                  <div className="bg-gray-50 dark:bg-gray-800/40 rounded-2xl p-6 mb-16">
                    <h3 className="text-xl font-bold text-gray-900 dark:text-white mb-4 text-center">Legend</h3>
                    <div className="flex flex-wrap justify-center items-center gap-4">
              {/* Production */}
              <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#F0FDF4', color: '#166534' }}>
                  <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#16A34A' }}></div>
                  Production
                </div>
                <span className="text-xs text-gray-600 dark:text-gray-300">Live & certified</span>
              </div>

              {/* Sandbox */}
              <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEFCE8', color: '#854D0E' }}>
                  <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EAB308' }}></div>
                  Sandbox
                </div>
                <span className="text-xs text-gray-600 dark:text-gray-300">Testing environment</span>
              </div>

              {/* Development */}
              <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                <div className="inline-flex items-center gap-1.5 px-2 py-1 rounded-full text-xs font-medium" style={{ backgroundColor: '#FEF2F2', color: '#991B1B' }}>
                  <div className="w-2 h-2 rounded-full flex-shrink-0" style={{ backgroundColor: '#EF4444' }}></div>
                  Development
                </div>
                <span className="text-xs text-gray-600 dark:text-gray-300">In development</span>
              </div>

              {/* Fully Supported */}
              <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                <div className="w-5 h-5 rounded-full flex items-center justify-center shadow-md" style={{ backgroundColor: '#16A34A' }}>
                  <svg className="w-3 h-3 text-white" fill="currentColor" viewBox="0 0 20 20">
                    <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                  </svg>
                </div>
                <span className="text-xs text-gray-600 dark:text-gray-300">Fully Supported</span>
              </div>

              {/* Not Supported */}
              <div className="flex items-center gap-2 px-3 py-2 bg-white dark:bg-gray-900 rounded-lg shadow-sm">
                <div className="w-5 h-5 bg-gray-400 dark:bg-gray-600 rounded-full flex items-center justify-center shadow-md">
                  <div className="w-2.5 h-0.5 bg-white rounded-full"></div>
                </div>
                <span className="text-xs text-gray-600 dark:text-gray-300">Not Supported</span>
              </div>
            </div>
          </div>
                )}
              </>
            );
          })()}
  </div>
</div>
