:root{--page-title-display:none;}/* Start custom CSS *//* =============================================================================
   DESIGN TOKENS
============================================================================= */
:root{
  --scom-red:#e02228;
  --paysend-purple:#872fff;

  --ink:#0b0b0b;
  --muted:#6a6f7a;

  --glass-strong: rgba(245,246,248,.60);
  --glass-soft: rgba(235,237,240,.45);

  --scom-glow-1: rgba(224,34,40,.10);
  --scom-glow-2: rgba(224,34,40,.06);

  --line: rgba(0,0,0,.12);

  --shadow-soft: 0 12px 34px rgba(0,0,0,.12);
  --shadow-strong: 0 28px 80px rgba(0,0,0,.18);

  --r: 22px;
  --ease: cubic-bezier(.2,.9,.2,1);

  --w-strong: 700;
  --w-mid: 650;
  --w-semi: 600;
}

/* =============================================================================
   BASE
============================================================================= */
*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:"Futura SCB","Futura","Avenir Next","Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#fff;
  color:var(--ink);
}

.wrap{
  max-width:1150px;
  margin:0 auto;
  padding:36px 16px 70px;
}

strong{ font-weight:var(--w-strong); }

/* =============================================================================
   TOPBAR
============================================================================= */
.topbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.title{
  margin:0;
  font-size:clamp(22px,2.35vw,36px);
  letter-spacing:-.03em;
  line-height:1.08;
}

.subtitle{
  margin:10px 0 0;
  color:var(--muted);
  max-width:64ch;
  line-height:1.5;
  font-size:14.5px;
}

/* =============================================================================
   CONTROLS
============================================================================= */
.controls{
  display:flex;
  align-items:center;
  gap:12px;
  width:min(560px,100%);
}

.controls.is-locked{
  opacity:.55;
  pointer-events:none;
  filter:saturate(.85);
}

.search{
  flex:1;
  position:relative;
}

.search input{
  width:100%;
  padding:12px 14px 12px 42px;
  border-radius:999px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg,var(--glass-strong),var(--glass-soft)),
    radial-gradient(160px 70px at 8% 0%, var(--scom-glow-1),transparent 60%);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  outline:none;
  font-size:14px;
}

.search input:focus{
  border-color:rgba(224,34,40,.28);
  box-shadow:0 0 0 4px rgba(224,34,40,.10);
}

.search svg{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  opacity:.55;
}

/* =============================================================================
   CATEGORY HUB
============================================================================= */
.category-hub{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
  margin-top:18px;
}

.cat-tile{
  grid-column:span 4;
  border-radius:24px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245,246,248,.76), rgba(235,237,240,.54)),
    radial-gradient(560px 240px at 18% 0%, var(--scom-glow-1), transparent 58%),
    radial-gradient(420px 200px at 92% 20%, var(--scom-glow-2), transparent 60%);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:var(--shadow-soft);
  padding:14px;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.cat-tile:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-strong);
  border-color:rgba(224,34,40,.18);
}

.cat-tile:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(224,34,40,.12), var(--shadow-soft);
  border-color:rgba(224,34,40,.26);
}

.cat-tile::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:3px;
  background:linear-gradient(90deg, rgba(224,34,40,0), rgba(224,34,40,.55), rgba(224,34,40,0));
  opacity:.55;
}

.cat-tile.is-active{
  border-color:rgba(224,34,40,.30);
  box-shadow:0 0 0 4px rgba(224,34,40,.12), var(--shadow-soft);
}

.cat-tile.is-active::before{ opacity:.92; }

.cat-media{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:18px;
  border:1px solid rgba(224,34,40,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.56)),
    radial-gradient(120px 70px at 30% 10%, rgba(224,34,40,.14), transparent 60%);
  display:grid;
  place-items:center;
  overflow:hidden;
}

.cat-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
  opacity:.98;
}

.cat-media--dual{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px;
}

.cat-media--dual img{
  width:22px;
  height:22px;
  padding:0;
  object-fit:contain;
  opacity:.98;
  filter:drop-shadow(0 8px 14px rgba(0,0,0,.08));
}

.cat-icon{
  width:26px;
  height:26px;
  color:var(--scom-red);
  opacity:.95;
}

.cat-tile[data-cat="all"] .cat-media{
  border-color:rgba(224,34,40,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56)),
    radial-gradient(130px 80px at 35% 15%, rgba(224,34,40,.20), transparent 62%);
}

.cat-text{ min-width:0; }

