:root{
  --blue:#4f7cff;
  --purple:#8b5cf6;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e5e7eb;
  --bg:#f8fafc;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
@keyframes fadeLeft{from{opacity:0;transform:translateX(-32px)}to{opacity:1;transform:none}}
@keyframes fadeDown{from{opacity:0;transform:translateY(-16px)}to{opacity:1;transform:none}}

/* ========== HEADER ========== */
header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}
.header-inner{
  max-width:1200px;
  margin:auto;
  padding:20px 24px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  animation:fadeDown .6s ease forwards;
}
.logo{font-weight:800;font-size:20px}
nav{display:flex;justify-content:center;gap:36px}
nav a{text-decoration:none;color:var(--text);font-weight:500}
.header-right{display:flex;gap:12px;align-items:center}
.lang{
  display:flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:12px;background:#f8fafc
}
.login{
  background:var(--blue);color:#fff;border:none;
  padding:10px 18px;border-radius:14px;font-weight:600;
  cursor: pointer;   /* 👈 handje met vinger */
}

/* ========== HERO ========== */
.hero{position:relative;overflow:hidden}
.hero::before{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(#eef2f7 1px, transparent 1px),
    linear-gradient(90deg,#eef2f7 1px, transparent 1px);
  background-size:48px 48px;opacity:.6
}
.hero::after{
  content:"";position:absolute;right:-10%;top:20%;
  width:520px;height:520px;
  background:radial-gradient(circle, rgba(79,124,255,.22), transparent 60%)
}
.hero-inner{
  position:relative;max-width:1200px;margin:auto;
  padding:80px 24px 40px;
  display:grid;grid-template-columns:1.1fr 1fr;
  gap:64px;align-items:center
}
.hero-left{animation:fadeLeft .9s ease forwards}

/* ========== PROMO BADGE ========== */
.badge-wrap{
  position:relative;
  display:inline-block;
  padding:2px;
  border-radius:999px;
  margin-bottom:28px;
  background:#e5e7eb;
  overflow:hidden;
}

/* 🔥 LOPENDE STREEP */
.badge-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      var(--purple) 45%,
      var(--blue) 55%,
      transparent 100%
    );
  background-size:220% 100%;
  animation:strokeMove 3.8s ease-in-out infinite;
}

/* MASK ZODAT ALLEEN RAND ZICHTBAAR IS */
.badge-wrap::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:999px;
  background:#fff;
}

@keyframes strokeMove{
  0%   { background-position: 220% 0; }
  50%  { background-position: 0% 0; }
  100% { background-position: -220% 0; }
}

.badge{
  position:relative;
  z-index:2;
  background:#fff;
  border-radius:999px;
  padding:10px 18px 10px 22px;
  display:flex;
  align-items:center;
  gap:14px;
  font-size:14px;
}

.badge-btn{
  background:#0f172a;
  color:#fff;
  border:none;
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
}

/* ===== TITLES ===== */
h1{font-size:56px;line-height:1.05;margin:0 0 22px}
h1 span{color:var(--blue)}
.hero p{font-size:18px;color:var(--muted)}

.hero-buttons{
  margin-top:28px;display:flex;gap:14px;animation:fadeUp .8s ease forwards
}
.btn-primary{
  padding:14px 26px;background:var(--blue);
  color:#fff;border:none;border-radius:14px;font-weight:600
}
.btn-outline{
  padding:14px 26px;background:#fff;border:1px solid var(--border);
  border-radius:14px;font-weight:600;
  display:flex;align-items:center;gap:8px
}

