/* ==========================================================================
   PlayServer.nl — stylesheet
   1. Tokens & reset          5. Secties (hero, features, prijzen, ...)
   2. Typografie & knoppen    6. Footer
   3. Layout helpers          7. Responsive
   4. Header & mega menu
   ========================================================================== */

/* 1. Tokens & reset ------------------------------------------------------- */
:root {
  --bg:           #070911;
  --bg-alt:       #0b0f1b;
  --surface:      #10152400;
  --card:         #111728;
  --card-2:       #161d33;
  --line:         rgba(255, 255, 255, .09);
  --line-strong:  rgba(255, 255, 255, .16);

  --text:         #e9edf7;
  --muted:        #97a3bd;
  --dim:          #6d7994;

  --primary:      #2f7bff;
  --primary-600:  #1f63e0;
  --primary-soft: rgba(47, 123, 255, .14);
  --cyan:         #22d3ee;
  --accent:       #f7b500;
  --danger:       #ff4d6d;
  --ok:           #34d399;

  --grad-brand:   linear-gradient(135deg, #2f7bff 0%, #22d3ee 100%);
  /* Dieper blauw voor knoppen, zodat witte tekst genoeg contrast houdt. */
  --grad-button:  linear-gradient(135deg, #2a6ff0 0%, #1544c9 100%);
  --grad-accent:  linear-gradient(135deg, #f7b500 0%, #ff8a3d 100%);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow:      0 18px 48px rgba(0, 0, 0, .45);
  --shadow-glow: 0 0 0 1px rgba(47, 123, 255, .35), 0 20px 60px rgba(47, 123, 255, .18);

  --container: 1200px;
  --header-h:  76px;

  --font:  'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Achtergrondsfeer: subtiel raster + twee gloedvlekken bovenaan.
   Bewust zonder background-attachment: fixed en zonder fixed pseudo-elementen —
   die dwingen op lange pagina's een compositing-laag af waar Chrome op stukloopt. */
body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    radial-gradient(circle, rgba(47, 123, 255, .22) 0%, transparent 66%),
    radial-gradient(circle, rgba(34, 211, 238, .13) 0%, transparent 66%);
  background-size: 64px 64px, 64px 64px, 1700px 1100px, 1400px 900px;
  background-position: 0 0, 0 0, 8% -420px, 96% -260px;
  background-repeat: repeat, repeat, no-repeat, no-repeat;
}

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

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.icon { width: 22px; height: 22px; flex: none; }
.icon-sm { width: 17px; height: 17px; }

/* 2. Typografie & knoppen ------------------------------------------------- */
h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; }

p { margin: 0 0 1.1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  padding: .4rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s, border-color .2s, box-shadow .25s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-button);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 123, 255, .32);
}
.btn-primary svg { color: #fff; }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(47, 123, 255, .45); }

.btn-accent {
  background: var(--grad-accent);
  color: #1a1204;
  box-shadow: 0 10px 30px rgba(247, 181, 0, .28);
}

.btn-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary-soft); }

.btn-ghost { background: transparent; color: var(--muted); padding-inline: 1rem; }
.btn-ghost:hover { color: var(--text); }

.btn-sm  { padding: .6rem 1.1rem; font-size: .86rem; }
.btn-lg  { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* 3. Layout helpers ------------------------------------------------------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .022) 18%, rgba(255, 255, 255, .022) 82%, transparent); }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 3.75rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { font-size: 1.08rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }

.card-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(47, 123, 255, .35);
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--cyan);
}

.card h3 { margin-bottom: .5rem; font-size: 1.18rem; }
.card p  { font-size: .97rem; margin: 0; }