.cat-title{
  margin:0;
  font-size:15.5px;
  letter-spacing:-.01em;
  font-weight:700;
  line-height:1.15;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  color:var(--scom-red);
}

.cat-sub{
  margin:5px 0 0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.35;
}

.cat-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:3px 9px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:rgba(224,34,40,.92);
  border:1px solid rgba(224,34,40,.20);
  background:rgba(224,34,40,.06);
}

/* =============================================================================
   GRID + EMPTY
============================================================================= */
.grid{
  display:none;
  grid-template-columns:repeat(12,1fr);
  gap:16px;
  margin-top:18px;
}

.grid.is-visible{ display:grid; }

.empty{
  display:none;
  margin-top:14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.60);
  backdrop-filter:blur(12px);
  padding:14px 16px;
  color:var(--muted);
}

/* =============================================================================
   CARDS
============================================================================= */
.card{
  grid-column:span 4;
  border-radius:var(--r);
  background:
    linear-gradient(180deg,var(--glass-strong),var(--glass-soft)),
    radial-gradient(520px 220px at 18% 0%,var(--scom-glow-1),transparent 55%),
    radial-gradient(420px 200px at 92% 22%,var(--scom-glow-2),transparent 60%);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  padding:18px;
  min-height:170px;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  will-change:transform;
}

.card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-strong);
  border-color:rgba(224,34,40,.18);
}

.card::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:3px;
  background:linear-gradient(90deg, rgba(224,34,40,0), rgba(224,34,40,.55), rgba(224,34,40,0));
  opacity:.75;
}

.card::after{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background:radial-gradient(closest-side,rgba(255,255,255,.35),transparent 65%);
  transform:translate(-40%,-20%) rotate(12deg);
  opacity:.45;
  pointer-events:none;
}

.card h3{
  margin:12px 0 6px;
  font-size:18px;
  letter-spacing:-.02em;
}

.card p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.card[hidden]{ display:none; }

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.48);
  font-size:12px;
}

.badge .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--scom-red);
  box-shadow:0 0 0 3px rgba(224,34,40,.10);
}

.meta{
  margin-top:14px;
  display:flex;
  justify-content:flex-start;
}

.open{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:12.5px;
  color:rgba(0,0,0,.55);
  opacity:.92;
}

.open svg{
  opacity:.6;
  transform:translateX(0);
  transition:transform .18s var(--ease), opacity .18s var(--ease);
}

.card:hover .open{ color:rgba(0,0,0,.72); }
.card:hover .open svg{ opacity:.85; transform:translateX(2px); }

/* =============================================================================
   MODAL
============================================================================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  padding:18px;
  z-index:999;
}

.modal.is-open{ display:grid; }

.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(8px);
  opacity:0;
  transition:opacity .22s var(--ease);
}

.modal.is-open .modal__backdrop{ opacity:1; }

.modal__panel{
  width:min(900px,100%);
  max-height:min(86vh,760px);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.68));
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 44px 120px rgba(0,0,0,.30);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transform:translateY(16px) scale(.97);
  opacity:0;
  transition:transform .24s var(--ease), opacity .24s var(--ease);
}

.modal.is-open .modal__panel{
  transform:translateY(0) scale(1);
  opacity:1;
}

.modal__head{
  padding:16px 18px 12px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.60);
  backdrop-filter:blur(14px);
}

.modal__title{
  margin:0;
  font-size:18px;
  font-weight:var(--w-strong);
}

.modal__sub{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
}

.modal__scroll{
  overflow:auto;
  padding:0 18px;
  max-height:66vh;
  background:linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.56));
  scroll-behavior:smooth;
}

.modal__body{
  padding:14px 0 18px;
  animation:fadeUp .18s ease both;
}

@keyframes fadeUp{
  from{ opacity:0; transform:translateY(6px); }
  to{ opacity:1; transform:none; }
}

.modal__foot{
  padding:12px 18px 16px;
  border-top:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(14px);
}

.esc-hint{
  font-size:12px;
  color:rgba(0,0,0,.6);
}

.kbd{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.55);
  box-shadow:0 10px 22px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.75);
  font-weight:var(--w-strong);
}

.close{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.62);
  backdrop-filter:blur(12px);
  font-weight:var(--w-strong);
  cursor:pointer;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease);
}

.close:hover{
  transform:scale(1.03);
  box-shadow:0 14px 34px rgba(0,0,0,.12);
}

/* =============================================================================
   ACCORDION (details)
============================================================================= */
details.acc{
  display:block;
  width:100%;
  margin:8px 0;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  background:rgba(255,255,255,.60);
  backdrop-filter:blur(12px);
  overflow:hidden;
}