/* ========== TERMINAL ========== */
.terminal{
  background:#f5f6f8;border-radius:16px;border:1px solid #e1e4ea;
  box-shadow:0 30px 70px rgba(79,124,255,.25), inset 0 1px 0 #fff;
  overflow:hidden;opacity:0;transform:translateY(30px);
  animation:fadeUp .1s ease forwards;animation-delay:2s
}
.terminal-header{
  display:flex;justify-content:space-between;
  padding:12px 16px;background:#eef0f3;font-size:13px;font-weight:600
}
.terminal-dots{display:flex;gap:8px}
.dot{width:12px;height:12px;border-radius:50%}
.red{background:#ff5f56}.yellow{background:#ffbd2e}.green{background:#27c93f}
.terminal-body{
  height:240px;padding:22px;font-family:ui-monospace,monospace;
  font-size:14px;line-height:1.6;white-space:pre-wrap;
  overflow:hidden;color:#1f2937
}
.term-green{color:#22c55e;font-weight:600}
.term-yellow{color:#f59e0b}

/* ========== FEATURES ========== */
.features{
  max-width:1200px;margin:40px auto 80px;
  padding:0 24px;display:grid;grid-template-columns:repeat(4,1fr);gap:20px
}
.feature{
  background:#fff;border:1px solid var(--border);border-radius:16px;
  padding:22px;display:flex;align-items:center;justify-content:center;
  gap:12px;font-weight:600;animation:fadeUp .6s ease forwards
}
.feature i{color:var(--blue);font-size:18px}

/* ========== TOAST ========== */
.toast{
  position:fixed;top:24px;right:24px;
  background:#fff;padding:14px 18px;border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  display:flex;align-items:center;gap:10px;
  font-weight:600;opacity:0;transform:translateY(-10px);
  transition:.3s ease;z-index:9999
}
.toast.show{opacity:1;transform:none}
.toast i{color:#22c55e}

/* ========== RESPONSIVE ========== */
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  nav{display:none}
  h1{font-size:42px}
}

.payment-section{
  max-width:1200px;
  margin:120px auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* ===== TEXT ===== */
.payment-text h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:18px;
}
.payment-text p{
  font-size:16px;
  line-height:1.7;
  color:#6b7280;
  max-width:420px;
}
.payment-text strong{color:#374151}

/* ===== ORBIT AREA ===== */
.payment-orbit{
  position:relative;
  width:340px;
  height:340px;
  margin:auto;
}

/* ===== CENTER LOGO ===== */
.center-logo{
  position:absolute;
  inset:0;
  margin:auto;
  width:96px;
  height:96px;
  background:#4f7cff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  font-weight:800;
  color:#fff;
  box-shadow:0 20px 50px rgba(79,124,255,.35);
  z-index:5;
}

.center-logo > img{
  width: 125% !important;     /* 👈 HIER WORDT HET OPGELOST */
  height:auto !important;
  max-width: 125% !important;
  max-height: 125% !important;

  object-fit:contain;
  display:block;
}

/* ===== RINGS ===== */
.orbit{
  position:absolute;
  inset:0;
  margin:auto;
  border-radius:50%;
}

.outer{
  width:320px;
  height:320px;
  border:1px solid #e5e7eb;
  animation:spinRight 26s linear infinite;
}

.inner{
  width:190px;
  height:190px;
  border:1px solid #e5e7eb;
  animation:spinLeft 18s linear infinite;
}

/* ===== ICONS ===== */
.icon{
  position:absolute;
  width:44px;
  height:44px;
  background:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* OUTER POSITIONS */
.outer .apple{top:-22px;left:50%;transform:translateX(-50%)}
.outer .binance{right:-22px;top:50%;transform:translateY(-50%)}
.outer .ethereum{bottom:-22px;left:50%;transform:translateX(-50%)}
.outer .paypal{left:-22px;top:50%;transform:translateY(-50%)}

/* INNER POSITIONS */
.inner .visa{top:-22px;left:50%;transform:translateX(-50%)}
.inner .mastercard{right:-22px;top:50%;transform:translateY(-50%)}
.inner .stripe{left:-22px;top:50%;transform:translateY(-50%)}

/* ===== COLORS ===== */
.apple i{color:#000}
.binance i{color:#f59e0b}
.ethereum i{color:#6366f1}
.paypal i{color:#2563eb}
.visa i{color:#1a1f71}
.mastercard i{color:#ef4444}
.stripe i{color:#6772e5}

@keyframes spinRight{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes spinLeft{
  from{transform:rotate(360deg)}
  to{transform:rotate(0deg)}
}

@media(max-width:900px){
  .payment-section{
    grid-template-columns:1fr;
    gap:60px;
  }
}

header {
  width: 100%;
  height: 80px;              /* vaste headerhoogte */
}

.header-inner {
  display: flex;
  align-items: center;       /* centreert logo verticaal */
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 100%;              /* logo vult de headerhoogte */
  max-height: 140px;          /* bepaal hoe groot het logo mag zijn */
  width: auto;
  display: block;
}

.pulse-dot{
  position:absolute;
  inset:0;
  margin:auto;
  width:14px;
  height:14px;
  background:rgba(79,124,255,.45);
  border-radius:50%;
  animation:pulseOut 1.75s ease-out infinite;
  z-index:-1;
}

.pulse-dot::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:rgba(79,124,255,.35);
  filter:blur(8px);
}

@keyframes pulseOut{
  0%{
    transform:scale(1);
    opacity:.9;
  }
  70%{
    transform:scale(12);
    opacity:.15;
  }
  100%{
    transform:scale(14);
    opacity:0;
  }
}

.faq-section {
  font-family: 'Inter', sans-serif;
  padding: 100px 20px;
  background: #f8fafc;
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 16px;
  color: #64748b;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

/* hover shadow */
.faq-item:hover {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.faq-question svg {
  transition: transform 0.2s ease;
}

/* ultra-smooth, fast */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  transition: max-height 0.22s ease, padding 0.22s ease;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 26px 22px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* CTA aligned with FAQ width */
.faq-cta {
  max-width: 720px;            /* EXACT gelijk aan .faq-list */
  margin: 48px auto 0;
  border-radius: 16px;
  overflow: hidden;
  background-image: url("images/bedrijf-achtergrond.jpg"); /* jouw image */
  background-size: cover;
  background-position: center;
}

/* Blue overlay */
.faq-cta-inner {
  background: linear-gradient(
    90deg,
    rgba(59, 91, 246, 0.95),
    rgba(96, 140, 255, 0.9)
  );
  padding: 56px 32px;
  text-align: center;
  color: #ffffff;
}

/* Title */
.faq-cta-inner h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.faq-cta-inner p {
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Button */
.faq-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
}

.features-section {
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.features-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.features-header p {
  font-size: 16px;
  color: #64748b;
}

/* GRID */
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 32px 28px;
  transform: translateY(30px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* visible (scroll) */
.feature-card.visible {
  transform: translateY(0);
  opacity: 1;
}

/* hover */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
  border-color: #c7d2fe;
}

/* ICON */
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4f6cff, #6a8bff, #4f6cff);
  background-size: 200% 200%;
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease, background-position 0.4s ease;
}

/* dynamic gradient */
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  background-position: right center;
}

/* TEXT */
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* =========================
   SUPPORT SECTION
========================= */

.support-section {
  padding: 90px 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* LEFT */
.support-left h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.support-left p {
  max-width: 420px;
  color: #667085;
  line-height: 1.6;
  margin-bottom: 32px;
}

.support-links {
  list-style: none;
  padding: 0;
}

.support-links li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.support-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101828;
  font-size: 16px;
}

.support-links a {
  text-decoration: none;
  color: #101828;
  font-weight: 500;
}

/* RIGHT */
.support-right h3 {
  font-size: 20px;
  margin-bottom: 24px;
}

/* FORM */
.support-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.support-field label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #344054;
}

.support-field input,
.support-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #e4e7ec;
  outline: none;
}

.support-field textarea {
  min-height: 140px;
  resize: none;
}

/* FOOTER */
.support-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.support-code {
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
}

.support-code-inputs span {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e4e7ec;
}

/* BUTTON */
.support-footer button {
  margin-left: auto;
  padding: 10px 26px;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  background: #ffffff;
  font-weight: 500;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .support-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 40, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  animation: popIn 0.3s ease;
}

.modal-box i {
  font-size: 48px;
  color: #22c55e;
  margin-bottom: 16px;
}

.modal-box h3 {
  margin-bottom: 8px;
}

.modal-box p {
  color: #667085;
  margin-bottom: 24px;
}

.modal-box button {
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  background: #4f46e5;
  color: #fff;
  cursor: pointer;
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


:root {
  --green:#22c55e;
  --red:#ef4444;
  --border:#e5e7eb;
  --bg:#f8fafc;
  --shadow:0 12px 28px rgba(0,0,0,.15);
}

* { box-sizing:border-box; }

.network {
  padding: 68px 20px;              /* iets minder hoog */
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
}

.network h2 {
  font-size: 36px;
  font-weight: 700;
}

.network p {
  max-width: 720px;
  margin: 12px auto 36px;
  margin-bottom: 32px;          /* compacter */
  color: #6b7280;
}

/* MAP KADER – KLEINER & STRAKKER */
.map-box {
  position: relative;
  max-width: 1080px;               /* 👈 kleiner dan 1200 */
  margin: 0 auto;
  padding: 22px 22px 60px;         /* minder padding */
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;             /* iets minder rond */
  overflow: hidden;
}

/* MAP – MOOI AFGESLOTEN */
.map-img {
  width: 100%;
  display: block;
  opacity: 0.9;
  transform: scale(1.015);          /* minder zoom */
  transform-origin: center;
}

.marker {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 5;
}

.marker img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.marker::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
  z-index: -1;
}

.marker.available::after { background: rgba(34,197,94,.90); }
.marker.coming::after    { background: rgba(239,68,68,.90); }

@keyframes pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(3); opacity: 0; }
}

.info-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 20;
}

.info-card.show {
  opacity: 1;
  transform: translateY(0);
}

.info-card img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.info-text strong { font-size: 14px; }
.info-text span   { font-size: 12px; color:#6b7280; }

.legend {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  padding: 6px 12px;         
  border-radius: 10px;        

  font-size: 13px;
  font-weight: 500;
  color: #111827;

  box-shadow: none;          
}


.dot {
  width: 7px;              
  height: 7px;
  border-radius: 50%;
}

.dot.green { background: var(--green); }
.dot.red   { background: var(--red); }

.us { top: 31.3%; left: 25.5%; }
.uk { top: 18.3%; left: 47.8%; }
.nl { top: 19.6%; left: 49.8%; }
.de { top: 24.5%; left: 49.7%; }
.pl { top: 22.2%; left: 51.7%; }
.tr { top: 31.3%; left: 60.5%; }

/* dropdown container */
.lang-dropdown{
  position:relative;
}

.logo a {
  display: inline-block;
}

.logo img {
  cursor: pointer;
}

/* knop */
.lang-btn{
  display:flex;
  align-items:center;
  gap:8px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:14px;
  color:#0f172a;
}

/* vlag-stijl zoals screenshot */
.lang-flag{
  width:20px;
  height:14px;
  object-fit:cover;
  border-radius:4px;
  display:block;
}

/* menu */
.lang-menu{
  position:absolute;
  top:120%;
  right:0;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:10px;
  min-width:180px;
  padding:6px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:none;
  z-index:1000;
}

.lang-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:8px;
  font-size:14px;
  color:#0f172a;
  text-decoration:none;
}

.lang-menu a:hover{
  background:#f1f5f9;
}

/* ===== FOOTER BASE ===== */
.nexoranode-footer{
  background:#ffffff;
  border-top:1px solid #eef2f7;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Noto Sans",sans-serif;
  color:#0f172a;
}

.nexoranode-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:56px 64px 40px; /* exact spacing foto 2 */
}

/* ===== TOP ===== */
.nexoranode-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:96px;  
}

/* ===== BRAND ===== */
.nexoranode-brand{
  max-width:420px;
}

.nexoranode-logo{
  display:inline-flex;
  align-items:center;
  line-height:0;
}

.nexoranode-logo-img{
  height:34px;          /* ✔️ alleen logo schaalt */
  width:auto;
  display:block;
}

.nexoranode-desc{
  margin:18px 0 22px;
  font-size:14px;
  line-height:1.7;
  color:#475569;
}

/* ===== SOCIAL ICONS ===== */
.nexoranode-social{
  display:flex;
  gap:14px;
}

.nexoranode-social a{
  width:38px;
  height:38px;
  border-radius:999px;
  background:#f1f5f9;
  display:grid;
  place-items:center;
  text-decoration:none;
}

.nexoranode-social a i{
  font-size:16px;
  color:#64748b;
  transition:color .18s ease;
}

.nexoranode-social a:hover i{
  color:#2563eb; /* alleen icoon */
}

/* ===== COLUMNS ===== */
.nexoranode-cols {
  display: flex;
  gap: 112px;
  margin-top: 35px; 
}

.nexoranode-col h4{
  font-size:14px;
  font-weight:700;
  margin:0 0 18px;
  color:#0f172a;
}

.nexoranode-col a{
  display:block;
  font-size:14px;
  margin-bottom:14px;
  color:#475569;
  text-decoration:none;
}

.nexoranode-col a:hover{
  color:#2563eb;
}

/* ===== DIVIDER ===== */
.nexoranode-divider{
  height:1px;
  background:#eef2f7;
  margin:44px 0 18px;
}

/* ===== BOTTOM ===== */
.nexoranode-bottom{
  display:flex;
  flex-direction:column; /* payments onder copyright */
  align-items:flex-start;
  gap:16px;
}

.nexoranode-copy{
  font-size:13px;
  color:#64748b;
}

/* Zorg dat dropdown boven content ligt */
header { position: relative; z-index: 1000; }

.nav-item.services { position: relative; }

/* Hover-bridge: voorkomt dat menu sluit als je naar beneden beweegt */
.nav-item.services::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:26px;
}

/* Dropdown */
.services-dropdown.large{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(16px);

  width:780px;
  height:360px;

  background:#fff;
  border-radius:18px;
  box-shadow:0 40px 90px rgba(0,0,0,.12);

  display:flex;
  opacity:0;
  visibility:hidden;

  transition:opacity .3s ease, transform .3s ease;
  z-index:999;
}

/* Open houden bij hover op parent OF dropdown */
.nav-item.services:hover .services-dropdown.large{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

/* Tabs inputs verbergen */
.svc-tab{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* Links */
.services-sidebar{
  width:34%;
  background:#f8fafc;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* Sidebar items als label (klikbaar) */
.sidebar-group{
  border-radius:14px;
  padding:14px;
  cursor:pointer;
  transition:background .2s ease;
  display:block;
}

.sidebar-group:hover{
  background:#eef2ff;
}

.sidebar-main{
  position:relative;
  font-weight:600;
  color:#1e293b;
}

/* Schuine icon */
.sidebar-icon{
  position:absolute;
  right:0;
  top:-4px;
  font-size:38px;
  color:rgba(0,0,0,.08);
  transform:rotate(-15deg);
}

/* Binnenkort badge */
.badge-soon{
  margin-left:8px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  padding:3px 8px;
  border-radius:999px;
}

/* Rechts */
.services-content{
  width:66%;
  padding:28px;
  display:flex;
  align-items:center;
}

/* Panels */
.content-panel{
  display:none;
  flex-direction:column;
  gap:14px;
  width:100%;
  animation:fadeRight .25s ease;
}

/* Cards */
.service-card{
  background:#f8fafc;
  border-radius:14px;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.service-card strong{
  font-size:15px;
  color:#0f172a;
}

.price{
  font-weight:600;
  color:#334155;
}

/* Panel switching (CSS-only) */
#tab-vps:checked ~ .services-content .panel-vps{ display:flex; }
#tab-minecraft:checked ~ .services-content .panel-minecraft{ display:flex; }
#tab-fivem:checked ~ .services-content .panel-fivem{ display:flex; }
#tab-discord:checked ~ .services-content .panel-discord{ display:flex; }
#tab-webhosting:checked ~ .services-content .panel-webhosting{ display:flex; }

/* Actieve sidebar highlight */
#tab-vps:checked ~ .services-sidebar label[for="tab-vps"],
#tab-minecraft:checked ~ .services-sidebar label[for="tab-minecraft"],
#tab-fivem:checked ~ .services-sidebar label[for="tab-fivem"],
#tab-discord:checked ~ .services-sidebar label[for="tab-discord"],
#tab-webhosting:checked ~ .services-sidebar label[for="tab-webhosting"]{
  background:#eef2ff;
}

/* Anim */
@keyframes fadeRight{
  from { opacity:0; transform:translateX(10px); }
  to   { opacity:1; transform:translateX(0); }
}

/* ================= PRICING SECTION (SCOPED) ================= */

.pricing-section{
  max-width:1200px;
  margin:80px auto;
  padding:0 24px;
}

.pricing-section .pricing-header{
  text-align:center;
  margin-bottom:28px;
}

.pricing-section .pricing-header h2{
  font-size:32px;
  font-weight:700;
}

.pricing-section .pricing-header p{
  color:#64748b;
}

/* TOP BAR */
.pricing-section .pricing-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:32px;
}

.pricing-section .location-switcher{
  display:flex;
  gap:8px;
  background:#f1f5f9;
  padding:6px;
  border-radius:999px;
}

.pricing-section .loc{
  border:none;
  background:transparent;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
}

.pricing-section .loc.active{
  background:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  font-weight:600;
}

.pricing-section .loc.disabled{
  opacity:.4;
  cursor:not-allowed;
}

/* AI */
.pricing-section .ai-support{
  display:flex;
  gap:12px;
  align-items:center;
  background:#f1f5f9;
  padding:10px 14px;
  border-radius:14px;
}

.pricing-section .ai-icon{
  width:36px;
  height:36px;
  border-radius:10px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* GRID */
.pricing-section .pricing-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

/* CARD */
.pricing-section .product-card{
  background:#fff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  position:relative;
}

.pricing-section .product-card.popular{
  border:2px solid #4f7cff;
}

/* BADGE */
.pricing-section .popular-badge{
  position:absolute;
  top:14px;
  right:14px;
  background:#4f7cff;
  color:#fff;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  display:flex;
  gap:6px;
}

/* HEADER CARD */
.pricing-section .card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}

.pricing-section .server-icon{
  width:42px;
  height:42px;
  border-radius:10px;
  background:#0f172a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* STATUS */
.pricing-section .stock{
  font-size:13px;
  color:#16a34a;
  display:flex;
  align-items:center;
  gap:6px;
}

.pricing-section .pulse{
  width:8px;
  height:8px;
  background:#16a34a;
  border-radius:50%;
  position:relative;
}

.pricing-section .pulse::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:rgba(22,163,74,.35);
  animation:pulse 1.8s infinite;
}

@keyframes pulse{
  to{transform:scale(3);opacity:0}
}

/* TEXT */
.pricing-section .sub{
  font-size:13px;
  color:#64748b;
  margin-bottom:14px;
}

.pricing-section .price{
  font-size:32px;
  font-weight:700;
  color:#4f7cff;
  margin-bottom:16px;
}

.pricing-section .price span{
  font-size:14px;
  color:#64748b;
}

/* SPECS */
.pricing-section .specs{
  list-style:none;
  padding:0;
  margin-bottom:18px;
}

.pricing-section .specs li{
  display:flex;
  gap:10px;
  font-size:14px;
  margin-bottom:8px;
}

.pricing-section .specs i{
  color:#4f7cff;
}

/* BUTTON */
.pricing-section .order-btn{
  width:100%;
  padding:12px;
  border:none;
  border-radius:12px;
  background:#4f7cff;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.25s;
}

.pricing-section .order-btn:hover{
  background:#3b63f3;
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(79,124,255,.35);
}

/* FOOTER */
.pricing-section .deploy{
  margin-top:10px;
  font-size:13px;
  color:#475569;
  display:flex;
  justify-content:center;
  gap:6px;
}

.location-switcher .loc{
  display:flex;
  align-items:center;
  gap:8px;
}

.location-switcher img{
  width:20px;
  height:14px;
  border-radius:3px;
  object-fit:cover;
  box-shadow:0 1px 3px rgba(0,0,0,.15);
}


/* ================= HARDWARE SECTION ================= */

.hardware-section{
  margin:80px auto;
  padding:40px 24px;
  background:#f8fafc;
  border-radius:24px;
  max-width:1200px;
}

.hardware-inner{
  text-align:center;
}

.hardware-inner h2{
  font-size:26px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
}

.hardware-inner p{
  font-size:14px;
  color:#64748b;
  margin-bottom:32px;
}

/* CARDS */
.hardware-cards{
  display:flex;
  justify-content:center;
  gap:24px;
}

/* CARD */
.hardware-card{
  background:#fff;
  border-radius:16px;
  padding:20px 24px;
  display:flex;
  align-items:center;
  gap:18px;
  min-width:360px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.hardware-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/* AMD EXTRA HOVER (zoals screenshot) */
.hardware-card.amd:hover .hardware-logo{
  transform:scale(1.08);
}

/* LOGO */
.hardware-logo{
  width:64px;
  height:64px;
  border-radius:14px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.1);
  transition:transform .35s ease;
}

.hardware-logo img{
  max-width:48px;
  max-height:48px;
}

/* INFO */
.hardware-info{
  text-align:left;
}

.hardware-info h3{
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
}

.gen{
  font-size:12px;
  color:#64748b;
  display:block;
  margin-bottom:10px;
}

/* TAGS */
.hardware-tags{
  display:flex;
  gap:10px;
}

.hardware-tags span{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background:#eef2ff;
  color:#4f7cff;
  font-weight:600;
}

/* Fade in animatie */
.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Jobs */
.jobs-section {
  padding: 80px 20px;
  background: #f4f6fb;
}

.jobs-container {
  max-width: 900px;
  margin: auto;
}

.job-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.job-header {
  width: 100%;
  padding: 22px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.job-title {
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
}

.job-title i {
  color: #4f46e5;
}

.job-arrow {
  transition: transform 0.3s;
}

.job-card.active .job-arrow {
  transform: rotate(180deg);
}

.job-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.job-card.active .job-content {
  max-height: 1000px;
  padding: 24px;
}

.apply-btn {
  margin-top: 20px;
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.apply-btn:hover {
  background: #4338ca;
}

/* MODAL */
.apply-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.apply-modal.active {
  display: flex;
}

.apply-box {
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  animation: fadeInUp 0.4s ease;
}

.apply-box h3 {
  margin-top: 0;
}

.apply-box label {
  display: block;
  margin-top: 14px;
  font-weight: 500;
}

.apply-box input,
.apply-box textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #d0d5dd;
}

.apply-box button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  position: absolute;
  right: 18px;
  top: 14px;
  cursor: pointer;
}

.jobs-section {
  padding: 80px 20px;
  background: #f4f6fb;
}

.jobs-container {
  max-width: 900px;
  margin: 0 auto;
}

.jobs-container h2 {
  font-size: 36px;
  color: #101828;
  margin-bottom: 10px;
}

.jobs-intro {
  color: #475467;
  margin-bottom: 40px;
}

.job-card {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.job-header {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.job-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #101828;
}

.job-title i {
  color: #4f46e5;
  font-size: 20px;
}

.job-arrow {
  color: #667085;
  transition: transform 0.3s ease;
}

.job-card.active .job-arrow {
  transform: rotate(180deg);
}

.job-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.job-card.active .job-content {
  max-height: 1000px;
  padding: 24px;
}

.job-content h4 {
  margin-top: 0;
  color: #101828;
}

.job-content ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.job-content li {
  margin-bottom: 8px;
  color: #475467;
}

.jobs-section {
  padding: 80px 20px;
  background: #f4f6fb;
}

.jobs-container {
  max-width: 900px;
  margin: auto;
}

.job-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.job-header {
  width: 100%;
  padding: 22px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.job-title {
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
}

.job-title i {
  color: #4f46e5;
}

.job-arrow {
  transition: transform 0.3s ease;
}

.job-card.active .job-arrow {
  transform: rotate(180deg);
}

.job-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.job-card.active .job-content {
  max-height: 1000px;
  padding: 24px;
}

.apply-btn {
  margin-top: 20px;
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.apply-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.apply-modal.active {
  display: flex;
}

.apply-box {
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  position: absolute;
  right: 18px;
  top: 14px;
  cursor: pointer;
}

/* Fade-in animatie */
.fade-in {
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* File upload */
.apply-box input[type="file"] {
  margin-top: 6px;
  padding: 8px;
  border-radius: 6px;
  border: 1px dashed #d0d5dd;
  background: #f9fafb;
}

/* SUCCESS MODAL */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.success-modal.active {
  display: flex;
}

.success-box {
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  max-width: 420px;
  text-align: center;
}

.success-box i {
  font-size: 48px;
  color: #22c55e;
  margin-bottom: 12px;
}

.success-box h3 {
  margin-top: 0;
  color: #101828;
}

.success-box p {
  color: #475467;
}

.success-box button {
  margin-top: 20px;
  padding: 12px 20px;
  border: none;
  background: #4f46e5;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* CV Upload */
.cv-upload {
  margin-top: 6px;
}

.cv-upload input[type="file"] {
  display: none;
}

.cv-box {
  border: 2px dashed #d0d5dd;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: #f9fafb;
  transition: all 0.25s ease;
}

.cv-box i {
  font-size: 32px;
  color: #4f46e5;
  margin-bottom: 10px;
  display: block;
}

.cv-text {
  color: #101828;
  font-size: 15px;
  line-height: 1.4;
}

.cv-hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #667085;
}

.cv-box:hover {
  background: #f4f6fb;
  border-color: #4f46e5;
}

.cv-file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #475467;
}

/* =========================
   JOB HEADER LAYOUT
========================= */
.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

/* Titel links */
.job-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #101828;
}

/* Rechts: badge + pijl */
.job-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   BADGES
========================= */
.job-badge {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  white-space: nowrap;
}

/* Binnenkort */
.job-badge.soon {
  background: #dc2626;
}

/* Open */
.job-badge.open {
  background: #1e78c8;
}

/* =========================
   PIJL
========================= */
.job-arrow {
  color: #667085;
  transition: transform 0.3s ease;
}

.job-card.active .job-arrow {
  transform: rotate(180deg);
}

/* =========================
   BINNENKORT KAART
========================= */
.job-card.coming-soon {
  opacity: 0.7;
}

.job-card.coming-soon .job-header {
  cursor: default;
}

.job-card.coming-soon .job-arrow {
  display: none;
}

/* Verwijder standaard underline */
.support-links a {
  position: relative;
  text-decoration: none;
}

/* Custom underline */
.support-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #4f46e5; /* Nexora blauw */
  transition: width 0.25s ease;
}

/* Hover = underline animatie */
.support-links li:hover a::after {
  width: 100%;
}

/* Tekstkleur hover */
.support-links li:hover a {
  color: #4f46e5;
}

/* Social icons hover effect */
.support-links li:hover .support-icon {
  background: #eef2ff;            /* licht blauw/grijs */
  transform: translateY(-2px);    /* subtiele lift */
}

.support-icon {
  transition: 
    background 0.2s ease,
    transform 0.2s ease;
}

/* Icon kleur hover */
.support-links li:hover i {
  color: #4f46e5;                 /* Nexora-achtig blauw */
  transition: color 0.2s ease;
}

/* Link hover */
.support-links a:hover {
  text-decoration: none;
}

.legal-page {
  background: #f8fafc;
  padding: 100px 20px;
  font-family: Inter, system-ui, sans-serif;
  color: #0f172a;
}

.legal-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  padding: 70px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.legal-wrapper h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 40px;
}

.legal-intro {
  font-size: 16px;
  margin-bottom: 60px;
  color: #334155;
}

.legal-wrapper h2 {
  font-size: 21px;
  margin-top: 50px;
  margin-bottom: 14px;
}

.legal-wrapper p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #334155;
}

/* RESET */
#chat-window, #chat-launcher, #chat-welcome, #chat-window * {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

/* LAUNCHER */
#chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #1e78c8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,.3);
  z-index: 99999;
}

.chat-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #32CD32;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* WELCOME */
#chat-welcome {
  position: fixed;
  bottom: 96px;
  right: 24px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  box-shadow: 0 16px 35px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(10px);
  transition: .35s;
  z-index: 99998;
}

#chat-welcome.show {
  opacity: 1;
  transform: translateY(0);
}

/* WINDOW */
#chat-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 340px;
  height: 520px;
  pointer-events: none;
  z-index: 99999;
}

#chat-window.open {
  pointer-events: auto;
}

.chat-shell {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(.95);
  transition: .45s cubic-bezier(.22,.61,.36,1);
}

#chat-window.open .chat-shell {
  opacity: 1;
  transform: none;
}

