/* Awaren Payments, Accessible UI */
.ap{--ap-ink:#1a1a1a;--ap-muted:#5f6b66;--ap-bg:#ffffff;--ap-card:#f6f7f6;--ap-brand:#1E4E3A;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Noto Sans",Arial,sans-serif;color:var(--ap-ink);background:var(--ap-bg);padding:clamp(20px,4vw,44px);border-radius:14px;box-shadow:0 0 0 1px rgba(0,0,0,.04),0 6px 28px rgba(0,0,0,.06)}
.ap__header{max-width:960px;margin:0 auto 24px auto;text-align:center}
.ap__title{font-size:clamp(22px,3vw,36px);line-height:1.2;margin:0;color:var(--ap-brand);letter-spacing:.2px}
.ap__group{max-width:820px;margin:5px auto}
.ap__group-title{font-size:clamp(18px,2.4vw,24px);margin:0 0 10px 0;color:var(--ap-ink);text-align:center}
.ap__buttons{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.ap__buttons--stack{flex-direction:column;align-items:center}
.ap__divider{max-width:860px;height:1px;background:linear-gradient(90deg,rgba(0,0,0,.08),rgba(0,0,0,.08));margin:24px auto}
.ap__footer{max-width:820px;margin:12px auto 0 auto;text-align:center}
.ap__small{color:var(--ap-muted);font-size:.95rem}
.ap a{color:var(--ap-brand)}

/* Buttons */
.ap-btn{display:inline-flex;align-items:center;gap:10px;padding:14px 18px;border-radius:12px;border:2px solid var(--ap-brand);text-decoration:none;font-weight:600;line-height:1.2;transition:transform .06s ease,box-shadow .2s ease,background .2s ease;border-color:color-mix(in oklab,var(--ap-brand),#000 8%);}
.ap-btn span{display:inline-block}
.ap-btn--primary{background:var(--ap-brand);color:#fff}
.ap-btn--ghost{background:#fff;color:var(--ap-brand)}
.ap-btn:hover{transform:translateY(-1px);box-shadow:0 6px 18px rgba(0,0,0,.08)}
.ap-btn:focus-visible{outline:3px solid color-mix(in oklab,var(--ap-brand),#000 20%);outline-offset:2px}
.ap-btn .ap-arrow{flex:0 0 auto;}

/* Cards */
.ap-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;max-width:1100px;margin:10px auto 0 auto}
.ap-card{background:var(--ap-card);border-radius:16px;padding:16px;border:1px solid rgba(0,0,0,.06);display:flex;flex-direction:column;min-height:100%}
.ap-card__head{margin-bottom:12px}
.ap-card__title{margin:0 0 4px 0;color:var(--ap-brand);font-size:clamp(18px,2.2vw,22px)}
.ap-card__price{margin:0;font-weight:800;font-size:clamp(22px,2.6vw,26px)}
.ap-card__note{margin:4px 0 0 0;color:var(--ap-muted);font-size:.95rem}
.ap-card__list{margin:12px 0 0 0;padding:0 0 0 22px}
.ap-card__list li{margin:6px 0}
.ap-card__cta{margin-top:auto;text-align:left}

/* Visually hidden for headings */
.screen-reader-text{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* 1) Eerste knop dezelfde stijl als de anderen */
.ap__group:first-of-type .ap-btn{
  background:#fff;
  color:var(--ap-brand);
}

/* 2) Alle knoppen in de button-secties dezelfde breedte */
.ap__buttons .ap-btn{
  width:clamp(280px, 90vw, 280px); /* kies je maxbreedte */
  justify-content:space-between;   /* tekst links, pijl rechts */
}
.ap-btn .ap-arrow{ margin-left:auto; } /* pijl mooi rechts */