details.acc > summary{
  list-style:none;
  cursor:pointer;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight:600;
  font-size:14.5px;
  background:rgba(255,255,255,.50);
}

details.acc > summary::-webkit-details-marker{ display:none; }

details.acc > summary::after{
  content:"";
  width:18px;
  height:18px;
  opacity:.7;
  transform:rotate(0deg);
  transition:transform .18s var(--ease);
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230b0b0b' d='M7 10l5 5l5-5z'/%3E%3C/svg%3E") no-repeat center / contain;
}

details.acc[open] > summary::after{ transform:rotate(180deg); }

.acc__body{
  padding:10px 12px 12px;
  border-top:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.52);
}

.clean-ul{ margin:8px 0 0 18px; }
.clean-ul li{ margin:8px 0; line-height:1.5; }

.note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(12px);
  color:#222;
}
.note--plain{ background:rgba(255,255,255,.60); }
.note--hint{ background:rgba(255,255,255,.48); }

/* =============================================================================
   BRAND LOGOS
============================================================================= */
.brand-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin:6px 0 10px;
  background:transparent;
  padding:0;
  border:0;
  box-shadow:none;
}

.logo-pill{
  background:#fff;
  padding:8px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

.mini-logo{
  height:18px;
  width:auto;
  display:block;
  opacity:.95;
}

/* =============================================================================
   TABLES
============================================================================= */
.topup-table{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.56);
  backdrop-filter:blur(12px);
}

.topup-table .tr{
  display:grid;
  grid-template-columns:1fr 1.25fr;
}

.topup-table .td{
  padding:10px 12px;
  border-bottom:1px solid rgba(0,0,0,.06);
  font-size:13.8px;
}

.topup-table .tr:last-child .td{ border-bottom:none; }

.topup-table .td.k{
  color:var(--muted);
  background:rgba(0,0,0,.02);
}

.topup-table .td.v{ color:var(--ink); }

.topup-muted{
  margin:0 0 10px;
  color:var(--muted);
  font-size:13.5px;
}

.example{
  display:inline-block;
  margin-top:6px;
  opacity:.9;
}

/* =============================================================================
   STEPS (compact, consistent, no conflicting overrides)
============================================================================= */
.steps{
  margin-top:8px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(12px);
}

.step-no{
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:600;
  font-size:14px;
  color:var(--scom-red);
  background:rgba(224,34,40,.08);
  border:1px solid rgba(224,34,40,.18);
}

.step-body{
  flex:1 1 auto;
  min-width:0;
}

.step-body strong{
  display:inline;
  margin:0;
}

.step-body p{
  display:block;
  margin:0;
}

/* =============================================================================
   CTA LINK
============================================================================= */
.cta-link{
  margin:10px 0 2px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(224,34,40,.16);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(12px);
  text-decoration:none;
  color:var(--ink);
  font-weight:var(--w-mid);
  box-shadow:0 14px 34px rgba(0,0,0,.10);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease);
}

.cta-link:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
}

/* =============================================================================
   APPLY BUTTONS
============================================================================= */
.apply-actions{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:12px;
}

.apply-btn{
  position:relative;
  padding:14px 14px 12px;
  border-radius:18px;
  text-decoration:none;
  color:var(--ink);
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(12px);
  box-shadow:0 14px 34px rgba(0,0,0,.10);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}

.apply-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  border-color:rgba(224,34,40,.22);
}

.apply-title{
  display:block;
  font-size:15px;
  font-weight:600;
  letter-spacing:-.01em;
}

.apply-sub{
  display:block;
  margin-top:4px;
  font-size:13.5px;
  color:var(--muted);
}

.apply-btn--mc{ border-left:4px solid #111; }
.apply-btn--up{ border-left:4px solid var(--scom-red); }

/* =============================================================================
   CONTACT
============================================================================= */
.contact-wrap{
  margin-top:10px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 46px rgba(0,0,0,.10);
}

.contact-row{
  display:grid;
  grid-template-columns:68px 1fr;
  align-items:center;
  gap:14px;
  padding:10px;
  border-radius:16px;
}

.contact-row + .contact-row{
  border-top:1px solid rgba(0,0,0,.06);
  margin-top:8px;
  padding-top:14px;
}

.contact-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:#fff;
  box-shadow:0 18px 44px rgba(0,0,0,.14);
}