/* HEADER */
.chat-header {
  background: linear-gradient(135deg,#1e78c8,#2563eb);
  color: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

#chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* BODY */
.chat-body {
  flex: 1;
  padding: 16px;
  background: #f9fafb;
  overflow-y: auto;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 14px;
  font-size: 13.5px;
  animation: fadeIn .3s ease;
}

.chat-msg.bot {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.chat-msg.user {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  margin-left: auto;
  animation: fadeIn .3s ease;
}


.time {
  font-size: 11px;
  color: #64748b;
  margin-top: 5px;
}

/* TYPING */
#typing {
  display: none;
  padding: 8px 16px;
}

#typing span {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  animation: blink 1.4s infinite both;
}

/* INPUT */
.chat-input {
  display: flex;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
}

.chat-input input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 10px 14px;
}

.chat-input button {
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border: none;
  border-radius: 50%;
  background: #1e78c8;
  color: #fff;
  cursor: pointer;
}

/* DISCLAIMER */
.chat-disclaimer {
  font-size: 11px;
  text-align: center;
  padding: 6px;
  color: #64748b;
}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(6px);}
  to {opacity:1;}
}

@keyframes blink {
  0%{opacity:.2}20%{opacity:1}100%{opacity:.2}
}

.chat-popular {
  margin-top: 14px;
}

