/* SITE: AvonPunt | Architecture: B (directory) | Generated: 2026-05-25 | Design: Mono-Color Showcase #98 */
/* PREFIX: ap | CSS: chromal/mono.css | IMG: vistapix/ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&display=swap');

/* ─── Custom Properties ────────────────────────────────────── */
:root {
  --ap-bg:       #fefefe;
  --ap-text:     #1a1a1a;
  --ap-muted:    #3b5998;
  --ap-surface:  #eff6ff;
  --ap-border:   #bfdbfe;
  --ap-ring:     #dbeafe;
  --ap-primary:  #1d4ed8;
  --ap-mid:      #2563eb;
  --ap-deep:     #1e40af;
  --ap-deepest:  #172554;
  --ap-light:    #60a5fa;
  --ap-lightest: #dbeafe;
  --ap-display:  'Manrope', sans-serif;
  --ap-body:     'Manrope', sans-serif;
  --ap-radius:   12px;
  --ap-shadow:   0 4px 24px rgba(29, 78, 216, 0.12);

  /* Anti-fingerprint container widths */
  --ap-wrap-sm:  544px;
  --ap-wrap-md:  723px;
  --ap-wrap-lg:  958px;
  --ap-wrap-xl:  1144px;
  --ap-wrap-xxl: 1322px;
}

/* ─── Base Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--ap-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ap-text);
  background: var(--ap-bg);
}

a { color: var(--ap-primary); text-decoration: none; }
a:hover { color: var(--ap-mid); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--ap-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ap-deepest);
}

input, select, textarea, button {
  font-family: var(--ap-body);
  font-size: 1rem;
}

/* ─── Wrapper ───────────────────────────────────────────────── */
.ap-wrap {
  width: 100%;
  max-width: var(--ap-wrap-xxl);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 544px)  { .ap-wrap { max-width: var(--ap-wrap-sm);  padding: 0 1.5rem; } }
@media (min-width: 723px)  { .ap-wrap { max-width: var(--ap-wrap-md);  padding: 0 2rem; } }
@media (min-width: 958px)  { .ap-wrap { max-width: var(--ap-wrap-lg);  padding: 0 2.5rem; } }
@media (min-width: 1144px) { .ap-wrap { max-width: var(--ap-wrap-xl);  padding: 0 2rem; } }
@media (min-width: 1322px) { .ap-wrap { max-width: var(--ap-wrap-xxl); padding: 0 2rem; } }

/* ─── Section Gradient Bars (Mono-Color Showcase distinctive) ─ */
.ap-section-bar {
  height: 6px;
  background: linear-gradient(90deg, #172554, #1e3a8a, #1e40af, #1d4ed8, #2563eb, #3b82f6, #60a5fa, #93c5fd, #bfdbfe, #dbeafe);
  border: none;
}

/* ─── Header ────────────────────────────────────────────────── */
.ap-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ap-deepest);
  border-bottom: 2px solid var(--ap-primary);
  min-height: 56px;
  max-height: 64px;
}

/* ─── Navigation ────────────────────────────────────────────── */
.ap-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 1rem;
  padding: 0 1.25rem;
  position: relative;
}

.ap-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.ap-nav__brand:hover { text-decoration: none; }

.ap-nav__brand-name {
  font-family: var(--ap-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.ap-nav__brand-name em { color: var(--ap-light); font-style: normal; }

.ap-nav__burger {
  background: none;
  border: 1.5px solid var(--ap-border);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.ap__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ap-lightest);
  border-radius: 2px;
}

/* Mobile nav links — hidden by default, toggled by JS via .is-open */
.ap-nav__links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ap-deepest);
  padding: 1rem 1.25rem;
  gap: 0.75rem;
  border-top: 1px solid var(--ap-primary);
  list-style: none;
  padding-left: 1.25rem;
  z-index: 99;
}
.ap-nav__links.is-open { display: flex; }