.contact-icon--wa{ background:linear-gradient(135deg,#25D366,#17b957); }
.contact-icon--phone{ border-radius:999px; background:linear-gradient(135deg,#2a2a2a,#111); }

.contact-icon--mail{
  color:#1a1a1a;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 14px 34px rgba(0,0,0,.10);
}

.contact-text{
  text-decoration:none;
  color:var(--ink);
  font-size:15px;
  line-height:1.35;
}

/* =============================================================================
   PAYSEND (KPI)
============================================================================= */
.paysend-kpis{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}

.kpi{
  border-radius:16px;
  border:1px solid rgba(135,47,255,.20);
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(12px);
  padding:10px 12px;
  box-shadow:0 16px 40px rgba(0,0,0,.10);
}

.kpi__k{
  margin:0 0 4px;
  font-size:12px;
  color:rgba(0,0,0,.65);
  font-weight:var(--w-semi);
}

.kpi__v{
  margin:0;
  font-size:13.5px;
  font-weight:var(--w-strong);
  color:var(--ink);
}

.paysend-note{ border-color:rgba(135,47,255,.22); }

/* =============================================================================
   HOWTO
============================================================================= */
.howto-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  align-items:start;
}

.howto-panel{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(12px);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 46px rgba(0,0,0,.10);
}

.howto-steps{
  margin:10px 0 0;
  padding-left:18px;
}

.howto-steps li{
  margin:10px 0;
  font-size:13.6px;
  line-height:1.5;
  color:var(--ink);
}

.howto-figure{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 46px rgba(0,0,0,.10);
}

.howto-figure img{
  width:100%;
  height:auto;
  display:block;
}

/* =============================================================================
   PAYSEND STAPPEN (uitgebreid)
============================================================================= */
.ps-steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.psx{
  min-height:220px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.62);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  padding:14px 14px 16px;
}

.psx-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.psx-num{
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:13px;
  color:#fff;
  background:linear-gradient(135deg, rgba(135,47,255,.95), rgba(107,23,255,.92));
  box-shadow:0 12px 26px rgba(135,47,255,.22);
}

.psx-flag{
  width:34px;
  height:24px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  display:grid;
  place-items:center;
  font-size:14px;
}

.psx-pill{
  margin-left:auto;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  font-weight:900;
  line-height:1;
}

.psx-pill--start{
  border-color:rgba(224,34,40,.20);
  color:rgba(224,34,40,.95);
  background:rgba(224,34,40,.06);
}

.psx-pill--recv{
  border-color:rgba(224,34,40,.18);
  color:rgba(224,34,40,.92);
  background:rgba(224,34,40,.05);
}

.psx-pill--send{
  border-color:rgba(135,47,255,.20);
  color:rgba(135,47,255,.95);
  background:rgba(135,47,255,.06);
}

.psx-h{
  margin:0 0 6px;
  font-size:15.5px;
  letter-spacing:-.01em;
}

.psx-p{
  margin:0;
  font-size:13.6px;
  line-height:1.45;
  color:rgba(0,0,0,.78);
}

.psx-ul{
  margin:10px 0 0 18px;
  padding:0;
  color:rgba(0,0,0,.72);
  font-size:13.2px;
  line-height:1.45;
}

.psx-ul li{ margin:6px 0; }

.psx-warn{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(224,34,40,.18);
  background:rgba(224,34,40,.06);
  color:rgba(224,34,40,.95);
  font-size:13px;
  line-height:1.35;
}

.psx-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.psx-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  text-decoration:none;
  color:#111;
  font-weight:900;
  font-size:12.5px;
}

.psx-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
  border-radius:10px;
  border:1px solid rgba(135,47,255,.18);
  background:rgba(135,47,255,.06);
  color:rgba(135,47,255,.95);
  font-weight:900;
  font-size:11px;
}

.psx-cta{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  width:max-content;
  text-decoration:none;
  color:#fff;
  font-weight:900;
  font-size:12.5px;
  background:linear-gradient(135deg, rgba(135,47,255,.95), rgba(107,23,255,.92));
  box-shadow:0 18px 44px rgba(135,47,255,.22);
}

/* =============================================================================
   RESPONSIVE
============================================================================= */
@media (max-width:980px){
  .topbar{ flex-direction:column; align-items:flex-start; }
  .controls{ width:100%; }
  .cat-tile{ grid-column:span 6; }
  .card{ grid-column:span 6; }
}