.chat-popular p {
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.chat-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-questions button {
  background: #ecfeff;
  border: 1px solid #67e8f9;
  color: #0369a1;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
}

.chat-questions button:hover {
  background: #cffafe;
  transform: translateY(-1px);
}

/* Avatar icon in header */
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar i {
  color: #ffffff;
  font-size: 16px;
}

/* Send button icon */
#chat-send i {
  font-size: 16px;
  color: #ffffff;
}

/* Launcher icon */
#chat-launcher i {
  font-size: 22px;
  color: #ffffff;
}

#chat-window .fa,
#chat-window .fa-solid,
#chat-window .fa-regular {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* =========================================================
   📱 NEXORANODE – MOBILE UX LAYER (PROFESSIONAL)
   Android + iOS
========================================================= */

/* ===== GLOBAL MOBILE FIXES ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

/* ===============================
   TABLET & MOBILE ≤ 900px
================================ */
@media (max-width: 900px) {

  /* ===== HERO ===== */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 16px 32px;
    gap: 28px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons button,
  .hero-buttons a {
    width: 100%;
  }

  /* ===== FEATURES BOVEN PRODUCTEN (DDoS / UPTIME / SUPPORT) ===== */
  .features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 32px auto 48px;
  }

  .feature {
    justify-content: flex-start;
    font-size: 14px;
    padding: 18px;
  }

  /* ===== PRICING TOP BAR ===== */
  .pricing-section .pricing-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  /* ===== LANDEN / LOCATIES ===== */
  .pricing-section .location-switcher {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    width: 100%;
  }

  .pricing-section .loc {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 14px;
  }

  /* ===== PRICING CARDS ===== */
  .pricing-section .pricing-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* ===== HARDWARE ===== */
  .hardware-cards {
    flex-direction: column;
    gap: 18px;
  }

  .hardware-card {
    width: 100%;
    min-width: unset;
  }

  /* ===== SUPPORT ===== */
  .support-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ===== FAQ ===== */
  .faq-section {
    padding: 64px 16px;
  }

  /* ===== CHAT ===== */
  #chat-window {
    left: 12px;
    right: 12px;
    width: auto;
    height: 82vh;
    bottom: 76px;
  }

  #chat-launcher {
    right: 16px;
    bottom: 16px;
  }
}