/* 4. Header & mega menu --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.is-stuck {
  background: rgba(7, 9, 17, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand img { width: 168px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-list { display: flex; align-items: center; gap: .35rem; }

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  font-size: .97rem;
  transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-link.is-active { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav-link.is-active { color: #fff; }

.nav-caret { transition: transform .25s var(--ease); }
.has-mega.is-open > .nav-link .nav-caret { transform: rotate(180deg); }
.has-mega.is-open > .nav-link { color: var(--text); background: rgba(255, 255, 255, .05); }

.mega-toggle { display: none; }

.nav-cta { display: flex; align-items: center; gap: .5rem; }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 90;
  width: min(96vw, 1060px);
  transform: translate(-50%, 10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 27, .97);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .28s var(--ease), visibility .22s;
}
.has-mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.35fr .85fr 1fr;
  gap: 2rem;
  width: auto;
  padding: 2rem;
}

.mega-eyebrow {
  margin: 0 0 1rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mega-links li + li { margin-top: .35rem; }
.mega-links a {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem .85rem;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.mega-links a:hover {
  background: rgba(255, 255, 255, .045);
  border-color: var(--line);
  transform: translateX(3px);
}
.mega-links strong { display: block; font-size: .98rem; }
.mega-links em {
  display: block;
  color: var(--dim);
  font-size: .84rem;
  font-style: normal;
}
.mega-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--cyan);
}

.mega-usps li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .42rem 0;
  color: var(--muted);
  font-size: .93rem;
}
.mega-usps svg { color: var(--cyan); }

.mega-col-promo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.mega-col-promo img { height: 128px; object-fit: cover; width: 100%; }
.mega-promo-body { padding: 1.1rem; }
.mega-promo-body strong { display: block; margin-bottom: .3rem; }
.mega-promo-body p { font-size: .87rem; margin-bottom: .9rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
}
.nav-toggle-bars { display: grid; gap: 5px; place-items: center; }
.nav-toggle-bars span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 5. Secties -------------------------------------------------------------- */

/* Hero */
.hero { position: relative; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { margin-bottom: 2rem; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--line);
}
.hero-stats dt {
  font-family: var(--mono);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
}
.hero-stats dd { margin: .15rem 0 0; color: var(--dim); font-size: .87rem; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(47, 123, 255, .3), transparent 72%);
  filter: blur(20px);
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(11, 15, 27, .92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-size: .88rem;
  font-weight: 600;
}
.hero-badge svg { color: var(--cyan); }
.hero-badge span small { display: block; color: var(--dim); font-weight: 400; font-size: .78rem; }
.hero-badge-1 { left: -1.2rem; bottom: 12%; }
.hero-badge-2 { right: -1rem; top: 8%; }

/* Logostrook / trust */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.4rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .022);
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}
.trust-bar svg { color: var(--cyan); }