.ap-nav__link {
  color: var(--ap-lightest);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ap-nav__link:hover { color: var(--ap-light); text-decoration: none; }
.ap-nav__link--active { color: var(--ap-light); }
.ap-nav__link--cta {
  background: var(--ap-primary);
  color: #fff !important;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-weight: 700;
}
.ap-nav__link--cta:hover { background: var(--ap-deep); color: #fff !important; text-decoration: none; }

@media (min-width: 723px) {
  .ap-nav__burger { display: none; }
  .ap-nav__links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
    gap: 0.5rem;
    align-items: center;
  }
  .ap-nav__link { padding: 0.35rem 0.75rem; border-radius: 6px; min-height: auto; }
  .ap-nav__link:hover { background: rgba(255,255,255,0.08); }
  .ap-nav__link--cta { min-height: 44px; }
}

/* ─── RG Bar ────────────────────────────────────────────────── */
.ap-rg-bar {
  background: var(--ap-deep);
  color: var(--ap-lightest);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--ap-primary);
}
.ap-rg-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.ap-rg-bar__badge {
  background: var(--ap-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.ap-rg-bar__text { flex: 1; min-width: 0; }
.ap-rg-bar__links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ap-rg-bar__links a { color: var(--ap-lightest) !important; text-decoration: underline; font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }

/* ─── Trust Bar ─────────────────────────────────────────────── */
.ap-trust-bar {
  background: var(--ap-deep);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ap-primary);
}
.ap-trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  align-items: center;
}
.ap-trust-bar__item {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ap-lightest);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.ap-trust-bar__icon { font-size: 0.9rem; }

/* ─── Hero ──────────────────────────────────────────────────── */
.ap-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-color: var(--ap-deepest);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.ap-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,37,84,0.88) 0%, rgba(29,78,216,0.72) 100%);
  z-index: 1;
}
.ap-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,37,84,0.88) 0%, rgba(29,78,216,0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.ap-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.ap-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ap-light);
  margin-bottom: 0.75rem;
}
.ap-hero__h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.ap-hero__sub {
  font-size: 1.05rem;
  color: var(--ap-ring);
  max-width: 640px;
  margin-bottom: 1.75rem;
}
.ap-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.ap-hero__pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ap-hero--short {
  min-height: 200px;
}
.ap-hero--short .ap-hero__content { padding: 2rem 0; }

.ap-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ap-lightest);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

@media (min-width: 723px) { .ap-hero { min-height: 520px; } .ap-hero--short { min-height: 220px; } }

/* ─── Disclosure above table ───────────────────────────────── */
.ap-disclosure {
  margin-bottom: 2rem;
}
.ap-disclosure__text {
  background: var(--ap-surface);
  border: 1px solid var(--ap-border);
  border-left: 4px solid var(--ap-primary);
  border-radius: var(--ap-radius);
  padding: 1.25rem;
  font-size: 0.88rem;
  color: var(--ap-muted);
}
.ap-disclosure__text strong { color: var(--ap-deepest); }

/* ─── Affiliate Notice (every page) ────────────────────────── */
.affiliateNotice {
  background: var(--ap-surface);
  border-left: 3px solid var(--ap-primary);
  padding: 0.85rem 1.15rem;
  margin: 1.5rem 0;
  font-size: 0.84rem;
  color: var(--ap-muted);
  border-radius: 0 var(--ap-radius) var(--ap-radius) 0;
}