/* ===============================
   SMARTPHONES ≤ 600px
================================ */
@media (max-width: 600px) {

  /* ===== TYPOGRAFIE (NIET TE GROOT) ===== */
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  p  { font-size: 15px; }

  /* ===== FEATURES ===== */
  .features {
    padding: 0 12px;
  }

  /* ===== PRICING ===== */
  .pricing-section {
    padding: 0 14px;
  }

  /* ===== MAP ===== */
  .map-box {
    padding: 14px;
  }

  .legend {
    flex-direction: column;
    gap: 8px;
  }

  /* ===== FOOTER (PROFESSIONAL STACK) ===== */
  .nexoranode-wrap {
    padding: 48px 20px 32px;
  }

  .nexoranode-top {
    flex-direction: column;
    gap: 40px;
  }

  .nexoranode-brand {
    max-width: 100%;
  }

  .nexoranode-cols {
    flex-direction: column;
    gap: 28px;
  }

  .nexoranode-col h4 {
    margin-bottom: 12px;
  }

  .nexoranode-col a {
    margin-bottom: 10px;
  }

  .nexoranode-bottom {
    gap: 12px;
  }

  .nexoranode-copy {
    font-size: 12px;
  }

  /* ===== INPUT ZOOM FIX (iOS) ===== */
  input, textarea, select, button {
    font-size: 16px !important;
  }
}

/* ===============================
   EXTRA SAFETY – TOUCH DEVICES
================================ */
@media (hover: none) and (pointer: coarse) {
  * {
    max-width: 100%;
  }
}

/* =========================================================
   📱 MOBILE FIX – LEGEND ONDER MAP (2 KADERS)
   Desktop blijft exact hetzelfde
========================================================= */

@media (max-width: 900px) {

  /* MAP krijgt ruimte onder zich */
  .map-box {
    padding-bottom: 24px;
  }

  /* LEGEND LOSKOPPELEN VAN MAP */
  .legend {
    position: static !important;     /* 👈 HAALT HEM UIT DE MAP */
    transform: none !important;
    margin: 16px auto 0;
    padding: 0 16px;

    display: grid;
    grid-template-columns: 1fr 1fr;  /* 👈 2 naast elkaar */
    gap: 12px;

    width: 100%;
    max-width: 420px;
  }

  /* LEGEND KAARTEN */
  .legend .pill {
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 12px;             /* 👈 geen ovaal */
    font-size: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }

  /* DOTS */
  .legend .dot {
    width: 8px;
    height: 8px;
  }
}

/* ===============================
   SMARTPHONES ≤ 600px
================================ */
@media (max-width: 600px) {

  .legend {
    grid-template-columns: 1fr 1fr;  /* blijft 2 naast elkaar */
    gap: 10px;
  }

  .legend .pill {
    font-size: 13.5px;
    padding: 12px;
  }
}

/* =========================================================
   📱 MOBILE FIX – LANDEN ONDER MAP (2 KADERS)
   Desktop blijft exact hetzelfde
========================================================= */

/* ===============================
   TABLET & MOBIEL ≤ 900px
================================ */
@media (max-width: 900px) {

  /* ===============================
     MAP CONTAINER
  ============================== */
  .map-box {
    margin-bottom: 24px;
  }

  /* ===============================
     LANDEN ONDER MAP
  ============================== */
  .pricing-section .location-switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* 👈 2 naast elkaar */
    gap: 12px;
    padding: 0 16px 48px;
    background: none;
  }

  /* LAND KAART */
  .pricing-section .loc {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;             /* 👈 strak, geen ovaal */
    font-size: 14px;
    justify-content: flex-start;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }

  /* BESCHIKBAAR */
  .pricing-section .loc.active {
    font-weight: 600;
  }

  /* NIET BESCHIKBAAR */
  .pricing-section .loc.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-radius: 14px;             /* 👈 FIX ovaal */
  }

  /* ===============================
     PRICING CARDS
  ============================== */
  .pricing-section .pricing-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* ===============================
     FEATURES ONDER MAP (2 NAAST ELKAAR)
  ============================== */
  .network-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 16px 48px;
  }

  .network-features .feature {
    padding: 18px;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }
}

/* ===============================
   SMARTPHONES ≤ 600px
================================ */
@media (max-width: 600px) {

  /* LANDEN – BLIJVEN 2 NAAST ELKAAR */
  .pricing-section .location-switcher {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .pricing-section .loc {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  /* FEATURES ONDER MAP */
  .network-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .network-features .feature {
    line-height: 1.4;
  }
}

/* ===============================
   📱 MOBILE HAMBURGER MENU
================================ */

/* Hamburger knop (verborgen op desktop) */
.hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #0f172a;
  border-radius: 4px;
  transition: 0.35s ease;
}

/* Hamburger animatie */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  padding-top: 20px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.mobile-nav a {
  font-size: 18px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
}

.mobile-section strong {
  font-size: 14px;
  color: #64748b;
  margin-top: 10px;
}

.mobile-login {
  margin-top: 24px;
  padding: 14px;
  background: #2563eb;
  color: #fff !important;
  text-align: center;
  border-radius: 14px;
  font-weight: 600;
}

/* ===============================
   📱 BREAKPOINT
================================ */
@media (max-width: 900px) {

  .main-nav,
  .header-right {
    display: none; /* desktop items weg */
  }

  .hamburger {
    display: flex;
  }
}

/* ==========================================
   🔒 DESKTOP DEFAULT (NIETS ZICHTBAAR)
========================================== */
.hamburger,
.mobile-menu {
  display: none;
}

/* ==========================================
   📱 MOBILE HEADER + MENU
========================================== */
@media (max-width: 900px) {

  /* ===== HEADER (STABIEL) ===== */
  header {
    position: fixed;        /* ❗️ GEEN sticky */
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: #ffffff;
    z-index: 1200;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  .header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Desktop items weg */
  .main-nav,
  .header-right {
    display: none !important;
  }

  /* ===== HAMBURGER ===== */
  .hamburger {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1300;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #0f172a;
    border-radius: 4px;
    transition: 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 72px;              /* exact onder header */
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 1100;

    transform: translateY(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-nav {
    padding: 28px 22px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-link {
    font-size: 17px;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
  }

  .mobile-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
  }

  .mobile-link.muted {
    color: #94a3b8;
  }

  .mobile-login {
    margin-top: 12px;
    padding: 14px;
    background: #2563eb;
    color: #ffffff;
    text-align: center;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
  }
}

/* ===== BODY LOCK ===== */
body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

.mobile-menu.open {
  transform: translateY(0);
}

/* ===== BINNENKORT BADGE ===== */
.badge-soon {
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: #dc2626; /* rood */
  border-radius: 999px;
  line-height: 1.4;
  vertical-align: middle;
}

/* Uitgeschakelde link styling */
.mobile-link.disabled {
  color: #94a3b8;
  pointer-events: none;
  cursor: default;
}

/* ===============================
   📱 MOBILE – TERMINAL HOGER MAKEN
================================ */
@media (max-width: 900px) {

  .terminal-body {
    padding: 28px 20px;   /* meer ruimte binnenin */
    min-height: 300px;    /* ⬅️ DIT maakt het venster langer */
  }

  .terminal-body pre {
    line-height: 1.6;     /* tekst luchtiger */
    font-size: 13px;      /* beter leesbaar op mobiel */
  }
}

@media (max-width: 900px) {

  .hero,
  .hero-section,
  .page-hero {
    padding-top: 95px; 
  }

}

/* ===============================
   📱 MOBILE – FIX VERZENDEN KNOP
================================ */
@media (max-width: 900px) {

  button,
  input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
  }

  .support-footer button,
  button[type="submit"],
  .contact-form button {
    color: #0f172a !important;        /* tekst zichtbaar */
    background: #ffffff !important;   /* contrast */
    font-size: 16px !important;       /* iOS minimum */
    font-weight: 600;
    line-height: 1.2;
    padding: 14px 24px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.service-card-cta {
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: #4f7cff;
  border: 1.5px dashed #d7def0;
  background: #f9fbff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-card-cta .price {
  font-size: 16px;
}

.service-card-cta:hover {
  border-color: #4f7cff;
  background: #f2f6ff;
}

.service-card-cta {
  border-style: solid; /* i.p.v. dashed */
}

/* =========================
   COMING SOON BADGE
========================= */

.hardware-card {
  position: relative;
  overflow: hidden;
}

.coming-badge {
  position: absolute;
  top: 10px;
  right: 8px;

  background: linear-gradient(135deg, #ff4d4d, #ff0000);
  color: #fff;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;

  padding: 6px 14px;
  border-radius: 999px;

  box-shadow:
    0 6px 18px rgba(255, 0, 0, 0.35);

  z-index: 10;
}

/* Alleen zichtbaar bij coming-soon */
.hardware-card:not(.coming-soon) .coming-badge {
  display: none;
}

.hardware-card.coming-soon {
  opacity: 0.95;
}

.hardware-card.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(1px);
  pointer-events: none;
}


.nn-servers {
  padding: 80px 0;
  background: #f7f9fc;
}

.nn-servers-header {
  text-align: center;
  margin-bottom: 40px;
}

.nn-servers-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.nn-servers-header p {
  color: #6b7280;
  margin-top: 8px;
}

.nn-servers-table {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
}

.nn-server-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.3fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #eef1f6;
  transition: background .2s ease;
}

.nn-server-row:hover {
  background: #f1f5ff;
}

.nn-server-name strong {
  font-size: 15px;
}

.nn-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.nn-location img {
  width: 18px;
  height: 12px;
}

.nn-spec {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.nn-spec i {
  color: #2563eb;
  font-size: 18px;
}

.nn-spec span {
  color: #374151;
}

.nn-spec div span {
  display: block;
  font-size: 13px;
  color: #6b7280;
}

.nn-setup {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

.setup-48h {
  background: #fff4e5;
  color: #d97706;
}

.setup-instant {
  background: #ecfdf5;
  color: #059669;
}

.nn-price {
  font-size: 17px;
  font-weight: 700;
}

.nn-price span {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
}

.nn-location img {
  width: 20px;
  height: auto;
  border-radius: 4px;            
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}

@media (max-width: 900px) {

  .nn-servers {
    padding: 40px 16px;
  }

  .nn-servers-header h2 {
    font-size: 24px;
  }

  .nn-servers-header p {
    font-size: 14px;
  }

  .nn-server-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  /* Server naam + locatie */
  .nn-server-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nn-location {
    font-size: 13px;
  }

  /* Specs onder elkaar */
  .nn-spec {
    font-size: 14px;
  }

  .nn-spec i {
    font-size: 16px;
  }

  /* Setup + prijs samen */
  .nn-setup {
    margin-top: 4px;
  }

  .nn-price {
    font-size: 18px;
  }

  /* Bottom row: setup + prijs */
  .nn-server-row .nn-setup,
  .nn-server-row .nn-price {
    display: inline-block;
  }

  .nn-server-row .nn-price span {
    font-size: 13px;
  }

  /* Mooie scheiding tussen servers */
  .nn-server-row:not(:last-child) {
    border-bottom: 1px solid #eef1f6;
  }
}

@media (max-width: 900px) {
  .nn-server-row:active {
    background: #eaf0ff;
  }
}

/* Section */
.nn-mc-section {
  padding: 90px 16px;
  background: #f8fafc;
}

/* Header */
.nn-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.nn-section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
}

.nn-section-header p {
  font-size: 16px;
  color: #64748b;
}

/* Grid */
.nn-mc-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Card */
.nn-mc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nn-mc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(15,23,42,.12);
}

/* Image */
.nn-mc-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  image-rendering: pixelated;
}

/* Title & price */
.nn-mc-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.nn-price {
  font-size: 22px;
  font-weight: 800;
  color: #2563eb;
}

.nn-price span {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}

/* Highlight box */
.nn-mc-highlight {
  background: #f0fdf9;
  border: 1px solid #ccfbf1;
  border-radius: 14px;
  padding: 14px;
  margin: 20px 0;
}

.nn-mc-highlight div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #065f46;
  margin-bottom: 6px;
}

.nn-mc-highlight i {
  color: #059669;
}

/* Specs */
.nn-mc-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.nn-mc-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
}

.nn-mc-specs i {
  color: #2563eb;
  font-size: 15px;
}

/* Button */
.nn-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .2s ease;
}