/* Split (tekst + beeld) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.split-list { margin-top: 1.5rem; display: grid; gap: .75rem; }
.split-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted); }
.split-list svg { color: var(--ok); margin-top: 3px; }

/* Games */
.game-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.game-card:hover { transform: translateY(-5px); border-color: rgba(47, 123, 255, .5); box-shadow: var(--shadow-glow); }
.game-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; transition: transform .5s var(--ease); }
.game-card:hover img { transform: scale(1.05); }
.game-card-body { padding: 1.15rem 1.3rem 1.35rem; }
.game-card-body h3 { margin-bottom: .25rem; font-size: 1.15rem; }
.game-card-body p { font-size: .9rem; margin: 0; }
.game-card .tag {
  position: absolute;
  top: .9rem; left: .9rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(7, 9, 17, .82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.game-card.is-soon { opacity: .62; }
.game-card.is-soon .tag { color: var(--accent); }

/* Tabs (diensten) */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 2.5rem;
  padding: .4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
  transition: background .25s, color .25s, box-shadow .25s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn[aria-selected="true"] {
  background: var(--grad-brand);
  color: #04070f;
  box-shadow: 0 8px 24px rgba(47, 123, 255, .3);
}
.tab-btn svg { width: 18px; height: 18px; }

.tab-panel[hidden] { display: none; }
.tab-intro { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.tab-intro h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.tab-spec {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .3rem;
  padding: .45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .8rem;
}

/* Prijskaarten */
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-5px); border-color: rgba(47, 123, 255, .45); box-shadow: var(--shadow-glow); }
.plan.is-popular { border-color: rgba(47, 123, 255, .55); box-shadow: var(--shadow-glow); }

.plan-badge {
  position: absolute;
  top: -.72rem;
  left: 1.5rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  background: var(--grad-accent);
  color: #1a1204;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.plan-name { margin: 0 0 .15rem; font-size: 1.3rem; }
.plan-ram {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.plan-price .cur { font-size: 1.2rem; font-weight: 600; color: var(--muted); }
.plan-price .amount { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan-price .per { color: var(--dim); font-size: .9rem; }

.plan-pergb {
  margin: -.9rem 0 1.1rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .02em;
}

.plan-specs { display: grid; gap: .55rem; margin-bottom: 1.3rem; }
.plan-specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .89rem;
  color: var(--dim);
}
.plan-specs li b { color: var(--text); font-weight: 600; text-align: right; }

.plan-features { display: grid; gap: .5rem; margin-bottom: 1.6rem; }
.plan-features li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
}
.plan-features svg { color: var(--ok); margin-top: 3px; width: 15px; height: 15px; }
.plan .btn { margin-top: auto; }


/* Waardestrook onder de pakketten ------------------------------------------ */
.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}
.value-strip li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  background: var(--card);
  font-size: .9rem;
  color: var(--muted);
}
.value-strip svg { color: var(--cyan); margin-top: 3px; flex: none; }
.value-strip strong { display: block; margin-bottom: .2rem; font-size: .96rem; }

@media (max-width: 900px) {
  .value-strip { grid-template-columns: 1fr; }
}


/* Rekentool ---------------------------------------------------------------- */
.calc {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-2), var(--card));
}

.calc-controls { display: grid; gap: 1.75rem; align-content: start; }

.calc-field { margin: 0; padding: 0; border: 0; }
.calc-field > label,
.calc-field > legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-bottom: .75rem;
  padding: 0;
  font-weight: 600;
  font-size: .97rem;
}
.calc-field output {
  padding: .2rem .7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 700;
}

.calc-radios { display: flex; flex-wrap: wrap; gap: .5rem; }
.calc-radio input { position: absolute; opacity: 0; pointer-events: none; }
.calc-radio span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.calc-radio:hover span { color: var(--text); border-color: var(--primary); }
.calc-radio input:checked + span {
  background: var(--grad-button);
  border-color: transparent;
  color: #fff;
}
.calc-radio input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* Schuifjes: dezelfde look in WebKit en Firefox. */
.calc-field input[type="range"] {
  --fill: 50%;
  width: 100%;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--cyan) var(--fill), rgba(255, 255, 255, .1) var(--fill));
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .45);
  cursor: grab;
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .45);
  cursor: grab;
}
.calc-field input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
}
.calc-field input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.calc-scale {
  display: flex;
  justify-content: space-between;
  margin-top: .45rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: .74rem;
}

.calc-notes { display: grid; gap: .5rem; }
.calc-notes li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  color: var(--dim);
  font-size: .87rem;
}
.calc-notes svg { color: var(--ok); margin-top: 3px; flex: none; }

