/* =========================================================
   PowerbankVergelijken.nl — Design System
   Modern, trustworthy comparison site. Electric green + deep navy.
   ========================================================= */

:root {
  /* Brand palette */
  --ink:        #0E1726;   /* deep navy text */
  --ink-2:      #1B2638;
  --muted:      #5B6B82;
  --muted-2:    #8392A5;
  --line:       #E6EBF1;
  --line-2:     #EEF2F7;
  --bg:         #FFFFFF;
  --bg-soft:    #F6F9FC;
  --bg-soft-2:  #EEF4F9;

  --brand:      #08CB7A;   /* electric green = charge */
  --brand-600:  #06B36B;
  --brand-700:  #059C5E;
  --brand-tint: #E6FBF2;

  --volt:       #2D7FF9;   /* electric blue accent */
  --volt-tint:  #E8F1FF;
  --amber:      #FFB020;   /* rating stars */
  --rose:       #F0506E;   /* cons */
  --gold:       #F5A623;

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --h-font: "Sora", var(--font);

  /* Shape & shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(14,23,38,.06), 0 1px 3px rgba(14,23,38,.05);
  --shadow:    0 4px 16px rgba(14,23,38,.08);
  --shadow-lg: 0 18px 50px rgba(14,23,38,.14);
  --ring: 0 0 0 4px rgba(8,203,122,.18);

  --maxw: 1180px;
  --gut: clamp(16px, 4vw, 28px);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3,h4 { font-family: var(--h-font); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); }
p  { color: var(--ink-2); }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(48px, 7vw, 90px); }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--h-font); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-700);
  background: var(--brand-tint); padding: 6px 14px; border-radius: 999px;
}
.section__head { max-width: 720px; margin: 0 auto 44px; }
.section__head.center { text-align: center; }
.section__head p { margin-top: 14px; font-size: 1.1rem; color: var(--muted); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--h-font); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; }
.brand svg { height: 34px; width: auto; }
.brand span b { color: var(--brand-700); }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: .96rem; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav__links a.is-active { color: var(--brand-700); }
.nav .btn { margin-left: 6px; }
.nav__toggle { display: none; margin-left: auto; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: none; }
.drop a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: .94rem; }
.drop a:hover { background: var(--bg-soft); }
.drop a .ic { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: var(--brand-tint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--h-font); font-weight: 600; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .12s, box-shadow .15s, background .15s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #04391f; box-shadow: 0 8px 20px rgba(8,203,122,.32); }
.btn--primary:hover { background: var(--brand-600); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--muted-2); }
.btn--sm { padding: 9px 16px; font-size: .9rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 130% at 80% -10%, var(--brand-tint) 0%, transparent 55%), radial-gradient(90% 90% at -10% 10%, var(--volt-tint) 0%, transparent 45%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-block: clamp(40px, 6vw, 80px); }
.hero h1 { margin-bottom: 18px; }
.hero h1 mark { background: linear-gradient(transparent 62%, rgba(8,203,122,.28) 0); color: inherit; padding: 0 2px; }
.hero p.lead { margin-bottom: 26px; max-width: 540px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; color: var(--muted); font-size: .92rem; font-weight: 500; }
.hero__trust .tr { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 18px; height: 18px; color: var(--brand-600); }

/* hero card */
.hero__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 22px; }
.hero__card h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 14px; }
.minirow { display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-radius: var(--r); }
.minirow + .minirow { margin-top: 6px; }
.minirow:hover { background: var(--bg-soft); }
.minirow .rank { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: var(--ink); color: #fff; font-weight: 700; font-size: .85rem; font-family: var(--h-font); }
.minirow:first-of-type .rank { background: var(--brand); color: #04391f; }
.minirow .nm { font-weight: 600; font-size: .96rem; }
.minirow .meta { font-size: .82rem; color: var(--muted); }
.minirow .sc { font-family: var(--h-font); font-weight: 800; color: var(--brand-700); }

/* ---------- Badges & stars ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; font-family: var(--h-font); padding: 4px 10px; border-radius: 999px; letter-spacing: .02em; }
.badge--banky { background: linear-gradient(135deg,#08CB7A,#06B36B); color: #04391f; }
.badge--top { background: var(--ink); color: #fff; }
.badge--deal { background: var(--amber); color: #5a3d00; }
.badge--editor { background: var(--volt-tint); color: #1b5fd0; }
.badge--soft { background: var(--bg-soft); color: var(--muted); }

.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 16px; height: 16px; }
.rating { display: inline-flex; align-items: center; gap: 8px; }
.rating b { font-family: var(--h-font); }
.rating .out { color: var(--muted); font-weight: 500; font-size: .85rem; }

/* score pill */
.score { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-tint); color: var(--brand-700); font-family: var(--h-font); font-weight: 800; font-size: 1.25rem; line-height: 1; }
.score small { display:block; font-size:.55rem; font-weight:600; letter-spacing:.1em; color:var(--muted); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
.grid--2 { grid-template-columns: repeat(2,1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d9e2ec; }
.card__ic { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--brand-tint); color: var(--brand-700); margin-bottom: 16px; }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; color: var(--muted); }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; color: var(--brand-700); font-size: .94rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .15s; }
.card:hover .card__link svg { transform: translateX(3px); }

