.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  padding: .75rem 1rem;
  border-radius: .65rem;
  background: #fff;
  color: #0d2b25;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
  background: rgba(13, 43, 37, .97) !important;
  backdrop-filter: blur(16px);
}

.site-header .nav {
  position: relative;
  min-height: 76px !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.site-header .brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 850;
}

.site-header .brand img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain;
}

.site-header .nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.7rem, 1.25vw, 1.15rem);
  color: rgba(255, 255, 255, .8);
  font-size: .83rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.site-header .nav-links > a {
  color: inherit !important;
  padding: .55rem .12rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .nav-links > a:hover,
.site-header .nav-links > a[aria-current="page"] {
  color: #fff !important;
}

.site-header .nav-links > a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 #6fc77a;
}

.site-header .nav-links .nav-contact {
  width: 112px;
  min-width: 112px;
  height: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .25rem;
  padding: 0 16px !important;
  border-radius: 999px;
  background: #6fc77a;
  color: #0d2b25 !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  box-shadow: none;
}

.site-header .menu-toggle {
  min-width: 88px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-left: auto;
  padding: .55rem .75rem;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.site-header .menu-toggle span {
  width: auto;
  height: auto;
  display: inline;
  margin: 0;
  background: none;
}

.site-header .menu-toggle .menu-text {
  font-size: .88rem;
  font-weight: 800;
}

.site-header .menu-toggle .menu-bars {
  width: 20px;
  display: grid;
  gap: 4px;
}

.site-header .menu-toggle .menu-bars i {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header .menu-toggle[aria-expanded="true"] .menu-bars i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-header .menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(2) {
  opacity: 0;
}

.site-header .menu-toggle[aria-expanded="true"] .menu-bars i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(13, 43, 37, .14);
  border-radius: 1.25rem;
  background: #fffdf7;
  box-shadow: 0 20px 55px rgba(13, 43, 37, .08);
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(13, 43, 37, .11);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #0d2b25;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.comparison-table td:first-child {
  font-weight: 800;
  color: #0d2b25;
}

.comparison-table td:nth-child(3) {
  background: rgba(111, 199, 122, .12);
  color: #174f36;
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

/* Gebruik op iedere schermbreedte dezelfde compacte menunavigatie. */
@media (min-width: 0px) {
  .site-header .nav {
    justify-content: space-between !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
  }

  .site-header .nav-links {
    position: absolute !important;
    left: auto !important;
    right: 0 !important;
    top: 76px !important;
    width: max-content !important;
    min-width: 218px;
    max-width: calc(100vw - 2rem);
    display: none !important;
    align-items: stretch !important;
    padding: .45rem !important;
    border: 1px solid rgba(255, 255, 255, .12);
    border-top: 0;
    border-radius: 0 0 .9rem .9rem;
    background: #0d2b25 !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .2);
  }

  .site-header .nav-links.open {
    display: grid !important;
    gap: .15rem !important;
  }

  .site-header .nav-links > a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: .62rem .75rem !important;
    border-radius: .7rem;
    text-align: right;
  }

  .site-header .nav-links > a:hover,
  .site-header .nav-links > a[aria-current="page"] {
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
  }

  .site-header .nav-links .nav-contact {
    width: 100%;
    min-width: 0;
    height: 44px;
    justify-content: flex-end !important;
    margin: .25rem 0 0;
    text-align: right;
  }
}

@media (min-width: 521px) {
  .site-header .nav {
    width: calc(100% - 1.5rem) !important;
    max-width: none !important;
  }
}

@media (max-width: 520px) {
  .site-header .nav {
    min-height: 68px !important;
  }

  .site-header .nav-links {
    top: 68px !important;
    max-width: calc(100vw - 1rem);
  }

  .site-header .brand span {
    display: inline !important;
    font-size: 1.05rem;
  }

  .site-header .brand img {
    width: 36px !important;
    height: 36px !important;
  }

}