/* ─── Sections ─────────────────────────────────────────────── */
.ap-section { padding: 3rem 0; }
.ap-section--alt { background: var(--ap-surface); }
.ap-section--dark { background: var(--ap-deepest); color: #fff; }
.ap-section--dark h2, .ap-section--dark h3 { color: var(--ap-lightest); }
.ap-section--dark p { color: var(--ap-ring); }

.ap-section h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.ap-section h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

.ap-section__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ap-deepest);
}
.ap-section__lead {
  color: var(--ap-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.ap-section__body {
  color: var(--ap-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ─── Section deck (legacy alias) ─────────────────────────── */
.ap-section-deck { color: var(--ap-muted); font-size: 0.95rem; margin-bottom: 2rem; }

/* ─── TOC / Comparison Table ───────────────────────────────── */
.ap-toc-section { padding: 3rem 0; background: var(--ap-bg); }
.ap-toc-section h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.ap-toc { display: flex; flex-direction: column; gap: 1rem; }

.ap-toc__row {
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  box-shadow: var(--ap-shadow);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.ap-toc__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ap-toc__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ap-border);
  flex-shrink: 0;
  min-width: 2rem;
}
.ap-toc__logo-zone {
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}
.ap-toc__logo-img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.ap-toc__name { font-weight: 700; font-size: 1.05rem; color: var(--ap-deepest); }
.ap-toc__deck { font-size: 0.85rem; color: var(--ap-muted); }
.ap-toc__score {
  background: var(--ap-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
}
.ap-toc__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ap-toc__dispatch a { font-size: 0.82rem; color: var(--ap-primary); font-weight: 600; }
.ap-toc__bonus { font-size: 0.9rem; font-weight: 600; color: var(--ap-deepest); }
.ap-toc__bullets { font-size: 0.83rem; color: var(--ap-muted); }
.ap-toc__bullets li { margin-bottom: 0.2rem; }
.ap-toc__terms { font-size: 0.74rem; color: #666; border-top: 1px solid var(--ap-border); padding-top: 0.65rem; margin-top: 0.25rem; }

.ap-toc__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ap-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  min-height: 44px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.ap-toc__cta-btn:hover { background: var(--ap-deep); color: #fff !important; }

@media (min-width: 723px) {
  .ap-toc__row { grid-template-columns: 50px 130px 1fr auto auto; align-items: start; gap: 1rem; }
  .ap-toc__top { flex-direction: column; align-items: flex-start; grid-column: 1 / -1; display: contents; }
  .ap-toc__bonus-col { display: flex; flex-direction: column; justify-content: center; }
}

/* ─── Operator Cards ────────────────────────────────────────── */
.ap-op-card {
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: 80px;
  position: relative;
}
.ap-op-card--featured {
  border-color: var(--ap-primary);
  box-shadow: 0 0 0 2px var(--ap-primary), var(--ap-shadow);
}
.ap-op-card__badge {
  display: inline-block;
  background: var(--ap-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.ap-op-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ap-op-card__logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: 6px;
  padding: 6px 10px;
}
.ap-op-card__score {
  background: var(--ap-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-left: auto;
  white-space: nowrap;
}
.ap-op-card__body {
  font-size: 0.9rem;
  color: var(--ap-muted);
  margin-bottom: 1rem;
}
.ap-op-card__offer {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ap-deepest);
  margin-bottom: 0.75rem;
}
.ap-op-card__features {
  font-size: 0.85rem;
  color: var(--ap-muted);
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}
.ap-op-card__features li { margin-bottom: 0.25rem; }
.ap-op-card__meta {
  font-size: 0.78rem;
  color: var(--ap-muted);
  margin-bottom: 0.75rem;
}
.ap-op-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--ap-border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.ap-op-card__terms {
  font-size: 0.74rem;
  color: #666;
}

/* ─── Feature / USP Cards ──────────────────────────────────── */
.ap-usp-card {
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 1.5rem;
  box-shadow: var(--ap-shadow);
  height: 100%;
}
.ap-usp-card__icon {
  width: 44px;
  height: 44px;
  background: var(--ap-primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.ap-usp-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.ap-usp-card p { font-size: 0.88rem; color: var(--ap-muted); }

/* ─── Methodology Section ──────────────────────────────────── */
.ap-method-img { border-radius: var(--ap-radius); overflow: hidden; }
.ap-score-axis { margin-bottom: 0.85rem; }
.ap-score-axis__label { font-size: 0.85rem; font-weight: 600; color: var(--ap-deepest); display: flex; justify-content: space-between; margin-bottom: 0.3rem; }
.ap-score-axis__bar { height: 6px; background: var(--ap-ring); border-radius: 3px; }
.ap-score-axis__fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--ap-primary), var(--ap-light)); }

/* ─── Method List ───────────────────────────────────────────── */
.ap-method-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ap-method-list__item {
  padding: 0.85rem 1rem;
  background: var(--ap-surface);
  border-left: 4px solid var(--ap-primary);
  border-radius: 0 var(--ap-radius) var(--ap-radius) 0;
  font-size: 0.9rem;
  color: var(--ap-muted);
}
.ap-method-list__item strong { color: var(--ap-deepest); }

/* ─── Scenes / Mood Tiles ──────────────────────────────────── */
.ap-scene-tile {
  border-radius: var(--ap-radius);
  overflow: hidden;
  min-height: 200px;
  position: relative;
  background-color: var(--ap-deep);
}
.ap-scene-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(23,37,84,0.8));
  pointer-events: none;
}
.ap-scene-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.ap-scene-tile__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem;
}
.ap-scene-tile__title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.ap-scene-tile__copy {
  color: var(--ap-ring);
  font-size: 0.82rem;
  line-height: 1.5;
}
.ap-scene-tile__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ─── Figure ────────────────────────────────────────────────── */
.ap-figure {
  margin: 1.5rem 0;
}
.ap-figure__img {
  border-radius: var(--ap-radius);
  overflow: hidden;
  width: 100%;
  height: auto;
}
.ap-figure__caption {
  font-size: 0.78rem;
  color: var(--ap-muted);
  margin-top: 0.5rem;
  text-align: center;
  font-style: italic;
}

/* ─── CTA Block ─────────────────────────────────────────────── */
.ap-cta-block {
  background: var(--ap-surface);
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 1.75rem;
  text-align: center;
  margin: 2rem 0;
}
.ap-cta-block__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ap-deepest);
  margin-bottom: 0.5rem;
}
.ap-cta-block__body {
  font-size: 0.9rem;
  color: var(--ap-muted);
  margin-bottom: 1.25rem;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.ap-faq { padding: 3rem 0; background: var(--ap-bg); }
.ap-faq h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.ap-faq-list { display: flex; flex-direction: column; gap: 0.5rem; max-width: 800px; }

/* FAQ items — PHP uses .ap__q as container (wraps button + answer) */
.ap__q-question {
  width: 100%;
  background: var(--ap-surface);
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ap-deepest);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  font-family: var(--ap-display);
  border: none;
  overflow: hidden;
}
.ap__q-question:hover { background: var(--ap-ring); }
.ap__q-question[aria-expanded="true"] { background: var(--ap-primary); color: #fff; border-radius: var(--ap-radius) var(--ap-radius) 0 0; }
.ap__q-chevron { font-size: 0.75rem; transition: transform 0.2s; flex-shrink: 0; }
.ap__q-question[aria-expanded="true"] .ap__q-chevron { transform: rotate(180deg); }

/* FAQ answer — JS toggles [hidden] attribute */
.ap__q-answer {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ap-muted);
  line-height: 1.65;
  background: #fff;
  border: 1px solid var(--ap-border);
  border-top: none;
  border-radius: 0 0 var(--ap-radius) var(--ap-radius);
}
.ap__q-answer[hidden] { display: none; }

/* FAQ item wrapper */
.ap__q {
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

/* ─── Responsible Gambling Section ─────────────────────────── */
.ap-rg {
  padding: 3rem 0;
  background: var(--ap-deepest);
  color: var(--ap-lightest);
}
.ap-rg__title { color: var(--ap-lightest); font-size: 1.5rem; margin-bottom: 1rem; }
.ap-rg__copy { color: var(--ap-ring); font-size: 0.9rem; margin-bottom: 0.75rem; }
.ap-rg a { color: var(--ap-light); }
.ap-rg__link {
  display: inline-flex;
  align-items: center;
  color: var(--ap-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  min-height: 44px;
}
.ap-rg__link:hover { color: var(--ap-lightest); }
.ap-rg__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.ap-rg__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
.ap-rg__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ap-radius);
  padding: 1.25rem;
}
.ap-rg__card h3 { color: var(--ap-light); font-size: 1rem; margin-bottom: 0.5rem; }
.ap-rg__card p { color: var(--ap-ring); font-size: 0.85rem; }
@media (min-width: 723px) { .ap-rg__grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── RG Alert ──────────────────────────────────────────────── */
.ap-rg-alert {
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
  border-left: 5px solid #d97706;
  border-radius: var(--ap-radius);
  padding: 1.25rem;
  font-size: 0.9rem;
  color: #78350f;
  margin-bottom: 1.5rem;
}
.ap-rg-alert strong { color: #92400e; }

/* ─── Dispatch / Operator Detail (legacy alias) ─────────────── */
.ap-dispatch { padding: 3rem 0; background: var(--ap-surface); }
.ap-dispatch h2 { font-size: 1.4rem; margin-bottom: 2rem; }

/* ─── Avatar ────────────────────────────────────────────────── */
.ap-avatar {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ap-display);
  font-size: 22px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
  background: var(--ap-primary);
  color: #fff;
}
.ap-avatar--shield { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); border-radius: 0; }
.ap-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.ap-avatar--sm { width: 40px; height: 40px; font-size: 14px; }

/* ─── Support Grid (safe-path page) ────────────────────────── */
.ap-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 544px) { .ap-support-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 958px) { .ap-support-grid { grid-template-columns: repeat(2, 1fr); } }