/* category card with image strip */
.catcard { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.catcard__top { padding: 24px 22px 0; }
.catcard__art { margin-top: 16px; height: 140px; background: linear-gradient(135deg,var(--bg-soft),var(--bg-soft-2)); display: grid; place-items: center; }
.catcard__art svg { width: 84px; height: 84px; opacity: .9; }
.catcard__body { padding: 18px 22px 22px; }

/* ---------- Product / review row ---------- */
.plist { display: grid; gap: 18px; }
.prod {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm);
  position: relative; transition: box-shadow .15s, border-color .15s;
}
.prod:hover { box-shadow: var(--shadow); border-color: #d9e2ec; }
.prod.is-banky { border-color: rgba(8,203,122,.55); box-shadow: 0 0 0 1px rgba(8,203,122,.35), var(--shadow); }
.prod.is-banky::before { content: "★ Topkeuze uit test"; position: absolute; top: -11px; left: 24px; background: linear-gradient(135deg,#08CB7A,#06B36B); color: #04391f; font-family: var(--h-font); font-weight: 800; font-size: .72rem; padding: 4px 12px; border-radius: 999px; letter-spacing: .03em; }
.prod__rank { width: 56px; height: 56px; border-radius: 16px; background: var(--bg-soft); display: grid; place-items: center; font-family: var(--h-font); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.prod:nth-child(1) .prod__rank { background: var(--ink); color: #fff; }
.prod.is-banky .prod__rank { background: var(--brand); color: #04391f; }
.prod__main { min-width: 0; }
.prod__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.prod__main h3 { font-size: 1.25rem; }
.prod__sub { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.prod__specs { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 12px 0; }
.prod__specs li { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; color: var(--ink-2); }
.prod__specs svg { width: 16px; height: 16px; color: var(--brand-600); }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; margin-top: 14px; }
.proscons li { display: flex; gap: 8px; font-size: .9rem; align-items: flex-start; }
.proscons svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.pro svg { color: var(--brand-600); }
.con svg { color: var(--rose); }
.con { color: var(--muted); }
.prod__side { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 150px; text-align: center; }
.prod__price { font-family: var(--h-font); font-weight: 800; font-size: 1.5rem; }
.prod__price small { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .02em; }
.prod__store { font-size: .8rem; color: var(--muted); }

/* ---------- Comparison table ---------- */
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  /* Scroll-shadow: subtiele fade rechts/links zolang er nog te scrollen valt */
  background:
    linear-gradient(to right, #fff 30%, rgba(255,255,255,0)) 0 0,
    linear-gradient(to left, #fff 30%, rgba(255,255,255,0)) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(14,23,38,.14), transparent) 0 0,
    radial-gradient(farthest-side at 100% 50%, rgba(14,23,38,.14), transparent) 100% 0;
  background-repeat: no-repeat;
  background-size: 42px 100%, 42px 100%, 16px 100%, 16px 100%;
  background-attachment: local, local, scroll, scroll;
}
/* Mobiele "veeg opzij"-hint boven scrollbare tabellen (via JS toegevoegd) */
.swipe-hint { display: none; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; font-size: .86rem; font-weight: 600; color: var(--brand-700); }
.swipe-hint svg { width: 18px; height: 18px; animation: swipeNudge 1.3s ease-in-out infinite; }
@keyframes swipeNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@media (prefers-reduced-motion: reduce) { .swipe-hint svg { animation: none; } }
table.cmp { width: 100%; border-collapse: collapse; min-width: 760px; font-size: .94rem; }
table.cmp th, table.cmp td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line-2); }
table.cmp thead th { background: var(--bg-soft); font-family: var(--h-font); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }
table.cmp tbody tr:hover { background: var(--bg-soft); }
table.cmp .nm { font-weight: 700; font-family: var(--h-font); }
table.cmp tr.is-banky td { background: var(--brand-tint); }
table.cmp tr.is-banky:hover td { background: #d7f6ea; }
table.cmp .sc { font-family: var(--h-font); font-weight: 800; color: var(--brand-700); }

/* ---------- TOC / prose (blog) ---------- */
.article { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: start; }
.toc { position: sticky; top: 90px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; font-size: .92rem; }
.toc h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; }
.toc a { display: block; padding: 6px 0; color: var(--muted); border-left: 2px solid transparent; padding-left: 12px; margin-left: -12px; }
.toc a:hover { color: var(--brand-700); }
.prose { max-width: 740px; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.8em; scroll-margin-top: 90px; }
.prose h3 { margin-top: 1.4em; scroll-margin-top: 90px; }
.prose p, .prose li { color: var(--ink-2); font-size: 1.06rem; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 28px; margin-top: 8px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 8px; height: 8px; border-radius: 3px; background: var(--brand); transform: rotate(45deg); }
.prose ol { padding-left: 22px; }
.prose ol li { margin-top: 8px; }
.prose a { color: var(--brand-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; text-decoration-color: rgba(8,203,122,.4); }
.prose blockquote { border-left: 4px solid var(--brand); background: var(--brand-tint); padding: 16px 22px; border-radius: 0 var(--r) var(--r) 0; font-size: 1.05rem; }
.prose blockquote p { color: var(--ink); margin: 0; }
.callout { background: var(--volt-tint); border: 1px solid #cfe0ff; border-radius: var(--r); padding: 18px 22px; display: flex; gap: 14px; }
.callout svg { width: 24px; height: 24px; color: var(--volt); flex: none; }
.callout p { margin: 0; font-size: .98rem; }

/* table of figures in prose */
.prose .tablewrap { margin-top: 1.4em; }
.prose figure { margin: 0; }
.prose figcaption { font-size: .85rem; color: var(--muted); margin-top: 8px; text-align: center; }

/* ---------- Blog cards ---------- */
.post { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post__art { aspect-ratio: 16/9; background: linear-gradient(135deg,var(--brand-tint),var(--volt-tint)); display: grid; place-items: center; }
.post__art svg { width: 72px; height: 72px; opacity: .85; }
.post__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post__cat { font-size: .76rem; font-weight: 700; color: var(--brand-700); text-transform: uppercase; letter-spacing: .08em; }
.post__body h3 { font-size: 1.18rem; }
.post__excerpt { font-size: .95rem; color: var(--muted); }
.post__meta { margin-top: auto; padding-top: 12px; font-size: .85rem; color: var(--muted-2); display: flex; gap: 12px; }

/* ---------- CTA band / Banky promo ---------- */
.band { background: linear-gradient(135deg, var(--ink) 0%, #122036 60%, #0b2a22 100%); color: #fff; border-radius: var(--r-xl); padding: clamp(32px,5vw,56px); position: relative; overflow: hidden; }
.band::after { content:""; position:absolute; inset:auto -10% -60% auto; width:420px; height:420px; background: radial-gradient(circle, rgba(8,203,122,.35), transparent 65%); }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.78); max-width: 560px; }
.band .btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }

/* faq */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); padding: 4px 20px; background: #fff; }
.faq details + details { margin-top: 12px; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--h-font); font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand-700); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 0 18px; color: var(--muted); margin: 0; }

/* ---------- Breadcrumbs ---------- */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); padding-block: 18px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brand-700); }
.crumbs svg { width: 14px; height: 14px; }

/* ---------- Page hero (inner) ---------- */
.phero { background: radial-gradient(110% 120% at 90% -20%, var(--brand-tint), transparent 55%); border-bottom: 1px solid var(--line); }
.phero__in { padding-block: clamp(28px,4vw,52px); max-width: 760px; }
.phero h1 { margin-bottom: 14px; }
.phero p { font-size: 1.12rem; color: var(--muted); }
.phero__stats { display: flex; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.phero__stats .st b { font-family: var(--h-font); font-size: 1.5rem; color: var(--brand-700); display: block; }
.phero__stats .st span { font-size: .85rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: 56px 28px; margin-top: 64px; }
.site-footer .brand { color: #fff; }
.site-footer .brand span b { color: var(--brand); }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot__grid p { color: rgba(255,255,255,.6); font-size: .94rem; margin-top: 14px; max-width: 320px; }
.foot__col h5 { font-family: var(--h-font); color: #fff; font-size: .92rem; margin-bottom: 14px; }
.foot__col a { display: block; padding: 5px 0; color: rgba(255,255,255,.66); font-size: .92rem; }
.foot__col a:hover { color: var(--brand); }
.foot__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: .85rem; color: rgba(255,255,255,.5); }
.foot__bottom a { color: rgba(255,255,255,.66); }
.foot__bottom a:hover { color: var(--brand); }

/* affiliate disclosure inline note */
.aff-note { background: var(--bg-soft); border: 1px dashed var(--line); border-radius: var(--r); padding: 14px 18px; font-size: .88rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.aff-note svg { width: 18px; height: 18px; color: var(--muted-2); flex: none; margin-top: 2px; }

/* utilities */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:36px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.muted{color:var(--muted)} .small{font-size:.88rem}
.flex{display:flex}.gap{gap:12px}.wrap{flex-wrap:wrap}.items-center{align-items:center}
.hide-m{display:initial}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .article { grid-template-columns: 1fr; }
  .toc { display: none; }
  .band__inner { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gut) 20px; gap: 2px; box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .25s; }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 12px 14px; }
  .nav__toggle { display: inline-flex; }
  .has-drop .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; min-width: 0; }
  .nav .btn { width: 100%; margin: 8px 0 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .prod { grid-template-columns: 44px 1fr; }
  .prod__side { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 16px; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px; min-width: 0; text-align: center; }
  .prod__side .btn { width: 100%; order: 3; }
  .prod__side .prod__store { flex: 1 0 100%; order: 4; }
  .prod__side .revbadge { flex: 1 0 100%; order: 5; justify-content: center; }
  .proscons { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
  .swipe-hint { display: flex; }
  .foot__grid { grid-template-columns: 1fr; gap: 26px; }
  .hide-m { display: none; }
}

/* ---------- "Waarom Banky wint" rationale ---------- */
.why { background: linear-gradient(180deg, var(--brand-tint), #fff 70%); border: 1px solid rgba(8,203,122,.3); border-radius: var(--r-xl); padding: clamp(28px,4vw,48px); }
.why__head { max-width: 720px; }
.why__head .eyebrow { background: #fff; }
.reasons { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.reason { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.reason__ic { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--brand-tint); font-size: 1.3rem; }
.reason h3 { font-size: 1.02rem; margin-bottom: 4px; }
.reason p { font-size: .9rem; color: var(--muted); margin: 0; }
.trustbar { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; margin-top: 28px; padding: 18px 22px; background: var(--ink); border-radius: var(--r); color: #fff; }
.trustbar .tb { display: inline-flex; align-items: center; gap: 9px; font-size: .94rem; }
.trustbar .tb b { font-family: var(--h-font); }
.trustbar .stars { color: var(--amber); }
.trustbar .src { color: rgba(255,255,255,.6); font-size: .82rem; }
.trustbar .tb--note { margin-left: auto; color: rgba(255,255,255,.65); font-size: .82rem; }
@media (max-width: 860px){ .reasons { grid-template-columns: 1fr; } .trustbar .tb--note { margin-left: 0; width: 100%; } }

/* compact verified-review badge for product side */
.revbadge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; color: var(--muted); margin-top: 2px; }
.revbadge .stars { color: var(--amber); }
.revbadge .stars svg { width: 13px; height: 13px; }

/* Vliegtuig-geschiktheid badge (via JS toegevoegd o.b.v. capaciteit) */
.fly-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--h-font); font-weight: 700; font-size: .74rem; letter-spacing: .02em; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.fly-badge svg { width: 14px; height: 14px; flex: none; }
.fly-badge--ok { background: var(--volt-tint); color: #1b5fd0; }
.fly-badge--no { background: #fdeaee; color: #c0344e; }

/* ---------- Cookie consent ---------- */
.cookie {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(140%);
  z-index: 80; width: min(680px, calc(100% - 32px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie p { font-size: .92rem; color: var(--ink-2); margin: 0; }
.cookie p a { color: var(--brand-700); font-weight: 600; text-decoration: underline; }
.cookie__btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 620px){ .cookie { grid-template-columns: 1fr; } .cookie__btns .btn { flex: 1; } }

/* ---------- Editorial rating row ---------- */
.prod__rating { display: flex; align-items: center; gap: 8px; margin: 2px 0 10px; }
.prod__rating .stars { color: var(--amber); }
.prod__rating b { font-family: var(--h-font); font-size: .95rem; }
.prod__rating span { font-size: .82rem; color: var(--muted); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
