:root {
  --navy: #0f2d52;
  --blue: #1e5aa8;
  --teal: #00a8a8;
  --light: #f5f7fa;
  --white: #ffffff;
  --red: #e53935;
  --ink: #12233a;
  --muted: #65758b;
  --line: #dbe4ef;
  --shadow: 0 18px 50px rgba(15, 45, 82, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 9px 10px;
  color: #20324a;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--blue);
  background: #edf5ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.section-band {
  background: var(--light);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 740px;
}

.hero > *,
.app-layout > *,
.map-shell > *,
.audience-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.8vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: #3d5068;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.88) contrast(0.96);
}

.journey-map {
  position: absolute;
  inset: 6% 7% 8% 7%;
  overflow: hidden;
  border: 1px solid rgba(30, 90, 168, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 168, 168, 0.18), transparent 24%),
    radial-gradient(circle at 30% 78%, rgba(30, 90, 168, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(245, 247, 250, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.journey-map::before {
  content: "";
  position: absolute;
  left: 24%;
  top: 10%;
  width: 50%;
  height: 80%;
  background:
    radial-gradient(circle at 54% 14%, rgba(255, 255, 255, 0.92) 0 9%, transparent 10%),
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.92) 0 12%, transparent 13%),
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, 0.94) 0 18%, transparent 19%),
    radial-gradient(circle at 52% 67%, rgba(255, 255, 255, 0.92) 0 17%, transparent 18%),
    radial-gradient(circle at 44% 84%, rgba(255, 255, 255, 0.9) 0 11%, transparent 12%);
  border: 2px solid rgba(15, 45, 82, 0.14);
  border-radius: 48% 42% 38% 44%;
  transform: rotate(-9deg);
  filter: drop-shadow(0 18px 34px rgba(15, 45, 82, 0.14));
}

.route-line {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-line path {
  fill: none;
  stroke: rgba(30, 90, 168, 0.72);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
  filter: drop-shadow(0 3px 5px rgba(15, 45, 82, 0.12));
  animation: routeFlow 7s linear infinite;
}

.journey-pin {
  position: absolute;
  z-index: 3;
  width: 19px;
  height: 19px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(15, 45, 82, 0.24);
  transform: rotate(-45deg);
}

.journey-pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(0, 168, 168, 0.38);
  border-radius: 999px;
  animation: pinPulse 2.8s ease-out infinite;
}

.pin-a {
  left: 28%;
  top: 74%;
}

.pin-b {
  left: 44%;
  top: 48%;
  background: var(--blue);
  animation-delay: 0.7s;
}

.pin-c {
  left: 80%;
  top: 19%;
  background: var(--teal);
}

.journey-car {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 58px;
  height: 38px;
  offset-path: path("M 128 236 C 90 196 128 158 180 168 C 232 178 206 118 260 112 C 314 106 294 58 342 64 C 376 72 350 130 314 150 C 268 176 286 228 226 236 C 180 242 164 210 128 236");
  offset-rotate: auto;
  offset-distance: 0%;
  animation: driveRoute 10s linear infinite;
}

.car-body {
  position: absolute;
  inset: 8px 4px 7px;
  display: block;
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 10px 14px 9px 9px;
  box-shadow: 0 11px 24px rgba(15, 45, 82, 0.32);
}

.car-body::before {
  content: "";
  position: absolute;
  left: 13px;
  top: -9px;
  width: 22px;
  height: 12px;
  background: var(--teal);
  border: 2px solid var(--white);
  border-bottom: 0;
  border-radius: 8px 8px 3px 3px;
}

.car-body::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: -7px;
  height: 7px;
  background:
    radial-gradient(circle at 20% 50%, var(--navy) 0 5px, transparent 6px),
    radial-gradient(circle at 80% 50%, var(--navy) 0 5px, transparent 6px);
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -88;
  }
}