.ap-support-card {
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 1.25rem;
  box-shadow: var(--ap-shadow);
}
.ap-support-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ap-deepest);
  margin-bottom: 0.4rem;
}
.ap-support-card__desc {
  font-size: 0.85rem;
  color: var(--ap-muted);
}

/* ─── Team Grid (our-mandate page) ─────────────────────────── */
.ap-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (min-width: 544px) { .ap-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 958px) { .ap-team-grid { grid-template-columns: repeat(3, 1fr); } }

.ap-team-card {
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 1.5rem;
  box-shadow: var(--ap-shadow);
}
.ap-team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ap-deepest);
  margin-bottom: 0.2rem;
}
.ap-team-card__role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ap-primary);
  margin-bottom: 0.65rem;
}
.ap-team-card__bio {
  font-size: 0.85rem;
  color: var(--ap-muted);
  line-height: 1.55;
}

/* ─── Sidebar (legal + safe-path pages) ────────────────────── */
.ap-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ap-sidebar__block {
  background: #fff;
  border: 1px solid var(--ap-border);
  border-radius: var(--ap-radius);
  padding: 1.25rem;
}
.ap-sidebar__block--rg {
  background: var(--ap-deepest);
  border-color: var(--ap-primary);
  color: var(--ap-lightest);
}
.ap-sidebar__block--rg .ap-sidebar__title { color: var(--ap-light); }
.ap-sidebar__title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ap-deepest);
  margin-bottom: 0.75rem;
}
.ap-sidebar__urgent {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ap-lightest);
  margin-bottom: 0.25rem;
}
.ap-sidebar__phone {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.ap-sidebar__phone a { color: var(--ap-light); text-decoration: none; }
.ap-sidebar__phone a:hover { text-decoration: underline; }
.ap-sidebar__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ap-sidebar__list a {
  font-size: 0.85rem;
  color: var(--ap-primary);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.ap-sidebar__list a:hover { text-decoration: underline; }

/* ─── Prose (article body on legal / sub-pages) ─────────────── */
.ap-prose {
  padding: 2.5rem 0;
  max-width: 800px;
}
.ap-prose h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; border-left: 4px solid var(--ap-primary); padding-left: 0.75rem; }
.ap-prose h3 { font-size: 1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--ap-deep); }
.ap-prose p { margin-bottom: 1rem; color: var(--ap-muted); font-size: 0.95rem; }
.ap-prose ul, .ap-prose ol { margin-bottom: 1rem; color: var(--ap-muted); font-size: 0.95rem; }
.ap-prose li { margin-bottom: 0.35rem; }
.ap-prose a { color: var(--ap-primary); }
.ap-prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.88rem; }
.ap-prose th, .ap-prose td { padding: 0.65rem 0.85rem; border: 1px solid var(--ap-border); text-align: left; }
.ap-prose th { background: var(--ap-surface); font-weight: 700; }

