.elementor-10625 .elementor-element.elementor-element-3b2df75{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-eb8b3b4 */:root {
    --brand-dark: #0f172a;
    --brand-blue: #1d4ed8;
    --brand-blue-light: #eff6ff;
    --brand-accent: #3b82f6;
    --brand-green: #16a34a;
    --brand-green-light: #f0fdf4;
    --brand-gray: #64748b;
    --brand-gray-light: #f8fafc;
    --brand-border: #e2e8f0;
    --brand-warning: #b45309;
    --brand-warning-light: #fffbeb;
    --font-sans: 'Inter', 'Segoe UI', Arial, sans-serif;
    --radius: 10px;
    --shadow: 0 1px 6px 0 rgba(0,0,0,0.07);
    --shadow-md: 0 4px 18px 0 rgba(0,0,0,0.09);
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: var(--font-sans);
    background: #fff;
    color: var(--brand-dark);
    line-height: 1.7;
    font-size: 16px;
  }

  a { color: var(--brand-blue); text-decoration: none; }
  a:hover { text-decoration: underline; }
 .page-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }
  /* ── Hero ── */
  .hero {
       background: linear-gradient(135deg, #121619 0%, #1a2332 100%);
    padding: 100px 0 60px;
    color: #fff;
    text-align: center;
  }
  .hero .badge {
    display: inline-block;
    background: rgba(59,130,246,0.25);
    border: 1px solid rgba(59,130,246,0.5);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.02em;
    color: #fff;
    padding-bottom: 10px;
  }
  .hero p {
    font-size: 17px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 28px;
  }
  .hero-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #94a3b8;
  }
  .hero-meta span { display: flex; align-items: center; gap: 6px; }
  .dot-live {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(74,222,128,.25);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,.25); } 50% { box-shadow: 0 0 0 6px rgba(74,222,128,.08); } }

  /* ── Notice banner ── */
  .notice {
    background: var(--brand-warning-light);
    border-left: 4px solid #f59e0b;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--brand-warning);
    margin: 32px 0 0;
  }

  /* ── Breadcrumb ── */
  .breadcrumb {
    font-size: 13px;
    color: var(--brand-gray);
    padding: 18px 0 0;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--brand-gray); }
  .breadcrumb span { color: #cbd5e1; }

  /* ── Section headers ── */
  h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
    margin: 48px 0 10px !important;
    letter-spacing: -.01em !important;
  }
  h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--brand-dark) !important;
    margin: 24px 0 8px !important;
  }
  p { margin-bottom: 12px; color: #334155; }

  /* ── Summary cards ── */
  .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0 40px;
  }
  .summary-card {
    background: var(--brand-blue-light);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
  }
  .summary-card .number { font-size: 32px; font-weight: 800; color: var(--brand-blue); }
  .summary-card .label { font-size: 13px; color: #3b5bdb; margin-top: 4px; }

  /* ── Sub-processor table ── */
  .sp-table-wrap { overflow-x: auto; margin: 20px 0 0; border-radius: var(--radius); box-shadow: var(--shadow); }
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
  }
  thead th {
    background: var(--brand-dark);
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  thead th:first-child { border-radius: var(--radius) 0 0 0; }
  thead th:last-child { border-radius: 0 var(--radius) 0 0; }
  tbody tr { border-bottom: 1px solid var(--brand-border); transition: background .15s; }
  tbody tr:hover { background: var(--brand-gray-light); }
  tbody td { padding: 14px 16px; vertical-align: top; color: #334155; }
  .sp-name { font-weight: 700; color: var(--brand-dark); display: block; }
  .sp-url { font-size: 12px; color: var(--brand-gray); }
  .sp-url a { color: var(--brand-accent); }
  .tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 12px;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  .tag-blue { background: #dbeafe; color: #1e40af; }
  .tag-green { background: #dcfce7; color: #15803d; }
  .tag-purple { background: #ede9fe; color: #6d28d9; }
  .tag-orange { background: #ffedd5; color: #c2410c; }
  .tag-teal { background: #ccfbf1; color: #0f766e; }
  .tag-pink { background: #fce7f3; color: #be185d; }

  .status-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-green);
  }
  .status-live::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--brand-green);
    border-radius: 50%;
    display: inline-block;
  }

  /* ── Commitments ── */
  .commitments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 20px 0 40px;
  }
  .commitment-card {
    background: var(--brand-gray-light);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 22px;
  }
  .commitment-card .icon { font-size: 26px; margin-bottom: 10px; }
  .commitment-card h3 { margin: 0 0 6px; font-size: 15px; }
  .commitment-card p { font-size: 14px; margin: 0; }

  /* ── FAQ ── */
  .faq-item {
    border-bottom: 1px solid var(--brand-border);
    padding: 22px 0;
  }
  .faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 8px;
  }
  .faq-item p { margin: 0; font-size: 14px; }

  /* ── CTA ── */
  .cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 100%);
    border-radius: 14px;
    padding: 40px 36px;
    color: #fff;
    text-align: center;
    margin-top: 56px;
  }
  .cta-box h2 { color: #fff; margin: 0 0 12px; font-size: 24px; }
  .cta-box p { color: #cbd5e1; margin-bottom: 24px; font-size: 15px; }
  .cta-box a.btn {
    display: inline-block;
    background: var(--brand-accent);
    color: #fff;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    margin: 6px;
    transition: background .2s;
  }
  .cta-box a.btn:hover { background: #1d4ed8; text-decoration: none; }
  .cta-box a.btn-ghost {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
  }
  .cta-box a.btn-ghost:hover { background: rgba(255,255,255,0.18); }

  /* ── Related links ── */
  .related-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0;
  }
  .related-links a {
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--brand-blue);
    transition: border-color .2s, background .2s;
  }
  .related-links a:hover { background: var(--brand-blue-light); border-color: #93c5fd; text-decoration: none; }

  /* ── Version/meta strip ── */
  .meta-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: var(--brand-gray);
    background: var(--brand-gray-light);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin: 32px 0 0;
  }
  .meta-strip strong { color: var(--brand-dark); }

  @media (max-width: 640px) {
    .hero { padding: 44px 16px 36px; }
    .hero h1 { font-size: 24px; }
    h2 { font-size: 19px; }
    tbody td { padding: 10px 12px; }
  }/* End custom CSS */