.nn-btn-primary:hover {
  background: #1d4ed8;
}

/* Mobile */
@media (max-width: 600px) {
  .nn-mc-section {
    padding: 60px 14px;
  }
}

.nn-mc-section {
  padding: 80px 16px;
  background: #f8fafc;
}

.nn-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.nn-section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
}

.nn-section-header p {
  color: #64748b;
}

/* GRID */
.nn-mc-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* CARD */
.nn-mc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  display: flex;
  flex-direction: column;
}

/* HEADER */
.nn-mc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.nn-mc-header img {
  width: 56px;
  height: 56px;
  image-rendering: pixelated;
}

.nn-mc-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.nn-price {
  font-size: 20px;
  font-weight: 800;
  color: #2563eb;
}

.nn-price span {
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
}

/* HIGHLIGHT */
.nn-mc-highlight {
  background: #f0fdf9;
  border: 1px solid #ccfbf1;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.nn-mc-highlight div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #065f46;
  margin-bottom: 6px;
}

/* SPECS */
.nn-mc-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.nn-mc-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

.nn-mc-specs i {
  color: #2563eb;
}

/* BUTTON */
.nn-btn-primary {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.nn-btn-primary:hover {
  background: #1d4ed8;
}

/* SECTION */
.nn-compare-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.nn-compare-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.nn-compare-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
}

.nn-compare-header p {
  font-size: 16px;
  color: #64748b;
  margin-top: 10px;
}

/* CARD */
.nn-compare-card {
  max-width: 1150px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
  padding: 20px;
  overflow-x: auto;
}

/* TABLE */
.nn-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.nn-compare-table th,
.nn-compare-table td {
  padding: 18px 16px;
  text-align: center;
}

.nn-compare-table th:first-child,
.nn-compare-table td:first-child {
  text-align: left;
}

.nn-compare-table th {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  border-bottom: 1px solid #e5e7eb;
}

.nn-compare-table td {
  font-size: 15px;
  color: #0f172a;
  border-bottom: 1px solid #eef2f7;
}

/* CHECK & X BASE */
.nn-check,
.nn-xmark {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.nn-check i {
  color: #22c55e;
  font-size: 16px;
  z-index: 2;
}

.nn-xmark i {
  color: #ef4444;
  font-size: 16px;
  z-index: 2;
}

/* ANIMATED DOT */
.nn-check::before,
.nn-xmark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: nnPulse 2.6s ease-in-out infinite;
  z-index: 1;
}

.nn-check::before {
  background: rgba(34, 197, 94, 0.18);
}

.nn-xmark::before {
  background: rgba(239, 68, 68, 0.18);
}

@keyframes nnPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.25;
  }
  100% {
    transform: scale(0.75);
    opacity: 0.6;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .nn-compare-header h2 {
    font-size: 26px;
  }

  .nn-compare-table th,
  .nn-compare-table td {
    font-size: 14px;
    padding: 14px;
  }
}


.nn-bot-section {
  padding: 120px 20px;
  background: #f8fafc;
}

.nn-bot-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.nn-bot-inner h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.nn-bot-inner p {
  color: #475569;
  margin-bottom: 60px;
}

.nn-bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.nn-bot-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 42px 32px;
  box-shadow: 0 25px 60px rgba(15,23,42,.08);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.nn-bot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(15,23,42,.15);
}

/* Featured */
.nn-bot-card.featured {
  border: 2px solid #5865f2;
}

/* Icon top */
.nn-bot-icon {
  font-size: 44px;
  color: #5865f2;
  margin-bottom: 20px;
}

/* Badge */
.nn-bot-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Price */
.nn-bot-price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #5865f2;
  margin-bottom: 28px;
}

/* Specs */
.nn-bot-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.nn-bot-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}

.nn-bot-specs li i {
  color: #5865f2;
  font-size: 14px;
}

/* Buttons */
.nn-bot-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}

.nn-bot-btn:hover {
  background: #020617;
  transform: translateY(-2px);
}

.nn-bot-btn.primary {
  background: #5865f2;
}

.nn-bot-btn.primary:hover {
  background: #4752c4;
}

/* Animations */
.fade-in {
  animation: fadeIn .8s ease forwards;
}

.fade-up {
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nn-bot-icon.image {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nn-bot-icon.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nn-software-section {
  padding: 60px 20px 30px;
  background: #f8fafc;
}

.nn-software-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 14px;
}


/* pill */
.nn-software-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  height: 46px;
  padding: 0 18px;

  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;

  font-size: 14px;
  font-weight: 600;
  color: #0f172a;

  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);

  cursor: default;
  user-select: none;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

/* hover animatie */
.nn-software-pill:hover {
  transform: translateY(-3px);
  border-color: #6366f1;
  box-shadow: 0 14px 34px rgba(99, 102, 241, 0.18);
}

/* active (Paper) */
.nn-software-pill.is-active {
  border-color: #6366f1;
  box-shadow: 0 18px 42px rgba(99, 102, 241, 0.22);
}

/* icon base */
.nn-software-pill i {
  font-size: 15px;
}