/* ─── Article Body (legacy alias kept for compatibility) ──────── */
.article-lede { background: var(--ap-surface); padding: 1.5rem 0; border-bottom: 1px solid var(--ap-border); }
.article__body { padding: 2.5rem 0; max-width: 800px; }
.article__body h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; border-left: 4px solid var(--ap-primary); padding-left: 0.75rem; }
.article__body h3 { font-size: 1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--ap-deep); }
.article__body p { margin-bottom: 1rem; color: var(--ap-muted); font-size: 0.95rem; }
.article__body ul, .article__body ol { margin-bottom: 1rem; color: var(--ap-muted); font-size: 0.95rem; }
.article__body li { margin-bottom: 0.35rem; }
.article__body a { color: var(--ap-primary); }
.article__body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.88rem; }
.article__body th, .article__body td { padding: 0.65rem 0.85rem; border: 1px solid var(--ap-border); text-align: left; }
.article__body th { background: var(--ap-surface); font-weight: 700; }

/* ─── Cookie Table ──────────────────────────────────────────── */
.ap-cookie-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
.ap-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.ap-cookie-table th, .ap-cookie-table td {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--ap-border);
  text-align: left;
}
.ap-cookie-table th { background: var(--ap-surface); font-weight: 700; color: var(--ap-deepest); }
.ap-cookie-table tr:nth-child(even) td { background: #f8faff; }

/* ─── Contact Form ──────────────────────────────────────────── */
.ap-form { max-width: 600px; }
.ap-form__title { font-size: 1.35rem; margin-bottom: 0.5rem; }
.ap-form__intro { font-size: 0.9rem; color: var(--ap-muted); margin-bottom: 1.5rem; }
.ap-form__group { margin-bottom: 1.25rem; }
.ap-form__label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ap-deepest); }
.ap-form__input {
  width: 100%;
  border: 1.5px solid var(--ap-border);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  color: var(--ap-text);
  background: #fff;
  transition: border-color 0.2s;
}
.ap-form__input:focus {
  outline: none;
  border-color: var(--ap-primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}
.ap-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%231d4ed8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }
.ap-form__textarea { min-height: 120px; resize: vertical; }
.ap-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ap-muted);
  cursor: pointer;
}
.ap-form__checkbox-label input[type="checkbox"] { width: auto; margin-top: 2px; flex-shrink: 0; }
.ap-form-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-left: 4px solid #059669;
  border-radius: var(--ap-radius);
  padding: 1.25rem;
  font-size: 0.95rem;
  color: #065f46;
  margin-bottom: 1.5rem;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.ap-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ap-primary); color: #fff !important; font-weight: 700;
  padding: 0.65rem 1.5rem; border-radius: 8px; min-height: 44px;
  text-decoration: none !important; border: none; cursor: pointer;
  font-size: 0.9rem; font-family: var(--ap-body);
  transition: background 0.2s;
}
.ap-btn:hover { background: var(--ap-deep); }
.ap-btn--primary {
  background: var(--ap-primary);
  color: #fff !important;
}
.ap-btn--primary:hover { background: var(--ap-deep); }
.ap-btn--outline {
  background: transparent; border: 2px solid var(--ap-primary); color: var(--ap-primary) !important;
}
.ap-btn--outline:hover { background: var(--ap-surface); }
.ap-btn--ghost {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: var(--ap-lightest) !important;
}
.ap-btn--ghost:hover { background: rgba(255,255,255,0.08); }
.ap-btn--block { width: 100%; display: flex; }