.calc-result {
  padding: 1.6rem;
  border: 1px solid rgba(47, 123, 255, .4);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 200px at 50% 0%, rgba(47, 123, 255, .18), transparent 70%),
    rgba(255, 255, 255, .03);
  text-align: center;
}
.calc-result-eyebrow,
.calc-plan-eyebrow {
  margin: 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.calc-ram {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .4rem;
  margin: .3rem 0 1.4rem;
  font-size: clamp(3rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text);
}
.calc-ram small { font-size: 1.05rem; font-weight: 600; color: var(--cyan); letter-spacing: 0; }

.calc-plan {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(7, 9, 17, .5);
}
.calc-plan h3 { margin: .35rem 0 .5rem; font-size: 1.35rem; }
.calc-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .2rem;
  margin: 0 0 1rem;
}
.calc-plan-price .cur { font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.calc-plan-price .amount { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
.calc-plan-price .per { color: var(--dim); font-size: .85rem; }

.calc-plan-specs { display: grid; gap: .45rem; margin-bottom: 1.2rem; }
.calc-plan-specs li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--muted);
  font-size: .89rem;
}
.calc-plan-specs svg { color: var(--cyan); }

.calc-plan-note {
  margin: 0 0 1rem;
  padding: .6rem .8rem;
  border-radius: var(--radius-sm);
  background: rgba(247, 181, 0, .1);
  color: #ffd98a;
  font-size: .82rem;
}
.calc-plan .btn + .btn { margin-top: .55rem; }

@media (max-width: 900px) {
  .calc { grid-template-columns: 1fr; }
}

/* Inbegrepen-tabel */
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.included-grid li {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1.1rem 1.25rem;
  background: var(--card);
  font-size: .93rem;
  color: var(--muted);
}
.included-grid svg { color: var(--cyan); flex: none; }

/* Reviews */
.review {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-2), var(--card));
}
.review-quote { color: var(--primary); opacity: .5; margin-bottom: .75rem; }
.review-stars { display: flex; gap: .15rem; margin-bottom: .9rem; color: var(--accent); }
.review-stars svg { width: 16px; height: 16px; }
.review p { font-size: .97rem; margin-bottom: 1.4rem; }
.review-author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.review-author strong { display: block; font-size: .95rem; }
.review-author span { color: var(--dim); font-size: .83rem; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .025);
  transition: border-color .25s, background .25s;
}
.faq details[open] { border-color: rgba(47, 123, 255, .4); background: rgba(47, 123, 255, .05); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cyan);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 1.35rem 1.3rem; }
.faq .faq-body p { font-size: .96rem; }

/* Stappen */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 3.6rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(47, 123, 255, .4);
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .9rem;
  font-weight: 700;
}
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { font-size: .95rem; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

.form-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-2), var(--card));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.field .req { color: var(--danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(7, 9, 17, .6);
  color: var(--text);
  font: inherit;
  font-size: .96rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: var(--danger); }
.field-error { display: block; margin-top: .35rem; color: var(--danger); font-size: .82rem; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  display: flex;
  gap: .7rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  border-radius: var(--radius-sm);
  font-size: .94rem;
}
.alert-ok    { border-color: rgba(52, 211, 153, .45); background: rgba(52, 211, 153, .1);  color: #a7f3d0; }
.alert-error { border-color: rgba(255, 77, 109, .45); background: rgba(255, 77, 109, .1); color: #ffc9d4; }

.contact-methods { display: grid; gap: 1rem; }
.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
  transition: border-color .25s, background .25s;
}
.contact-method:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, .04); }
.contact-method .card-icon { margin: 0; width: 42px; height: 42px; }
.contact-method h3 { font-size: 1.02rem; margin-bottom: .2rem; }
.contact-method p { font-size: .9rem; margin: 0; }
.contact-method a { color: var(--cyan); }

/* Over ons */
.value-card .card-icon { border-radius: 12px; }
.timeline { display: grid; gap: 0; border-left: 1px solid var(--line); padding-left: 2rem; margin-left: .6rem; }
.timeline li { position: relative; padding-bottom: 2rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-2rem - 5px);
  top: .55rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .16);
}
.timeline .year {
  display: block;
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
}
.timeline h3 { font-size: 1.08rem; margin: .25rem 0 .3rem; }
.timeline p { font-size: .95rem; margin: 0; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.spec-table th, .spec-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--muted); font-weight: 600; width: 42%; }
.spec-table td { color: var(--text); font-family: var(--mono); font-size: .88rem; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* Pagina-hero (subpagina's) */
.page-hero { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; }
.page-hero .lead { margin-inline: auto; }
.breadcrumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
  color: var(--dim);
  font-size: .85rem;
}
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--line-strong); }
.breadcrumbs li { display: flex; gap: .5rem; }