/* icon kleuren */
.nn-software-pill.vanilla i   { color: #22c55e; }
.nn-software-pill.spigot i    { color: #f59e0b; }
.nn-software-pill.paper i     { color: #6366f1; }
.nn-software-pill.forge i     { color: #ef4444; }
.nn-software-pill.fabric i    { color: #8b5cf6; }
.nn-software-pill.bungee i    { color: #06b6d4; }
.nn-software-pill.velocity i  { color: #0ea5e9; }
.nn-software-pill.modpacks i  { color: #64748b; }

/* note */
.nn-software-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #475569;
}

/* ===============================
   📱 MOBILE – SOFTWARE SELECTIE
================================ */
@media (max-width: 640px) {

  .nn-software-section {
    padding: 40px 16px 24px;
  }

  .nn-software-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .nn-software-pill {
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 12px;
  }

  .nn-software-pill i {
    font-size: 14px;
  }

  .nn-software-note {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
    padding: 0 10px;
  }

}

.blue-text {
  background: linear-gradient(90deg, #3e6ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; 
}


/* ===============================
   BEDRIJFSINFO
================================ */
.nexoranode-company-info {
  margin: 14px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: #9ca3af;
}

.nexoranode-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nexoranode-info-item i {
  color: #6b7280;
  font-size: 14px;
}

/* ===============================
   FOOTER BOTTOM (KEY FIX)
================================ */
.nexoranode-bottom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 4px 4px;
  margin-top: -14px;
}


.nexoranode-wrap {
  max-width: 1200px;   /* of wat je site gebruikt */
  margin: 0 auto;
  width: 100%;
}


.nexoranode-copy,
.nexoranode-reviews {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nexoranode-reviews i {
  font-size: 13px;
  color: #9ca3af;
}


@media (max-width: 640px) {

  .nexoranode-bottom {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0 18px;
  }

  .nexoranode-copy,
  .nexoranode-reviews {
    font-size: 13px;
  }

  .nexoranode-reviews {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .nexoranode-bottom {
    align-items: center;
    text-align: center;
  }
}

.nn-cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

/* Cookie card */
.nn-cookie-popup {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 420px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 30px 80px rgba(15,23,42,.22);
  z-index: 9999;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: all .35s ease;
}

/* Header */
.nn-cookie-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.nn-cookie-header i {
  font-size: 18px;
  color: #2563eb;
}

.nn-cookie-header h3 {
  font-size: 18px;
  margin: 0;
  color: #0f172a;
}

/* Text */
.nn-cookie-text {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Options */
.nn-cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nn-cookie-option {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
}

.nn-cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.nn-cookie-option small {
  display: block;
  margin-left: 26px;
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.nn-cookie-option input {
  accent-color: #2563eb;
}

/* Actions */
.nn-cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.nn-cookie-btn {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.nn-cookie-btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.nn-cookie-btn.primary:hover {
  background: #1d4ed8;
}

.nn-cookie-btn.secondary {
  background: #e5e7eb;
  color: #0f172a;
}

.nn-cookie-btn.secondary:hover {
  background: #d1d5db;
}

.nn-cookie-btn.outline {
  grid-column: span 2;
  background: transparent;
  border: 1px solid #cbd5f5;
  color: #2563eb;
}

.nn-cookie-btn.outline:hover {
  background: #eff6ff;
}

/* Visible state */
.nn-cookie-visible .nn-cookie-popup {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nn-cookie-visible .nn-cookie-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* 📱 MOBILE – clean & UX-vriendelijk */
@media (max-width: 640px) {

  .nn-cookie-overlay {
    background: rgba(15, 23, 42, 0.65);
  }

  .nn-cookie-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 20px;
    border-radius: 16px;
  }

  .nn-cookie-header h3 {
    font-size: 16px;
  }

  .nn-cookie-text {
    font-size: 13px;
  }

  .nn-cookie-actions {
    grid-template-columns: 1fr;
  }

  .nn-cookie-btn.outline {
    grid-column: span 1;
  }
}

.nn-cookie-link {
  margin-bottom: 16px;
}

.nn-cookie-link a {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.nn-cookie-link a:hover {
  text-decoration: underline;
}

  .nn-mc-modern{
    padding:100px 20px;
    background:#f8fafc;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  .nn-mc-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
  }

  /* ====== LINKS CARD ====== */
  .nn-mc-left{
    background:#fff;
    padding:46px;
    border-radius:28px;
    box-shadow:0 30px 70px rgba(15,23,42,.08);
    border:1px solid rgba(15,23,42,.06);
  }
  .nn-mc-head h2{
    margin:0;
    font-size:32px;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-.02em;
  }
  .nn-sub{
    margin:10px 0 36px;
    color:#64748b;
  }

  .nn-block{ margin-bottom:26px; }

  .nn-label{
    display:block;
    font-weight:800;
    color:#0f172a;
    margin-bottom:12px;
  }
  .nn-label i{ color:#2563eb; margin-right:8px; }
  .nn-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  .nn-value{
    font-weight:900;
    color:#2563eb;
    background:#eff6ff;
    border:1px solid #bfdbfe;
    padding:6px 12px;
    border-radius:999px;
    min-width:54px;
    text-align:center;
  }

  /* ====== PILLS (versie) ====== */
  .nn-pill-group{
    display:flex;
    gap:14px;
    background:#f1f5f9;
    padding:8px;
    border-radius:18px;
    border:1px solid rgba(15,23,42,.06);
  }
  .nn-pill-group button{
    flex:1;
    padding:16px 14px;
    border-radius:14px;
    border:1px solid transparent;
    background:transparent;
    font-weight:900;
    cursor:pointer;
    color:#0f172a;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  }
  .nn-pill-group button:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(15,23,42,.08);
    background:#ffffff;
    border-color:rgba(15,23,42,.08);
  }
  .nn-pill-group button.active{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
    border-color:rgba(37,99,235,.35);
    box-shadow:0 14px 30px rgba(37,99,235,.25);
  }

  /* ====== MODPACK HIGHLIGHT ====== */
  .nn-modpack{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 18px;
    border-radius:20px;
    background:#eff6ff;
    border:1px solid #bfdbfe;
  }
  .nn-modpack-left{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .nn-modpack-icon{
    width:44px;height:44px;
    border-radius:14px;
    background:#dbeafe;
    border:1px solid #bfdbfe;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
  }
  .nn-modpack-text strong{
    display:block;
    color:#0f172a;
    font-weight:900;
  }
  .nn-modpack-text span{
    display:block;
    font-size:13px;
    color:#475569;
    margin-top:3px;
  }

  /* ====== SWITCH ====== */
  .nn-switch{
    width:56px;
    height:30px;
    position:relative;
    flex:0 0 auto;
  }
  .nn-switch input{ display:none; }
  .nn-switch span{
    position:absolute; inset:0;
    background:#c7d2fe;
    border-radius:999px;
    cursor:pointer;
    transition:background .2s ease;
    box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
  }
  .nn-switch span:before{
    content:"";
    position:absolute;
    width:24px;height:24px;
    top:3px;left:3px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 8px 18px rgba(15,23,42,.18);
    transition:transform .22s ease;
  }
  .nn-switch input:checked + span{ background:#2563eb; }
  .nn-switch input:checked + span:before{ transform:translateX(26px); }

  /* ====== MODERNE SLIDER (vloeiend + geen delay) ====== */
  .nn-slider-wrap{
    padding:16px 16px 12px;
    border-radius:18px;
    background:#f1f5f9;
    border:1px solid rgba(15,23,42,.06);
  }
  .nn-range{
    width:100%;
    height:16px;
    -webkit-appearance:none;
    appearance:none;
    outline:none;
    background:transparent;
  }

  /* Track: via background-gradient + CSS vars -> perfect sync met thumb */
  .nn-range{
    --p: 50%; /* JS zet dit exact */
    --track: #e5e7eb;
    --fillA: #2563eb;
    --fillB: #3b82f6;
  }
  .nn-range::-webkit-slider-runnable-track{
    height:16px;
    border-radius:999px;
    background:
      linear-gradient(90deg, var(--fillA), var(--fillB)) 0/var(--p) 100% no-repeat,
      var(--track);
  }
  .nn-range::-moz-range-track{
    height:16px;
    border-radius:999px;
    background: var(--track);
  }
  .nn-range::-moz-range-progress{
    height:16px;
    border-radius:999px;
    background: linear-gradient(90deg, var(--fillA), var(--fillB));
  }

  /* Thumb: moderne witte cirkel */
  .nn-range::-webkit-slider-thumb{
    -webkit-appearance:none;
    appearance:none;
    width:26px;height:26px;
    border-radius:50%;
    background:#fff;
    border:1px solid rgba(15,23,42,.10);
    box-shadow:0 10px 22px rgba(15,23,42,.22);
    margin-top:-5px; /* center on track */
    cursor:grab;
  }
  .nn-range:active::-webkit-slider-thumb{ cursor:grabbing; }

  .nn-range::-moz-range-thumb{
    width:26px;height:26px;
    border-radius:50%;
    background:#fff;
    border:1px solid rgba(15,23,42,.10);
    box-shadow:0 10px 22px rgba(15,23,42,.22);
    cursor:grab;
  }
  .nn-range:active::-moz-range-thumb{ cursor:grabbing; }

  /* Meta labels onder slider */
  .nn-slider-meta{
    margin-top:10px;
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#64748b;
    padding:0 4px;
  }

  /* ====== RECHTS: PRODUCT KAART ====== */
  .nn-mc-right{ 
      
        margin-top:20px; /* pas aan naar wens */
        display:flex; align-items:flex-start;
         }

  .nn-mc-cardss{
    width:100%;
    background:#fff;
    padding:44px 34px 34px;
    border-radius:28px;
    box-shadow:0 30px 70px rgba(15,23,42,.12);
    text-align:center;
    position:relative;
    transform:translateZ(0);
  }

  /* blauwe outline i.p.v. “bar” */
  .nn-outline{
  border:2px solid #2563eb; /* strak blauw randje */
  box-shadow:none !important;
  }

  /* badge top center */
  .nn-badge-top{
    position:absolute;
    left:50%;
    top:-14px;
    transform:translateX(-50%);
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffffff;
    border:1px solid rgba(37,99,235,.28);
    box-shadow:0 12px 30px rgba(15,23,42,.12);
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    color:#1e40af;
  }
  .nn-badge-top i{ color:#2563eb; }

  /* minecraft blok kader */
  .nn-mc-icon{
    width:96px;height:96px;
    border-radius:22px;
    background:#f1f5f9;
    border:1px solid rgba(15,23,42,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:18px auto 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
  }
  .nn-mc-icon img{ width:64px; height:64px; object-fit:contain; }

  .nn-mc-cards h3{
    margin:6px 0 8px;
    font-size:30px;
    font-weight:950;
    color:#0f172a;
    letter-spacing:-.02em;
  }
  .nn-pricess{
    font-size:28px;
    font-weight:950;
    color:#0f172a;
    margin:0 0 22px;
  }
  .nn-pricess-suf{
    font-size:14px;
    font-weight:800;
    color:#64748b;
    margin-left:6px;
  }

  .nn-specs{
    list-style:none;
    padding:0;
    margin:0 0 24px;
    color:#475569;
    text-align:left;
    display:grid;
    gap:12px;
  }
  .nn-specs li{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.06);
    padding:12px 12px;
    border-radius:16px;
  }
  .nn-specs i{
    width:18px;
    color:#2563eb;
  }
  .nn-specs span{
    font-weight:700;
    color:#334155;
  }

  .nn-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 16px;
    border-radius:16px;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
    font-weight:950;
    text-decoration:none;
    box-shadow:0 18px 40px rgba(37,99,235,.25);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .nn-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 50px rgba(37,99,235,.30);
  }

  .nn-mini-note{
    margin-top:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:13px;
    font-weight:800;
    color:#0f766e;
    background:#ecfdf5;
    border:1px solid #86efac;
    padding:10px 12px;
    border-radius:14px;
  }
  .nn-mini-note i{ color:#16a34a; }

  /* ====== ANIMATIES / MICRO-UX ====== */
  .nn-anim-in{
    opacity:0;
    transform:translateY(12px);
    animation: nnFadeUp .6s ease forwards;
  }
  .nn-mc-right.nn-anim-in{ animation-delay:.08s; }

  @keyframes nnFadeUp{
    to{ opacity:1; transform:translateY(0); }
  }

  .nn-hoverlift{
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .nn-hoverlift:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(15,23,42,.08);
  }

  /* ====== HINT ====== */
  .nn-hint{
    display:flex;
    align-items:center;
    gap:10px;
    color:#64748b;
    font-weight:700;
    margin-top:6px;
    padding-top:6px;
  }
  .nn-hint i{ color:#2563eb; }

  /* ====== RESPONSIVE ====== */
  @media(max-width: 980px){
    .nn-mc-container{ grid-template-columns:1fr; }
    .nn-mc-left{ padding:36px; }
    .nn-mc-card{ padding:42px 28px 28px; }
  }

/* Typografie verfijning */
.nn-mc-modern h2{
  letter-spacing:-0.02em;
}

.nn-label,
.nn-pill-group button,
.nn-btn,
.nn-pricess,
.nn-value{
  letter-spacing:-0.01em;
}

.nn-specs span{
  font-weight:600;
}

.nn-sub{
  font-weight:500;
}


.nn-kb{
  padding:90px 20px;
  background:#f8fafc;
  font-family:system-ui,sans-serif;
}

/* Views */
.kb-view{display:none;}
.kb-view.active{display:block; animation:kbFade .35s ease both;}
@keyframes kbFade{from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)}}

/* Header */
.kb-header{ text-align:center; margin-bottom:46px; }
.kb-header h2{ font-size:36px; font-weight:800; color:#0f172a; margin:0 0 10px; }
.kb-header p{ color:#64748b; margin:0; }

/* Categories */
.kb-category-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}
.kb-category{
  border:0;
  width:100%;
  background:#fff;
  padding:34px;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  cursor:pointer;
  transition:.35s;
  text-align:center;
}
.kb-category i{ font-size:32px; color:#2563eb; margin-bottom:14px; display:inline-block; }
.kb-category h3{ margin:0 0 6px; font-size:18px; font-weight:800; color:#0f172a; }
.kb-category span{ color:#64748b; font-size:14px; }
.kb-category:hover{ transform:translateY(-8px); box-shadow:0 26px 70px rgba(37,99,235,.16); }

/* Toolbar layout */
.kb-toolbar{
  max-width:1100px;
  margin:0 auto 18px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:14px;
  align-items:center;
}
.kb-back{
  border:0;
  background:none;
  color:#2563eb;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

/* Search */
.kb-search-wrap{ position:relative; }
.kb-search-wrap input{
  width:100%;
  padding:14px 16px 14px 44px;
  border-radius:16px;
  border:1px solid #e2e8f0;
  background:#fff;
  outline:none;
}
.kb-search-wrap i{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:#94a3b8;
}

/* Suggestions */
.kb-suggestions{
  position:absolute;
  top:110%;
  left:0; right:0;
  background:#fff;
  border-radius:16px;
  box-shadow:0 22px 55px rgba(15,23,42,.14);
  overflow:hidden;
  display:none;
  z-index:50;
  border:1px solid #eef2f7;
}
.kb-suggestions button{
  width:100%;
  border:0;
  background:none;
  padding:12px 14px;
  cursor:pointer;
  text-align:left;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:650;
  color:#0f172a;
}
.kb-suggestions button i{ color:#2563eb; }
.kb-suggestions button:hover{ background:#f1f5f9; }

/* Right actions */
.kb-actions{
  display:flex;
  gap:10px;
  align-items:center;
}
.kb-filters{
  display:flex;
  gap:10px;
  align-items:center;
}
.kb-filters button,
.kb-sort{
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:10px 14px;
  background:#e2e8f0;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:8px;
  line-height:1;
}
.kb-filters button i,
.kb-sort i{
  font-size:13px;
  width:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.kb-filters button span,
.kb-sort span{ font-size:13px; }
.kb-filters button.active{
  background:#2563eb;
  color:#fff;
}

/* Subhead */
.kb-subhead{
  max-width:1100px;
  margin:0 auto 24px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.kb-subhead h3{ margin:0; font-size:20px; font-weight:900; color:#0f172a; }
.kb-subhead p{ margin:6px 0 0; color:#64748b; }
.kb-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:999px;
  box-shadow:0 10px 25px rgba(15,23,42,.05);
  font-weight:800;
  color:#0f172a;
}

/* Cards grid */
.kb-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:26px;
}

/* Card */
.kb-card{
  border:0;
  width:100%;
  background:#fff;
  padding:26px;
  border-radius:24px;
  box-shadow:0 20px 55px rgba(15,23,42,.08);
  cursor:pointer;
  transition:.3s;
  text-align:left;
  position:relative;
}
.kb-card:hover{ transform:translateY(-6px); box-shadow:0 30px 80px rgba(37,99,235,.14); }

.kb-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}
.kb-card-icon{
  width:46px; height:46px;
  border-radius:14px;
  background:#2563eb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.kb-card h3{
  margin:0 0 14px;
  font-size:18px;
  font-weight:900;
  color:#0f172a;
}

/* Views badge */
.kb-views{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#64748b;
  font-weight:800;
}
.kb-views i{ font-size:13px; }

/* Tags alignment perfect */
.kb-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  line-height:1;
}
.tag i{
  width:14px;
  height:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}
.tag span{ transform:translateY(.5px); } /* micro-align */

/* Tag colors */
.tag.minecraft{ background:#e0f2fe; color:#0369a1; }
.tag.beginner{ background:#dcfce7; color:#166534; }
.tag.advanced{ background:#fee2e2; color:#991b1b; }

/* Empty */
.kb-empty{
  display:none;
  max-width:1100px;
  margin:26px auto 0;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:16px 18px;
  color:#64748b;
  align-items:center;
  gap:10px;
}

/* Article view */
.kb-article{ max-width:1100px; margin:0 auto; }
.kb-article-box{
  margin-top:18px;
  background:#fff;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(15,23,42,.14);
  padding:46px;
  border:1px solid #eef2f7;
}
.kb-article-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding-bottom:18px;
  border-bottom:1px solid #eef2f7;
  margin-bottom:18px;
}
.kb-article-head h1{
  margin:0 0 10px;
  font-size:32px;
  font-weight:950;
  color:#0f172a;
}
.kb-article-views{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#f1f5f9;
  color:#0f172a;
  font-weight:900;
}
.kb-article-content h4{
  margin:22px 0 8px;
  font-size:16px;
  font-weight:950;
  color:#0f172a;
}
.kb-article-content p{
  margin:0 0 10px;
  color:#334155;
  line-height:1.7;
}
.kb-intro{
  color:#475569;
  margin:0 0 10px;
}

/* Mobile */
@media (max-width: 920px){
  .kb-toolbar{
    grid-template-columns:1fr;
    gap:12px;
  }
  .kb-actions{
    justify-content:space-between;
    flex-wrap:wrap;
  }
  .kb-subhead{
    align-items:flex-start;
    flex-direction:column;
  }
  .kb-article-box{ padding:28px; }
}

/* Force Inter op kennisbank, behalve iconen */
.nn-kb,
.nn-kb *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]) {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.fa,
.fa-solid,
.fa-brands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

