/* Planski – Gedeelde navigatie */
#pnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
}
#pnav .ni {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
}
#pnav .logo {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 28px;
  flex-shrink: 0;
}
#pnav .lm {
  width: 30px;
  height: 30px;
  background: #1d4ed8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#pnav .lm svg { width: 15px; height: 15px; }
#pnav .nl {
  display: flex;
  gap: 2px;
  flex: 1;
  align-items: center;
}
#pnav .nl a {
  color: #64748b;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 7px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
#pnav .nl a:hover { color: #0f172a; background: #f1f5f9; }
#pnav .nl a.on  { color: #1d4ed8; font-weight: 600; background: #eff6ff; }
#pnav .nc {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 16px;
  align-items: center;
}
#pnav .nc .login {
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
  transition: border-color .15s, background .15s;
}
#pnav .nc .login:hover { border-color: #94a3b8; background: #f8fafc; }
#pnav .nc .cta {
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 17px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .15s;
}
#pnav .nc .cta:hover { background: #1e40af; }
#pnav .burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  margin-left: 10px;
  flex-shrink: 0;
}
#pnav .burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
}
#pmob {
  display: none;
  flex-direction: column;
  gap: 3px;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 20px 18px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  font-family: 'Inter', sans-serif;
}
#pmob.open { display: flex; }
#pmob a {
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background .15s;
}
#pmob a:hover { background: #f1f5f9; }
#pmob a.on { color: #1d4ed8; font-weight: 600; background: #eff6ff; }
#pmob .mc {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}
#pmob .mc a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  color: #334155;
}
#pmob .mc a.p { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }
@media (max-width: 860px) {
  #pnav .nl, #pnav .nc { display: none; }
  #pnav .burger { display: flex; }
}