.ap-btn-submit {
  background: var(--ap-primary);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  min-height: 48px;
  min-width: 44px;
}
.ap-btn-submit:hover { background: var(--ap-deep); }

.ap-badge {
  display: inline-block; background: var(--ap-primary); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.ap-badge--light { background: var(--ap-surface); color: var(--ap-primary); border: 1px solid var(--ap-border); }

/* ─── Breadcrumb ────────────────────────────────────────────── */
.ap-breadcrumb { padding: 0.75rem 0; font-size: 0.8rem; color: var(--ap-muted); }
.ap-breadcrumb a { color: var(--ap-primary); }
.ap-breadcrumb span { margin: 0 0.35rem; }

/* ─── Regulator Row ─────────────────────────────────────────── */
.ap-reg-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.regCard {
  display: flex; align-items: center; justify-content: center;
  padding: 0.55rem 0.85rem; min-height: 44px; min-width: 110px;
  box-sizing: border-box; border-radius: 6px;
}
.regCard img { height: 28px; width: auto; max-width: 110px; object-fit: contain; }
.regCard--light { background: #fff; border: 1px solid var(--ap-border); }
.regCard--dark  { background: #14181f; border: 1px solid var(--ap-primary); }

/* ─── Footer ────────────────────────────────────────────────── */
.ap-footer {
  background: var(--ap-deepest);
  color: var(--ap-ring);
  padding: 3rem 0 0;
  font-size: 0.85rem;
}
.ap-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ap-footer__brand img { border-radius: 4px; }
.ap-footer__brand p { color: var(--ap-ring); font-size: 0.83rem; margin-top: 0.75rem; }
.ap-footer__brand-name {
  font-family: var(--ap-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.ap-footer__brand-name em { color: var(--ap-light); font-style: normal; }
.ap-footer__tagline {
  color: var(--ap-ring);
  font-size: 0.83rem;
  margin-bottom: 0.5rem;
}
.ap-footer__legal {
  color: var(--ap-ring);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}
.ap-footer__legal a { color: var(--ap-light); }
.ap-footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ap-light); margin-bottom: 0.75rem; }
.ap-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.ap-footer ul li a { color: var(--ap-ring); font-size: 0.84rem; }
.ap-footer ul li a:hover { color: var(--ap-lightest); text-decoration: none; }

/* Footer navigation */
.ap-footer__nav { margin-bottom: 1rem; }
.ap-footer__nav-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ap-light);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.ap-footer__nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ap-footer__nav-link {
  color: var(--ap-ring);
  font-size: 0.84rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.ap-footer__nav-link:hover { color: var(--ap-lightest); text-decoration: none; }

/* Footer bottom strip */
.ap-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.ap-footer__disclaimer {
  font-size: 0.77rem;
  color: var(--ap-ring);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.ap-footer__copy {
  font-size: 0.77rem;
  color: var(--ap-ring);
  opacity: 0.7;
}

/* ─── GDPR Bar & Panel ──────────────────────────────────────── */
.ap-gdpr-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ap-deepest);
  border-top: 2px solid var(--ap-primary);
  padding: 1rem 1.25rem;
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}
.ap-gdpr-bar__text { font-size: 0.84rem; color: var(--ap-ring); flex: 1; min-width: 200px; }
.ap-gdpr-bar__text a { color: var(--ap-light); }
.ap-gdpr-bar__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* GDPR bar buttons — PHP uses ap-gdpr-bar__btn with modifiers */
.ap-gdpr-bar__btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  border: none;
  font-family: var(--ap-body);
}
.ap-gdpr-bar__btn--accept { background: var(--ap-primary); color: #fff; }
.ap-gdpr-bar__btn--reject { background: rgba(255,255,255,0.08); color: var(--ap-lightest); border: 1px solid rgba(255,255,255,0.15); }
.ap-gdpr-bar__btn--settings { background: none; color: var(--ap-light); border: 1px solid var(--ap-primary); }

/* GDPR panel — JS shows/hides via removeAttribute("hidden") / setAttribute("hidden","") */
.ap-gdpr-panel {
  position: fixed;
  inset: 0;
  background: rgba(23,37,84,0.85);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-gdpr-panel[hidden] { display: none; }

.ap-gdpr-panel__inner {
  background: var(--ap-deepest);
  border: 1px solid var(--ap-primary);
  border-radius: var(--ap-radius);
  padding: 2rem;
  max-width: 480px;
  width: calc(100% - 2rem);
  position: relative;
}
.ap-gdpr-panel__title {
  color: var(--ap-lightest);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.ap-gdpr-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
}
.ap-gdpr-panel__row:last-of-type { border-bottom: none; }
.ap-gdpr-panel__label {
  flex: 1;
  color: var(--ap-lightest);
  font-size: 0.9rem;
  font-weight: 600;
}
.ap-gdpr-panel__badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  color: var(--ap-light);
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.ap-gdpr-panel__chk {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--ap-primary);
  flex-shrink: 0;
}
.ap-gdpr-panel__save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  width: 100%;
  background: var(--ap-primary);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  min-height: 44px;
  font-family: var(--ap-body);
}
.ap-gdpr-panel__save:hover { background: var(--ap-deep); }

.ap-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.ap-toggle input { opacity: 0; width: 0; height: 0; }
.ap-toggle__slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,0.1); border-radius: 24px; transition: 0.3s; }
.ap-toggle__slider::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s; }
.ap-toggle input:checked + .ap-toggle__slider { background: var(--ap-primary); }
.ap-toggle input:checked + .ap-toggle__slider::before { transform: translateX(20px); }
.ap-toggle input:disabled + .ap-toggle__slider { opacity: 0.5; cursor: not-allowed; }