/* CTA-band */
.cta-band {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(47, 123, 255, .18), transparent 65%),
    radial-gradient(600px 300px at 85% 100%, rgba(247, 181, 0, .1), transparent 60%),
    rgba(255, 255, 255, .02);
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-inner h2 { margin-bottom: .35rem; }
.cta-inner p { margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* 6. Footer --------------------------------------------------------------- */
.site-footer { padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; background: rgba(4, 6, 12, .6); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand img { width: 190px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .95rem; max-width: 42ch; }

.footer-col h3 {
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  letter-spacing: 0;
}
.footer-col ul { display: grid; gap: .6rem; }
.footer-col ul a { color: var(--muted); font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-col ul a:hover { color: var(--cyan); padding-left: 4px; }

.footer-note { font-size: .9rem; }
.footer-support { display: flex; gap: .5rem; align-items: flex-start; margin-top: 1rem; }
.footer-support svg { color: var(--cyan); margin-top: 4px; flex: none; }
.footer-support a { color: var(--cyan); }
.footer-buttons { display: grid; gap: .6rem; }

.footer-col .social-list,
.social-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.social-list a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease);
}
.social-list a:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: .87rem;
}
.footer-bottom p { margin: 0; color: inherit; }
.footer-tagline { font-family: var(--mono); }

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(11, 15, 27, .9);
  backdrop-filter: blur(8px);
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, visibility .25s, transform .25s var(--ease), border-color .2s;
}
.to-top svg { transform: rotate(180deg); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { border-color: var(--primary); }

/* Scroll-reveal */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* 7. Responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-badge-1 { left: 0; bottom: -1rem; }
  .hero-badge-2 { right: 0; top: -1rem; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: grid; place-items: center; }

  /* Absoluut i.p.v. fixed: de backdrop-filter op .site-header maakt die tot
     containing block, waardoor een fixed paneel tot de header zou inklappen. */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h));
    z-index: 95;
    display: block;
    margin: 0;
    padding: 1.5rem 1.25rem 3rem;
    background: #080b14;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s var(--ease), transform .3s var(--ease), visibility .25s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  body.nav-open { overflow: hidden; }
  .site-header { background: rgba(7, 9, 17, .9); backdrop-filter: blur(14px); border-bottom-color: var(--line); }

  .nav-list { display: block; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { display: flex; padding: 1.05rem .25rem; border-radius: 0; font-size: 1.05rem; }
  .nav-link .nav-caret { display: none; }

  .mega-toggle {
    position: absolute;
    right: 0; top: .55rem;
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    transition: transform .25s var(--ease);
  }
  .has-mega.is-open .mega-toggle { transform: rotate(180deg); border-color: var(--primary); }

  .mega-menu {
    position: static;
    width: auto;
    transform: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .has-mega.is-open .mega-menu { display: block; transform: none; }
  .mega-inner { grid-template-columns: 1fr; gap: 1.25rem; padding: 0 0 1.5rem; width: auto; }
  .mega-col-promo { display: none; }

  .nav-cta { display: grid; gap: .6rem; margin-top: 1.75rem; }
  .nav-cta .btn { width: 100%; padding-block: 1rem; }
  .btn-ghost { border: 1px solid var(--line-strong); }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.1rem; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tabs { border-radius: var(--radius); }
  .tab-btn { flex: 1 1 auto; justify-content: center; padding: .7rem 1rem; font-size: .88rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions .btn { flex: 1 1 auto; }
  .hero-badge { display: none; }
  .brand img { width: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