@keyframes pinPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.6);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes driveRoute {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-line path,
  .journey-pin::after,
  .journey-car {
    animation: none;
  }

  .journey-car {
    offset-distance: 100%;
  }
}

.search-panel {
  grid-column: 1 / -1;
  margin-top: -10px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
  overflow-x: auto;
}

.tab {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--navy);
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
}

.tab.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.search-grid,
.provider-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #344966;
  font-size: 0.86rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd9e6;
  border-radius: var(--radius);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.13);
}

.search-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
}

.btn.primary {
  color: var(--white);
  background: var(--blue);
}

.btn.primary:hover {
  background: var(--navy);
}

.btn.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn.secondary:hover {
  border-color: var(--blue);
}

.btn.compact {
  min-height: 40px;
  padding: 9px 12px;
}

.category-section,
.profile-section,
.audience-grid,
.seo-section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-tile {
  min-height: 156px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 45, 82, 0.06);
}

.category-tile:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.category-tile strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.category-tile span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.category-tile.urgent {
  border-top: 4px solid var(--red);
}

.mission-section {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.mission-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(15, 45, 82, 0.08);
}

.mission-content p:not(.eyebrow) {
  color: #344966;
}

.mission-disclaimer {
  margin-top: 22px;
  padding: 16px;
  color: #70433f !important;
  background: #fff4f3;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  font-weight: 750;
}

.app-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
}

.sticky-panel {
  position: sticky;
  top: 96px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-title,
.results-head,
.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.province-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.7fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 45, 82, 0.07);
}

.province-spotlight[hidden] {
  display: none;
}

