@media (max-width: 980px){
  .heroGrid{ grid-template-columns:1fr; }
  .list{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:1fr; }
  .navlinks{ display:none; }
  .brand img{ width:140px; }
  .footGrid{ grid-template-columns:1fr; }
  .footLinks{ justify-content:flex-start; }
}

@media (max-width: 900px){
  .contactGrid{ grid-template-columns:1fr; }
}

/* ===== Mobile menu ===== */

.menuToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menuToggle span {
  width: 24px;
  height: 2px;
  background: #0b1b2b;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Mobile menu container */
.mobileMenu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(11,27,43,.12);
  padding: 14px 20px;
}

/* Links */
.mobileMenu a {
  padding: 12px 6px;
  font-weight: 700;
  color: #0b1b2b;
  border-radius: 10px;
}

.mobileMenu a:hover {
  background: rgba(11,107,179,.08);
}

/* Actieve staat */
.mobileMenu.open {
  display: flex;
}

/* Responsive triggers */
@media (max-width: 980px) {
  .navlinks {
    display: none;
  }

  .menuToggle {
    display: flex;
  }
	
	.actions{
		/*display:none;*/
	}
}

.topbarInner .actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