@media (max-width:820px){
  .howto-grid{ grid-template-columns:1fr; }
  .ps-steps{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width:640px){
  .controls{ flex-direction:column; }
  .paysend-kpis{ grid-template-columns:1fr; }
  .contact-row{ grid-template-columns:60px 1fr; }
  .contact-icon{ width:52px; height:52px; }
  .cat-tile{ grid-column:span 12; }
}

@media (max-width:560px){
  .card{ grid-column:span 12; }
  .ps-steps{ grid-template-columns:1fr; }
}

/* =============================================================================
   REDUCED MOTION
============================================================================= */
@media (prefers-reduced-motion: reduce){
  *{
    transition:none !important;
    scroll-behavior:auto !important;
  }
}

/* =============================================================================
   PAYPAL ACCEPTANCE LOGOS
============================================================================= */
.paypal-accept{
  margin:6px 0 14px;
}

.paypal-title{
  margin:0 0 10px;
  font-size:15.5px;
  font-weight:700;
  letter-spacing:-.01em;
}

.paypal-logos{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(110px,1fr));
  gap:12px;
}

.pp-logo{
  height:64px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.pp-logo img{
  max-height:28px;
  max-width:100%;
  object-fit:contain;
}

/* =============================================================================
   HOWTO BRAND LOGO
============================================================================= */
.howto-brand{
  display:flex;
  justify-content:flex-start;
  margin-bottom:10px;
}

.howto-brand img{
  height:26px;
  width:auto;
  object-fit:contain;
}

.inline-logo{
  display:inline-flex;
  align-items:center;
  margin:0 6px;
}

.inline-logo img{
  height:18px;
  width:auto;
  vertical-align:middle;
}

/* =============================================================================
   COMPARISON (8 kaarten) + horizontaal scrollen + sticky labels
============================================================================= */

.compare-wrap{
  margin-top:12px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.45);
  backdrop-filter:blur(12px);
  padding:12px;
  box-shadow:0 14px 34px rgba(0,0,0,.08);
}

/* Zorgt dat 8 kolommen altijd passen via horizontaal scrollen */
.compare{
  min-width:1820px;
}

.compare__head,
.compare__row,
.compare__cta-row{
  display:grid;
  grid-template-columns:240px repeat(8, minmax(190px, 1fr));
  gap:12px;
  align-items:stretch;
}

.compare__head{
  margin-bottom:10px;
}

.compare__cell{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(12px);
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  padding:12px;
  font-size:13.6px;
  line-height:1.45;
  color:rgba(0,0,0,.80);
}

.compare__cell--label{
  background:rgba(255,255,255,.64);
  color:var(--muted);
  font-weight:900;
}

/* Sticky eerste kolom (labels) tijdens horizontaal scrollen */
.compare__cell--sticky{
  position:sticky;
  left:0;
  z-index:3;
}

.compare__head .compare__cell--sticky{
  z-index:5;
}

/* Titel in label cell */
.compare__title{
  display:block;
  font-size:15px;
  font-weight:900;
  color:var(--ink);
  letter-spacing:-.01em;
}

.compare__sub{
  display:block;
  margin-top:4px;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}

/* Header card mini */
.cardmini{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.cardmini__img{
  width:100%;
  max-height:58px;
  object-fit:contain;
  padding:6px 8px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.70);
}

.cardmini__name{
  font-weight:900;
  color:var(--ink);
  font-size:13.8px;
}

.cardmini__tag{
  font-size:12.5px;
  color:var(--muted);
  font-weight:700;
}

/* Lists */
.compare__list{
  margin:0 0 0 18px;
  padding:0;
}
.compare__list li{
  margin:6px 0;
}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(224,34,40,.18);
  background:rgba(224,34,40,.06);
  color:rgba(224,34,40,.95);
  font-weight:900;
  font-size:12.2px;
}

.pill-group{
  display:flex;
  gap:6px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Checks */
.check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.25);
  color:rgba(22,163,74,.95);
  font-weight:900;
  margin-right:6px;
}

.x{
  opacity:.55;
  font-weight:900;
}

/* CTA buttons */
.compare__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(224,34,40,.18);
  background:rgba(255,255,255,.70);
  text-decoration:none;
  color:var(--ink);
  font-weight:900;
  box-shadow:0 14px 34px rgba(0,0,0,.10);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease);
}

.compare__btn:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
}

.compare__btnsub{
  margin-top:6px;
  font-size:12.5px;
  color:var(--muted);
  font-weight:700;
}

/* AANBEVOLEN highlight UIT: maak neutraal */
.compare__cell--best{
  border-color:rgba(0,0,0,.08);
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

/* Limiet blok */
.lim{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13.2px;
  line-height:1.35;
}/* End custom CSS */