.province-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.province-copy p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.province-mini-map {
  position: relative;
  min-height: 240px;
  background:
    radial-gradient(circle at 50% 16%, rgba(0, 168, 168, 0.12) 0 11%, transparent 12%),
    radial-gradient(circle at 58% 34%, rgba(0, 168, 168, 0.12) 0 12%, transparent 13%),
    radial-gradient(circle at 46% 51%, rgba(0, 168, 168, 0.13) 0 17%, transparent 18%),
    radial-gradient(circle at 53% 69%, rgba(0, 168, 168, 0.12) 0 17%, transparent 18%),
    radial-gradient(circle at 45% 86%, rgba(0, 168, 168, 0.12) 0 11%, transparent 12%),
    linear-gradient(135deg, #eef7ff, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.province-mini-map::before {
  content: "";
  position: absolute;
  inset: 9% 22% 8% 23%;
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(30, 90, 168, 0.18);
  border-radius: 46% 42% 38% 44%;
  transform: rotate(-8deg);
}

.province-marker {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: rgba(30, 90, 168, 0.32);
  border: 2px solid var(--white);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.province-marker.active {
  width: 24px;
  height: 24px;
  background: var(--teal);
  box-shadow: 0 0 0 9px rgba(0, 168, 168, 0.15), 0 10px 22px rgba(15, 45, 82, 0.22);
}

.province-label {
  position: absolute;
  z-index: 2;
  min-width: max-content;
  padding: 7px 10px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
  transform: translate(14px, -34px);
  box-shadow: 0 10px 22px rgba(15, 45, 82, 0.2);
}

.filter-title h2 {
  font-size: 1.25rem;
}

.filters label {
  display: block;
  margin-bottom: 14px;
}

.check {
  display: flex !important;
  align-items: center;
  gap: 9px;
  color: #344966;
  font-weight: 700;
}

.check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.text-button {
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 276px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.result-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.result-card p {
  margin: 0;
  color: var(--muted);
}

.card-disclaimer {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.45;
}

.meta-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #30465f;
  font-size: 0.92rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  color: #075f5f;
  background: rgba(0, 168, 168, 0.12);
  border: 1px solid rgba(0, 168, 168, 0.24);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.card-button-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.compare-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344966;
  font-size: 0.9rem;
  font-weight: 750;
}

.compare-check input {
  width: 17px;
  min-height: 17px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.status.beschikbaar {
  color: #05615e;
  background: rgba(0, 168, 168, 0.13);
}

.status.beperkt {
  color: #8b4b00;
  background: #fff3d7;
}

.status.vol {
  color: #98251f;
  background: #fde7e5;
}

.compare-box {
  margin-top: 26px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scan-panel {
  margin-bottom: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scan-panel h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.scan-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.scan-form .check {
  min-height: 48px;
  padding: 10px 12px;
  background: var(--light);
  border-radius: var(--radius);
}

.scan-result {
  margin: 14px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

.compare-table {
  overflow-x: auto;
}

.compare-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--navy);
  background: var(--light);
}

.profile-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.profile-item {
  padding: 14px;
  background: var(--light);
  border-radius: var(--radius);
}

.profile-item strong {
  display: block;
  color: var(--navy);
}

.disclaimer {
  padding: 14px;
  color: #70433f;
  background: #fff4f3;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
}

.legal-note {
  padding: 14px;
  color: #41536b !important;
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.map-section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.nl-map {
  position: relative;
  min-height: 520px;
  background:
    radial-gradient(circle at 48% 17%, #d7f2f2 0 11%, transparent 12%),
    radial-gradient(circle at 55% 31%, #d7f2f2 0 12%, transparent 13%),
    radial-gradient(circle at 47% 46%, #d7f2f2 0 16%, transparent 17%),
    radial-gradient(circle at 54% 62%, #d7f2f2 0 17%, transparent 18%),
    radial-gradient(circle at 48% 78%, #d7f2f2 0 12%, transparent 13%),
    linear-gradient(135deg, #eaf4ff, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.nl-map::before {
  content: "";
  position: absolute;
  inset: 11% 23% 8% 25%;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(30, 90, 168, 0.22);
  border-radius: 46% 44% 38% 40%;
  transform: rotate(-8deg);
}

.pin {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 5px 14px rgba(15, 45, 82, 0.22);
  transform: rotate(-45deg);
}

.pin.available {
  background: var(--teal);
}

.pin.limited {
  background: #f4a000;
}

.pin.full {
  background: var(--red);
}

.map-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.map-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.municipality-section,
.knowledge-section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.municipality-grid,
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.knowledge-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.municipality-grid article,
.knowledge-grid article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.knowledge-section .knowledge-grid article {
  background: var(--light);
}

.municipality-grid p,
.knowledge-grid p {
  color: var(--muted);
}

.audience-panel {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audience-panel p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 12px;
  background: var(--light);
  border-radius: var(--radius);
  font-weight: 750;
}

.provider-form-section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.provider-form {
  max-width: 980px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.provider-form .full,
.provider-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.seo-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-section article {
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
}

.seo-section p {
  color: var(--muted);
}

.province-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.province-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
}

.province-links a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.legal-section {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.legal-details {
  max-width: 1040px;
  margin: 12px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-details summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
  list-style-position: inside;
}

.legal-details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.legal-content {
  padding: 20px;
  color: #344966;
}

.legal-content h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.site-footer span:last-child {
  max-width: 920px;
  font-size: 0.88rem;
  opacity: 0.9;
}

@media (max-width: 1120px) {
  .results-grid,
  .seo-section,
  .knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .municipality-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .app-layout,
  .map-shell,
  .audience-grid,
  .province-spotlight {
    grid-template-columns: 1fr;
  }

  .search-grid,
  .provider-form,
  .scan-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 68px;
  }

  .main-nav.open,
  .search-grid,
  .provider-form,
  .scan-form,
  .category-grid,
  .results-grid,
  .profile-grid,
  .feature-list,
  .seo-section,
  .municipality-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .search-actions,
  .card-actions,
  .filter-title,
  .results-head,
  .compare-head,
  .profile-top,
  .map-item {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .category-tile,
  .result-card {
    min-height: auto;
  }

  .nl-map {
    min-height: 360px;
  }

  .province-mini-map {
    min-height: 210px;
  }
}