/* ─── Age Gate ─────────────────────────────────────────────── */
.ap-age-gate {
  position: fixed;
  inset: 0;
  background: var(--ap-deepest);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-age-gate[hidden] { display: none; }

.ap-age-gate__box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ap-primary);
  border-radius: var(--ap-radius);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
}
/* Shield icon (18+ badge) */
.ap-age-gate__shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--ap-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 0;
}
.ap-age-gate__heading {
  color: var(--ap-lightest);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.ap-age-gate__copy {
  color: var(--ap-ring);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
/* Primary confirm button */
.ap-age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ap-primary);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 48px;
  font-family: var(--ap-body);
  width: 100%;
  margin-bottom: 0.75rem;
}
.ap-age-gate__btn:hover { background: var(--ap-deep); }
/* Exit link */
.ap-age-gate__exit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ap-ring);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-size: 0.88rem;
  min-height: 44px;
  text-decoration: none;
  width: 100%;
}
.ap-age-gate__exit:hover { color: var(--ap-lightest); text-decoration: none; background: rgba(255,255,255,0.05); }

/* ─── Utilities ─────────────────────────────────────────────── */
.ap-cookie-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ap-ring);
  font-size: 0.77rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--ap-body);
  min-height: 44px;
}
.ap-cookie-btn:hover { background: rgba(255,255,255,0.05); }

/* ─── iframe wrapper ────────────────────────────────────────── */
.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
