:root {
  --navy: #0a427f;
  --navy-dark: #072f5e;
  --orange: #ff6b0a;
  --orange-dark: #e95a00;
  --white: #ffffff;
  --light-bg: #f1f6fb;
  --text-dark: #15314f;
  --text-muted: #60758c;
  --border: #d8e5f1;
  --teal: #168fd3;
  --shadow: 0 16px 38px rgba(8, 65, 123, 0.14);
  --radius: 10px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text-dark);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.18);
  outline: none;
}

textarea {
  resize: vertical;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(840px, calc(100% - 40px));
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  clip: auto;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 18, 36, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 23px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  max-width: 210px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.25;
}

.brand-flags {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.brand-flags img {
  width: 24px;
  height: 16px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.primary-nav > a,
.nav-item > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active,
.nav-item:hover > a,
.nav-item:hover > .nav-dropdown-toggle,
.nav-item.is-open > .nav-dropdown-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.has-dropdown {
  position: relative;
}

.dropdown,
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown a,
.language-menu a {
  display: block;
  padding: 10px;
  border-radius: 6px;
  color: var(--text-dark);
  font-size: 14px;
}

.dropdown a:hover,
.language-menu a:hover {
  background: var(--light-bg);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown,
.language-switch:hover .language-menu,
.language-switch:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-switch {
  position: relative;
}

.language-switch button {
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.language-menu {
  left: auto;
  right: 0;
  min-width: 150px;
}

.language-dropdown{right:0;left:auto;min-width:145px}
.language-dropdown button{display:block;width:100%;padding:10px;border:0;border-radius:6px;background:transparent;color:var(--text-dark);font:inherit;text-align:left;cursor:pointer}
.language-dropdown button:hover,.language-dropdown button.is-active{background:var(--light-bg);color:var(--navy);font-weight:800}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-large {
  min-height: 50px;
  padding-inline: 22px;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 760px);
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/hero-trade-energy.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 36, 0.9) 0%, rgba(7, 27, 51, 0.7) 42%, rgba(7, 27, 51, 0.24) 100%),
    linear-gradient(180deg, rgba(4, 18, 36, 0.05), rgba(4, 18, 36, 0.75));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 82vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 48px;
  align-items: center;
  padding: 70px 0;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-support-line {
  max-width: 660px;
  margin: 14px 0 24px;
  color: var(--orange);
  font-size: clamp(12px, 1.06vw, 14.5px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.center-row {
  justify-content: center;
}

.finder-card,
.panel,
.product-card,
.demand-card,
.event-card,
.price-card,
.form-card,
.auth-card,
.contact-aside,
.audience-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.finder-card {
  padding: 24px;
  color: var(--text-dark);
}

.finder-card h2,
.panel h2,
.section-head h2,
.page-hero h1,
.auth-card h1 {
  margin-top: 0;
}

.search-shell,
.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.category-grid a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--light-bg);
  color: var(--navy);
  font-weight: 750;
}

.category-grid a:hover {
  border-color: rgba(244, 123, 32, 0.5);
  background: #fff7f0;
}

.finder-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.finder-stats strong {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 22px;
}

.finder-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
}

.trust-bar {
  border-top: 3px solid var(--orange);
  background: linear-gradient(135deg, #073763 0%, #0b5394 52%, #08345f 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 38px rgba(3,38,73,.14);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  min-height: 136px;
  padding: 16px 16px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.trust-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid strong {
  display: inline;
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
}

.trust-grid em {
  display: block;
  margin: 4px 0 7px;
  color: #ffc857;
  font-size: 9.5px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.trust-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  margin-bottom: 7px;
}

.trust-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(255, 106, 0, .28);
}

.trust-grid ul {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 7px 0 0;
  list-style: none;
}

.trust-grid li {
  position: relative;
  padding-left: 15px;
  color: rgba(224, 238, 250, 0.82);
  font-size: 11px;
  line-height: 1.3;
}

.trust-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
}

.trust-grid article > p {
  margin: 6px 0 0;
  color: rgba(224, 238, 250, 0.84);
  font-size: 11px;
  line-height: 1.35;
}

.section {
  padding: 82px 0;
}

.light-band {
  background: var(--light-bg);
}

.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
}

.section-head p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 18px;
}

.section-dark .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.center {
  margin-inline: auto;
  text-align: center;
}

.compact-head h2 {
  font-size: 32px;
}

.split-layout,
.two-column,
.form-layout,
.magazine-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.panel {
  padding: 28px;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.mini-list article {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mini-list h3,
.event-list h3,
.product-card h3,
.demand-card h3,
.event-card h3,
.article-grid h3,
.feature-grid h3 {
  margin: 0 0 6px;
  line-height: 1.2;
}

.mini-list p,
.event-list p,
.product-card p,
.demand-card p,
.event-card p,
.feature-grid p {
  margin: 0;
  color: var(--text-muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 138, 138, 0.1);
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.magazine-panel {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 24px;
  position: relative;
  align-items: start;
}

.magazine-panel > div:last-child {
  min-width: 0;
}

.magazine-panel > div:last-child .button-row {
  position: absolute;
  top: 327px;
  left: 16px;
  width: 220px;
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-top: 0;
}

.magazine-panel > div:last-child .button-row .btn {
  width: 100%;
}

.magazine-panel img,
.magazine-page img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(7, 27, 51, 0.16);
}

.check-list {
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin: 8px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--orange-dark);
  font-weight: 800;
}

.steps,
.feature-grid,
.product-grid,
.demand-grid,
.event-grid,
.pricing-grid,
.story-grid,
.article-grid {
  display: grid;
  gap: 20px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--orange);
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.event-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.event-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.event-list time {
  display: grid;
  place-items: center;
  min-height: 62px;
  border-radius: var(--radius);
  background: var(--light-bg);
  color: var(--orange-dark);
  font-weight: 850;
  text-align: center;
}
.event-list time span,.event-list time small{display:block}.event-list time small{margin-top:2px;color:var(--navy);font-size:.72rem;font-weight:800;letter-spacing:.04em;line-height:1}

.newsletter-card {
  background: var(--navy);
  color: var(--white);
}

.newsletter-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 750;
}

.newsletter-card .form-message {
  color: #9ff0c3;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article,
.article-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-grid article:hover,
.product-card:hover,
.demand-card:hover,
.event-card:hover,
.price-card:hover,
.article-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.logo-grid span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
  text-align: center;
}

.page-hero {
  padding: 98px 0 84px;
  background:
    linear-gradient(135deg, rgba(4, 18, 36, 0.96), rgba(7, 27, 51, 0.82)),
    url("../img/hero-trade-energy.png") center/cover;
  color: var(--white);
  text-align: center;
}

.compact-page {
  text-align: left;
}

.compact-page .container {
  display: block;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.compact-page p:not(.eyebrow) {
  margin-left: 0;
}

.filter-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.06);
}

.product-grid,
.demand-grid,
.event-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card,
.demand-card,
.event-card,
.price-card {
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-visual {
  min-height: 170px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.95), rgba(15, 138, 138, 0.68)),
    var(--navy);
}

.product-visual span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.product-body,
.demand-card,
.event-card,
.price-card {
  padding: 22px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.product-actions,
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-muted);
}

.demand-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demand-card footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--text-muted);
  font-size: 14px;
}

.magazine-page {
  grid-template-columns: minmax(240px, 360px) 1fr;
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0;
}

.article-grid span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.story-grid {
  grid-template-columns: repeat(2, 1fr);
}

.story-grid article,
.audience-panel {
  padding: 28px;
}

.story-grid article {
  border-left: 4px solid var(--orange);
  background: var(--light-bg);
  border-radius: var(--radius);
}

.audience-panel {
  margin-top: 28px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--light-bg);
  color: var(--navy);
  font-weight: 750;
}

.event-card time {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #fff7f0;
  color: var(--orange-dark);
  font-weight: 850;
}

.form-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.form-layout.single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.form-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text-dark);
  font-weight: 750;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.choice-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-weight: 850;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--light-bg);
}

.choice-grid input {
  width: auto;
}

.contact-aside {
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.contact-aside p,
.contact-aside dd {
  color: rgba(255, 255, 255, 0.72);
}

.contact-aside dl {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
}

.contact-aside dt {
  color: var(--orange);
  font-weight: 850;
}

.contact-aside dd {
  margin: 4px 0 0;
}

.auth-page {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 60px 20px;
  background:
    linear-gradient(135deg, rgba(4, 18, 36, 0.94), rgba(7, 27, 51, 0.72)),
    url("../img/hero-trade-energy.png") center/cover;
}

.auth-card {
  width: min(430px, 100%);
  padding: 30px;
}

.auth-brand {
  color: var(--navy);
  margin-bottom: 22px;
}

.auth-brand small {
  color: var(--text-muted);
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 750;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card.featured {
  border-color: rgba(244, 123, 32, 0.44);
  box-shadow: var(--shadow);
}

.price {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.price span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 650;
}

.table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

caption {
  padding: 16px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 850;
  text-align: left;
}

th,
td {
  padding: 15px 16px;
  border-top: 1px solid var(--border);
  text-align: left;
}

th {
  background: var(--light-bg);
  color: var(--navy);
}

.site-footer {
  padding: 46px 0;
  background: var(--navy-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: start;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer nav a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.mobile-register-link{display:none}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    background: var(--navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

  .primary-nav {
    top: 88px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .header-actions{display:none!important}

  .menu-open .primary-nav {
    display: flex;
  }

  .mobile-register-link{display:block!important;margin-top:6px;background:var(--orange)!important;color:#fff!important;text-align:center}

  .dropdown,
  .language-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    box-shadow: none;
  }

  .nav-dropdown-toggle{width:100%;justify-content:space-between;text-align:left}
  .language-dropdown{min-width:0}

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown,
  .has-dropdown.is-open .dropdown,
  .language-switch:hover .language-menu,
  .language-switch:focus-within .language-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  .finder-card {
    max-width: 680px;
  }

  .trust-grid,
  .steps,
  .feature-grid,
  .product-grid,
  .demand-grid,
  .event-grid,
  .pricing-grid,
  .article-grid,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    max-width: 170px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 54px 0 32px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .hero-lead,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .button-row,
  .inline-form,
  .search-shell,
  .product-actions,
  .event-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .category-grid,
  .finder-stats,
  .trust-grid,
  .split-layout,
  .two-column,
  .steps,
  .feature-grid,
  .product-grid,
  .demand-grid,
  .event-grid,
  .pricing-grid,
  .story-grid,
  .article-grid,
  .logo-grid,
  .form-layout,
  .form-grid,
  .choice-grid,
  .magazine-page,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: auto;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 16px;
  }

  .trust-grid article:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    padding: 72px 0 58px;
  }

  .magazine-panel {
    grid-template-columns: 1fr;
  }

  .magazine-panel > div:last-child .button-row {
    position: static;
    width: auto;
    display: flex;
    margin-top: 18px;
  }

  .magazine-panel img {
    max-width: 260px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .event-list article {
    grid-template-columns: 1fr;
  }

  .auth-links {
    display: grid;
  }
}

/* Compacte typografische schaal en proportionele contentkaders */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

h1 { font-size: 28px; }
h2 { font-size: 20px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
h5 { font-size: 12px; }
h6 { font-size: 11px; }

.hero,
.hero-grid {
  min-height: clamp(500px, 66vh, 600px);
}

.hero-grid {
  gap: 30px;
  padding: 44px 0;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

.finder-card { padding: 16px; }
.category-grid { gap: 7px; margin-top: 12px; }
.category-grid a { min-height: 44px; padding: 8px; }
.finder-stats { gap: 8px; margin-top: 12px; }
.finder-stats strong { padding: 10px; }
.trust-grid article { min-height: 92px; padding: 15px 14px; }

.section { padding: 52px 0; }
.section-head { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(24px, 2.8vw, 34px); }
.compact-head h2 { font-size: 22px; }

.split-layout,
.two-column,
.form-layout,
.magazine-page { gap: 18px; }

.panel { padding: 16px; }
.mini-list { gap: 8px; margin: 15px 0; }
.mini-list article { padding: 11px; }
.magazine-panel { gap: 20px; }

.steps,
.feature-grid,
.product-grid,
.demand-grid,
.event-grid,
.pricing-grid,
.story-grid,
.article-grid { gap: 14px; }

.steps article { padding: 14px; }
.steps span { width: 34px; height: 34px; margin-bottom: 14px; }
.event-list { gap: 10px; margin-bottom: 18px; }
.event-list article {
  grid-template-columns: 80px 1fr;
  gap: 13px;
  padding: 12px;
}
.event-list time { min-height: 54px; }

.feature-grid article,
.article-grid article {
  min-height: 140px;
  padding: 16px;
}

.logo-grid { gap: 11px; }
.logo-grid span { min-height: 62px; padding: 12px; }
.page-hero { padding: 60px 0 50px; }
.page-hero p:not(.eyebrow) { margin-top: 16px; }
.filter-bar { gap: 8px; margin-bottom: 18px; padding: 12px; }
.product-visual { min-height: 130px; }
.product-visual span { width: 72px; height: 72px; }

.product-body,
.demand-card,
.event-card,
.price-card { padding: 14px; }

.story-grid article,
.audience-panel,
.form-card,
.contact-aside { padding: 16px; }

.audience-panel { margin-top: 18px; }
.auth-card { padding: 20px; }

@media (max-width: 760px) {
  .hero-copy h1,
  .page-hero h1 { font-size: 30px; }

  .hero-grid { padding: 38px 0 24px; }
  .section { padding: 38px 0; }
  .page-hero { padding: 48px 0 38px; }

  .panel,
  .finder-card,
  .form-card,
  .contact-aside { padding: 16px; }
}

/* Compactere menubalkkaders; tekstgrootte blijft ongewijzigd */
.header-inner { gap: 12px; }
.brand { min-width: 180px; }
.primary-nav { gap: 1px; }
.primary-nav > a,
.nav-item > a { padding-inline: 7px; }
.header-actions { gap: 6px; }
.header-actions .btn { padding-inline: 12px; }
.language-switch button { padding-inline: 8px; }
/* Agenda in de hero en extra compacte sectiekaarten */
.hero-agenda {
  color: var(--text-dark);
}

.hero-agenda .section-head {
  margin-bottom: 14px;
}

.hero-agenda .event-list {
  margin-bottom: 15px;
}

.hero-agenda .event-list article {
  padding: 10px;
}

.section-finder {
  width: 100%;
}
/* Kleinere lopende tekst binnen de content; navigatie blijft 14px */
body { font-size: 15px; }
.hero-lead { font-size: 18px; }
.section-head p:not(.eyebrow) { font-size: 16px; }
.page-hero p:not(.eyebrow) { font-size: 17px; }

@media (max-width: 760px) {
  .hero-lead,
  .page-hero p:not(.eyebrow) { font-size: 16px; }
}
/* Lichtere Xpozle-huisstijl, afgestemd op de businesskaart */
body {
  background: #fbfdff;
}

.site-header {
  background: rgba(7, 47, 94, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.brand-mark,
.btn-primary {
  background: linear-gradient(135deg, #ff7b18, var(--orange));
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--navy), #0c579f);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 43, 84, 0.84) 0%, rgba(8, 66, 126, 0.62) 46%, rgba(10, 85, 151, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 42, 82, 0.02), rgba(6, 51, 99, 0.58));
}

.trust-bar {
  background: linear-gradient(90deg, var(--navy), #0b559d);
}

.section-dark {
  background: linear-gradient(135deg, var(--navy-dark), #0b559d);
}

.light-band {
  background: linear-gradient(180deg, #f5f9fd, #eaf3fb);
}

.newsletter-card,
.contact-aside {
  background: linear-gradient(145deg, var(--navy), #0b5ba8);
}

.site-footer {
  background: linear-gradient(135deg, var(--navy-dark), #094581);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(7, 52, 103, 0.94), rgba(12, 92, 164, 0.74)),
    url("../img/hero-trade-energy.png") center/cover;
}

.product-visual {
  background:
    linear-gradient(135deg, rgba(8, 63, 122, 0.94), rgba(20, 139, 211, 0.72)),
    var(--navy);
}

.finder-card,
.panel,
.product-card,
.demand-card,
.event-card,
.price-card,
.form-card,
.auth-card,
.contact-aside,
.audience-panel,
.feature-grid article,
.article-grid article,
.logo-grid span {
  border-color: var(--border);
  box-shadow: 0 10px 28px rgba(8, 65, 123, 0.08);
}

.hero-agenda {
  border-top: 3px solid var(--orange);
}

.category-grid a,
.event-list time,
.pill-grid span {
  background: #f2f7fc;
}

.finder-stats strong {
  background: linear-gradient(135deg, var(--navy), #0b559d);
}

.eyebrow,
.text-link,
.article-grid span,
.contact-aside dt {
  color: var(--orange);
}
/* Verticale beurscarrousel: beweegt van onder naar boven */
.hero-agenda .vertical-carousel {
  position: relative;
  display: block;
  height: 224px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: var(--radius);
  outline: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.event-carousel-track {
  animation: xpozle-agenda-up var(--event-duration,75s) linear infinite;
  will-change: transform;
}

.event-carousel-set {
  display: grid;
  gap: 10px;
  padding-bottom: 10px;
}

.hero-agenda .vertical-carousel article {
  grid-template-columns: 72px 1fr;
  min-height: 68px;
  background: var(--white);
}

.hero-agenda .vertical-carousel:hover .event-carousel-track,
.hero-agenda .vertical-carousel:focus .event-carousel-track,
.hero-agenda .vertical-carousel:focus-within .event-carousel-track {
  animation-play-state: paused;
}

.hero-agenda .vertical-carousel:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 107, 10, 0.28);
}

@keyframes xpozle-agenda-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-agenda .vertical-carousel {
    height: auto;
    max-height: none;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .event-carousel-track { animation: none; }
  .event-carousel-set[aria-hidden="true"] { display: none; }
}
/* Klikbare carrouselitems en gemarkeerde bestemmingen */
.carousel-item-link {
  display: block;
  color: inherit;
  border-radius: var(--radius);
}

.carousel-item-link article {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.carousel-item-link:hover article,
.carousel-item-link:focus-visible article {
  transform: translateY(-1px);
  border-color: rgba(255, 107, 10, 0.65);
  box-shadow: 0 8px 20px rgba(8, 65, 123, 0.12);
}

.carousel-item-link:focus-visible {
  outline: 3px solid rgba(255, 107, 10, 0.28);
  outline-offset: 2px;
}

.is-linked-target {
  border-color: var(--orange) !important;
  animation: xpozle-target-pulse 1.8s ease-out;
  box-shadow: 0 0 0 4px rgba(255, 107, 10, 0.16), var(--shadow) !important;
}

@keyframes xpozle-target-pulse {
  0% { transform: scale(0.985); }
  45% { transform: scale(1.01); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .is-linked-target { animation: none; }
}
/* Xpozle Marketing Team */
.cms-public-blocks:empty{display:none}.cms-public-blocks{background:#f7fbff}.cms-public-blocks .cms-block{padding:44px max(24px,calc((100% - 1180px)/2));display:grid;grid-template-columns:minmax(0,1fr) minmax(240px,.7fr);gap:30px;align-items:center}.cms-public-blocks .cms-block:nth-child(even){background:#fff}.cms-public-blocks .cms-block-media img,.cms-public-blocks .cms-block-media video{width:100%;max-height:380px;object-fit:cover;border-radius:18px;box-shadow:0 16px 36px rgba(5,35,68,.14)}.cms-public-blocks h2{margin-top:0}.cms-public-blocks .btn{margin-top:12px}@media(max-width:760px){.cms-public-blocks .cms-block{grid-template-columns:1fr;padding:32px 20px}}
.xpozle-team-section{position:relative;overflow:hidden;background:radial-gradient(circle at 8% 15%,rgba(56,199,194,.16),transparent 28%),radial-gradient(circle at 92% 85%,rgba(244,187,58,.17),transparent 30%),linear-gradient(135deg,#051a32,#0a427f 64%,#0b559d);color:var(--white)}
.xpozle-team-section::before{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:32px 32px;mask-image:linear-gradient(to bottom,transparent,#000 20%,#000 80%,transparent)}
.team-intro-card{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,.9fr) minmax(460px,1.1fr);gap:28px;padding:28px;border:1px solid rgba(255,255,255,.16);border-radius:18px;background:rgba(4,26,50,.64);box-shadow:0 24px 60px rgba(1,16,31,.3);backdrop-filter:blur(10px)}
.team-intro-copy{align-self:center}.team-intro-copy h2{max-width:620px;margin:0 0 14px;color:var(--white);font-size:clamp(28px,3.6vw,44px);line-height:1.08}.team-intro-copy>p:not(.eyebrow){max-width:660px;color:rgba(255,255,255,.78)}.team-intro-copy .team-subtitle{color:var(--white)!important;font-size:17px;font-weight:700}
.team-service-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:22px 0;padding:0;list-style:none}.team-service-list li{display:grid;grid-template-columns:36px 1fr;gap:10px;align-items:center;min-height:64px;padding:11px;border:1px solid rgba(255,255,255,.13);border-radius:12px;background:rgba(255,255,255,.07);transition:transform .2s ease,background .2s ease,border-color .2s ease}.team-service-list li:hover{transform:translateY(-2px);border-color:rgba(244,187,58,.58);background:rgba(255,255,255,.11)}.team-service-list span{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:linear-gradient(135deg,#ffd76c,#e9a91f);color:#312100;font-size:11px;font-weight:900}.team-service-list strong{color:var(--white);line-height:1.25}
.team-cta{background:linear-gradient(135deg,#f4c64f,#ee9d19);color:#251b04}.team-cta:hover{background:linear-gradient(135deg,#ffe083,#f4b331)}
.team-media-column{display:grid;gap:14px;min-width:0}.team-slider{position:relative;overflow:hidden;min-height:390px;border:1px solid rgba(255,255,255,.16);border-radius:16px;background:#061b33;box-shadow:0 18px 38px rgba(0,0,0,.22)}.team-slides{position:relative;min-height:390px}.team-slide{position:absolute;inset:0;display:grid;grid-template-rows:1fr auto;margin:0;opacity:0;visibility:hidden;transform:scale(1.025);transition:opacity .55s ease,transform .7s ease,visibility .55s ease}.team-slide.is-active{z-index:1;opacity:1;visibility:visible;transform:scale(1)}
.team-image-shell{position:relative;min-height:330px;overflow:hidden;background:radial-gradient(circle at 72% 30%,rgba(244,187,58,.34),transparent 19%),radial-gradient(circle at 24% 70%,rgba(56,199,194,.25),transparent 24%),linear-gradient(135deg,#0a315c,#071b33)}.team-image-shell::after{content:attr(data-placeholder);position:absolute;inset:0;display:grid;place-items:center;padding:28px;color:rgba(255,255,255,.72);font-weight:800;text-align:center}.team-image-shell img{position:relative;z-index:1;width:100%;height:100%;min-height:330px;object-fit:cover;transition:transform .55s ease}.team-slider:hover .team-slide.is-active img{transform:scale(1.025)}.team-image-shell.is-placeholder img{display:none}.team-slide figcaption{position:relative;z-index:2;padding:13px 18px 42px;background:linear-gradient(90deg,rgba(4,26,50,.98),rgba(10,66,127,.96));color:rgba(255,255,255,.82);font-weight:700}
.team-slider-arrow{position:absolute;z-index:4;top:44%;width:42px;height:42px;border:1px solid rgba(255,255,255,.35);border-radius:50%;background:rgba(3,20,38,.72);color:var(--white);font-size:20px;cursor:pointer;backdrop-filter:blur(8px);transition:transform .2s ease,background .2s ease}.team-slider-arrow:hover{transform:scale(1.08);background:rgba(238,157,25,.9);color:#201500}.team-slider-prev{left:14px}.team-slider-next{right:14px}
.team-slider-dots{position:absolute;z-index:5;right:18px;bottom:16px;display:flex;gap:7px}.team-slider-dots button{width:9px;height:9px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.45);cursor:pointer;transition:width .2s ease,border-radius .2s ease,background .2s ease}.team-slider-dots button.is-active{width:25px;border-radius:99px;background:#f4c64f}
.team-video-box{display:grid;grid-template-columns:minmax(0,.85fr) minmax(260px,1.15fr);gap:14px;align-items:center;padding:15px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.08)}.team-video-box h3{margin:0 0 7px;color:var(--white)}.team-video-box p:not(.eyebrow){margin:0;color:rgba(255,255,255,.72)}.team-video-media{position:relative;aspect-ratio:16/9;overflow:hidden;border-radius:10px;background:linear-gradient(135deg,#0a315c,#071b33)}.team-video,.team-video-placeholder{position:absolute;inset:0;width:100%;height:100%}.team-video{z-index:2;object-fit:cover}.team-video-placeholder{z-index:1;display:grid;place-content:center;gap:4px;padding:18px;color:rgba(255,255,255,.76);text-align:center}.team-video-placeholder span{font-weight:900}.team-video-placeholder small{color:rgba(255,255,255,.56)}.team-video-media.is-missing .team-video{display:none}.team-video-media:not(.is-missing) .team-video-placeholder{display:none}
@media(max-width:980px){.team-intro-card{grid-template-columns:1fr}.team-media-column{grid-template-columns:minmax(0,1fr) minmax(280px,.72fr);align-items:stretch}.team-video-box{grid-template-columns:1fr;align-content:start}}
@media(max-width:700px){.team-intro-card{gap:20px;padding:18px;border-radius:14px}.team-service-list,.team-media-column{grid-template-columns:1fr}.team-slider,.team-slides{min-height:340px}.team-image-shell,.team-image-shell img{min-height:280px}.team-video-box{padding:13px}}
@media(prefers-reduced-motion:reduce){.team-slide,.team-image-shell img,.team-service-list li,.team-slider-arrow{transition:none}}

/* Doelgroepgerichte homepage */
.header-inner{max-width:1440px;width:calc(100% - 32px)}
.brand{min-width:170px}
.primary-nav{gap:0}
.primary-nav>a,.nav-dropdown-toggle{padding-inline:9px;font-size:13px;white-space:nowrap}
.header-actions .btn{padding-inline:10px}
.btn-outline-light{border:1px solid rgba(255,255,255,.72);background:rgba(4,26,50,.3);color:#fff}
.btn-outline-light:hover{background:#fff;color:var(--navy)}
.audience-actions{max-width:780px}
.audience-actions .btn{flex:1 1 210px;justify-content:center;text-align:center}
.audience-section{position:relative;padding:46px 0 52px;background:linear-gradient(180deg,#f4f9fd,#fff)}
.audience-cards,.dashboard-previews{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.audience-cards article,.dashboard-previews article{display:flex;flex-direction:column;min-width:0;padding:22px;border:1px solid var(--border);border-radius:16px;background:#fff;box-shadow:0 12px 30px rgba(8,65,123,.08);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.audience-cards article:hover,.dashboard-previews article:hover{transform:translateY(-3px);border-color:rgba(255,107,10,.45);box-shadow:0 18px 36px rgba(8,65,123,.13)}
.audience-cards h3,.dashboard-previews h3{margin:12px 0 6px;font-size:19px}
.audience-cards p{margin-top:0;color:var(--text-muted)}
.audience-cards .check-list{margin-bottom:20px}
.audience-cards .btn{margin-top:auto}
.audience-icon{display:grid;place-items:center;width:52px;height:52px;border-radius:13px;background:linear-gradient(135deg,var(--navy),#0d65b4);color:#fff;font-size:12px;font-weight:900;letter-spacing:.04em}
.home-fairs-section{background:linear-gradient(135deg,#eef7ff,#fff8ef)}
.fair-promo-grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(260px,.7fr);gap:28px;align-items:center}
.fair-promo-grid h2{font-size:clamp(25px,3vw,36px)}
.fair-promo-result{min-height:230px;display:grid;align-content:center;gap:10px;padding:28px;border-radius:20px;background:linear-gradient(145deg,var(--navy),#0b63ad);color:#fff;box-shadow:0 20px 45px rgba(8,65,123,.2)}
.fair-promo-result strong{font-size:30px;color:#ffbf47}.fair-promo-result span{font-size:17px}
.dashboard-preview-section{background:#f5f9fd}
.dashboard-previews article{background:linear-gradient(180deg,#fff,#f9fcff)}
.dashboard-previews p{color:var(--text-muted)}
.dashboard-previews ul{display:grid;gap:7px;margin:10px 0 0;padding:0;list-style:none}
.dashboard-previews li{padding:8px 10px;border-radius:8px;background:#edf5fc;font-weight:750}
.dashboard-label{align-self:flex-start;padding:5px 9px;border-radius:99px;background:#fff0e6;color:var(--orange-dark);font-size:11px;font-weight:900;text-transform:uppercase}
.dashboard-preview-section .center-row{margin-top:24px}
.product-visual{min-height:180px;padding:0;overflow:hidden}
.product-visual img{width:100%;height:180px;object-fit:cover;transition:transform .3s ease}
.product-card:hover .product-visual img{transform:scale(1.035)}
.product-facts{display:grid;gap:6px;margin:14px 0}
.product-facts div{display:grid;grid-template-columns:125px 1fr;gap:8px;padding-bottom:6px;border-bottom:1px solid var(--border)}
.product-facts dt{color:var(--text-muted);font-size:12px;font-weight:800}.product-facts dd{margin:0;font-size:13px;font-weight:750}
.product-actions .text-link{width:100%;padding-top:5px}
.demand-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.demand-actions .text-link{align-self:center}
.pricing-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.package-for{min-height:70px}
.team-video-media.is-missing{display:none}
.team-video-box:has(.team-video-media.is-missing){display:none}

@media(max-width:1240px){
  .header-actions{display:none}
  .primary-nav>a,.nav-dropdown-toggle{font-size:12px;padding-inline:7px}
}
@media(max-width:1040px){
  .primary-nav>a,.nav-dropdown-toggle{font-size:13px}
  .pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:820px){
  .audience-cards,.dashboard-previews{grid-template-columns:1fr}
  .fair-promo-grid{grid-template-columns:1fr}
  .fair-promo-result{min-height:170px}
  .audience-section{padding:34px 0}
}
@media(max-width:600px){
  .pricing-grid{grid-template-columns:1fr}
  .product-facts div{grid-template-columns:1fr;gap:2px}
}

/* Brede slider met uitgelichte producten */
.featured-products-section{position:relative;overflow:hidden;padding:38px 0 42px;background:linear-gradient(180deg,#f5f9fd,#fff);border-bottom:1px solid var(--border)}
.featured-products-inner{position:relative}
.featured-products-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:20px}
.featured-products-head h2{margin:3px 0 7px;font-size:clamp(24px,3vw,34px)}
.featured-products-head p:not(.eyebrow){max-width:720px;margin:0;color:var(--text-muted)}
.featured-products-head>.btn,
.featured-products-head>.button-row{flex:0 0 auto}
.featured-products-head>.button-row{justify-content:flex-end;margin-top:0}
.featured-products-carousel{position:relative}
.featured-products-viewport{overflow:hidden;border-radius:16px}
.featured-products-track{display:flex;gap:16px;transition:transform .55s cubic-bezier(.22,.7,.25,1);will-change:transform}
.featured-product-slide{position:relative;flex:0 0 calc((100% - 48px)/4);min-width:0;overflow:hidden;border:1px solid var(--border);border-radius:15px;background:#fff;box-shadow:0 12px 28px rgba(8,65,123,.1);transition:transform .2s ease,box-shadow .2s ease}
.featured-product-slide:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(8,65,123,.16)}
.featured-product-image{position:relative;height:190px;overflow:hidden;background:linear-gradient(135deg,#0a427f,#1175bd)}
.featured-product-image img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.featured-product-slide:hover .featured-product-image img{transform:scale(1.04)}
.featured-product-image::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(4,24,46,.56),transparent 55%);pointer-events:none}
.featured-product-image .tag{position:absolute;z-index:1;left:12px;bottom:11px;background:var(--orange);color:#fff}
.featured-product-copy{min-height:126px;display:flex;flex-direction:column;padding:15px}
.featured-product-copy h3{margin:0 0 6px;font-size:17px}
.featured-product-copy p{display:-webkit-box;overflow:hidden;margin:0 0 12px;color:var(--text-muted);font-size:13px;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.featured-product-copy .text-link{margin-top:auto}

.featured-products-arrow{position:absolute;z-index:3;top:42%;width:42px;height:42px;border:1px solid rgba(255,255,255,.55);border-radius:50%;background:rgba(5,47,91,.92);color:#fff;font-size:20px;cursor:pointer;box-shadow:0 7px 18px rgba(4,30,58,.24);transition:transform .2s ease,background .2s ease}
.featured-products-arrow:hover{transform:scale(1.06);background:var(--orange)}
.featured-products-prev{left:-18px}.featured-products-next{right:-18px}
.featured-products-progress{display:flex;justify-content:center;gap:7px;margin-top:18px}
.featured-products-progress button{width:8px;height:8px;padding:0;border:0;border-radius:99px;background:#b9cce0;cursor:pointer;transition:width .2s ease,background .2s ease}
.featured-products-progress button.is-active{width:24px;background:var(--orange)}
@media(max-width:980px){.featured-product-slide{flex-basis:calc((100% - 16px)/2)}}
@media(max-width:620px){
  .featured-products-section{padding:30px 0 34px}
  .featured-products-head{display:block}.featured-products-head>.btn,.featured-products-head>.button-row{margin-top:16px}.featured-products-head>.button-row{justify-content:flex-start}
  .featured-product-slide{flex-basis:100%}
  .featured-products-prev{left:7px}.featured-products-next{right:7px}
}
@media(prefers-reduced-motion:reduce){.featured-products-track,.featured-product-slide,.featured-product-image img{transition:none}}

/* Eerste ingang: twee duidelijke routes */
.route-landing{display:none;position:relative;min-height:100vh;overflow:hidden;background:#062d57;color:#fff}
body.landing-active{overflow:auto;background:#062d57}
body.landing-active>.route-landing{display:block}
body.landing-active>.skip-link,
body.landing-active>.site-header,
body.landing-active>main,
body.landing-active>.site-footer{display:none}
.route-landing-backdrop{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,31,61,.96) 0%,rgba(5,51,96,.83) 48%,rgba(6,63,116,.52) 100%),linear-gradient(180deg,rgba(3,28,55,.16),rgba(3,34,66,.86)),url("../img/hero-trade-energy.png") center/cover}
.route-landing::after{content:"";position:absolute;inset:auto -15vw -38vh 30vw;height:70vh;border:1px solid rgba(255,255,255,.09);border-radius:50%;pointer-events:none}
.route-landing-header{position:relative;z-index:2;width:min(1180px,calc(100% - 40px));min-height:92px;display:flex;align-items:center;justify-content:space-between;margin:auto;border-bottom:1px solid rgba(255,255,255,.16)}
.route-landing-header .brand{color:#fff}
.landing-language{display:flex;gap:6px;padding:5px;border:1px solid rgba(255,255,255,.22);border-radius:10px;background:rgba(3,28,55,.3)}
.landing-language button{min-width:42px;padding:8px;border:0;border-radius:7px;background:transparent;color:rgba(255,255,255,.72);font:inherit;font-weight:850;cursor:pointer}
.landing-language button:hover,.landing-language button.is-active{background:#fff;color:var(--navy)}
.route-landing-content{position:relative;z-index:1;width:min(920px,calc(100% - 40px));margin:auto;padding:clamp(20px,3vh,32px) 0 22px}
.route-landing-content>.eyebrow{margin-bottom:10px;color:#ff8a24;font-size:10px}
.route-landing-content>h1{max-width:650px;margin:0;color:#fff;font-size:clamp(24px,2.7vw,32px);line-height:1.05;letter-spacing:-.02em}
.route-landing-lead{max-width:700px;margin:16px 0 22px;color:rgba(255,255,255,.8);font-size:clamp(13px,1.15vw,15px);line-height:1.6}
.route-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;max-width:820px}
.route-choice-grid article{position:relative;display:flex;flex-direction:column;min-height:175px;padding:18px;border:1px solid rgba(255,255,255,.24);border-radius:12px;background:rgba(4,37,70,.64);box-shadow:0 10px 24px rgba(1,19,37,.18);backdrop-filter:blur(10px);transition:transform .2s ease,border-color .2s ease,background .2s ease}
.route-choice-grid article:hover{transform:translateY(-4px);border-color:rgba(255,133,29,.7);background:rgba(4,43,82,.82)}
.route-choice-grid article:nth-child(2){background:rgba(255,255,255,.94);color:var(--text-dark)}
.route-choice-grid article:nth-child(2):hover{background:#fff}
.route-number{position:absolute;top:12px;right:14px;color:rgba(255,255,255,.28);font-size:17px;font-weight:900}
.route-choice-grid article:nth-child(2) .route-number{color:rgba(8,65,123,.18)}
.route-label{margin:0 36px 7px 0;color:#ff9a3d;font-size:9px;font-weight:900;letter-spacing:.05em;text-transform:uppercase}
.route-choice-grid h2{margin:0 0 8px;color:inherit;font-size:clamp(16px,1.5vw,19px);line-height:1.3}
.route-choice-grid article>p:not(.route-label){max-width:480px;margin:0 0 16px;color:rgba(255,255,255,.72);font-size:12px;line-height:1.55}
.route-choice-grid article:nth-child(2)>p:not(.route-label){color:var(--text-muted)}
.route-choice-grid .btn{align-self:flex-start;margin-top:auto}
.route-choice-grid .btn{min-height:35px;padding:8px 14px;font-size:12px}
.route-landing-note{margin:18px 0 0;color:rgba(255,255,255,.56);font-size:10px}
@media(max-width:760px){
  .route-landing-header{min-height:78px}.route-landing-header .brand small{max-width:170px}
  .route-landing-content{padding:22px 0 24px}.route-landing-content>h1{font-size:clamp(25px,7vw,32px)}
  .route-landing-lead{margin:13px 0 18px}
  .route-choice-grid{grid-template-columns:1fr;gap:14px}.route-choice-grid article{min-height:165px;padding:16px}
}
@media(max-width:430px){
  .route-landing-header,.route-landing-content{width:calc(100% - 28px)}
  .route-landing-header .brand small{display:none}.route-landing-header .brand{min-width:0}
  .route-landing-content>h1{font-size:25px}
}

/* Alleen informatie tonen die bij de gekozen ingang hoort */
body.audience-supplier [data-show-for]:not([data-show-for~="supplier"]),
body.audience-buyer [data-show-for]:not([data-show-for~="buyer"]){display:none!important}
body.audience-supplier .audience-actions{max-width:none}
body.audience-supplier .audience-actions .btn{flex:0 0 auto;width:auto;min-width:230px;padding:12px 24px}
@media(max-width:430px){body.audience-supplier .audience-actions .btn{width:100%;min-width:0}}

/* Rustige, consistente witruimte op alle inhoudspagina's */
body:not(.landing-active) main .section{padding-top:64px;padding-bottom:64px}
body:not(.landing-active) main .section-head{margin-bottom:28px}
body:not(.landing-active) main .section-head h1,
body:not(.landing-active) main .section-head h2{margin-bottom:12px}
body:not(.landing-active) main p{line-height:1.65}
body:not(.landing-active) main h2{line-height:1.25}
body:not(.landing-active) main h3{line-height:1.35}
body:not(.landing-active) main .page-hero{padding-top:70px;padding-bottom:60px}
body:not(.landing-active) main .page-hero p:not(.eyebrow){margin-top:18px;line-height:1.65}
body:not(.landing-active) main .product-grid,
body:not(.landing-active) main .demand-grid,
body:not(.landing-active) main .event-grid,
body:not(.landing-active) main .pricing-grid,
body:not(.landing-active) main .feature-grid,
body:not(.landing-active) main .article-grid,
body:not(.landing-active) main .story-grid,
body:not(.landing-active) main .dashboard-previews{gap:20px}
body:not(.landing-active) main .product-body,
body:not(.landing-active) main .demand-card,
body:not(.landing-active) main .event-card,
body:not(.landing-active) main .price-card,
body:not(.landing-active) main .feature-grid article,
body:not(.landing-active) main .article-grid article,
body:not(.landing-active) main .story-grid article{padding:20px}
body:not(.landing-active) main .product-body h3,
body:not(.landing-active) main .demand-card h3,
body:not(.landing-active) main .event-card h3,
body:not(.landing-active) main .price-card h2{margin-top:10px;margin-bottom:10px}
body:not(.landing-active) main .check-list{display:grid;gap:9px;margin-top:16px;margin-bottom:20px}
body:not(.landing-active) main .product-actions,
body:not(.landing-active) main .demand-actions,
body:not(.landing-active) main .event-actions,
body:not(.landing-active) main .button-row{gap:12px;margin-top:18px}
body:not(.landing-active) main .filter-bar{gap:12px;margin-bottom:28px;padding:16px}
body:not(.landing-active) main .form-card,
body:not(.landing-active) main .contact-aside,
body:not(.landing-active) main .audience-panel{padding:24px}
body:not(.landing-active) main .form-grid{gap:4px 18px}
body:not(.landing-active) main label{margin-bottom:16px}
body:not(.landing-active) main input,
body:not(.landing-active) main select,
body:not(.landing-active) main textarea{line-height:1.4}
body:not(.landing-active) main .table-wrap{margin-top:32px}
body:not(.landing-active) main .steps{gap:20px}
body:not(.landing-active) main .steps article{padding:20px}
body:not(.landing-active) main .split-layout,
body:not(.landing-active) main .two-column,
body:not(.landing-active) main .form-layout,
body:not(.landing-active) main .magazine-page{gap:24px}
@media(max-width:760px){
  body:not(.landing-active) main .section{padding-top:44px;padding-bottom:44px}
  body:not(.landing-active) main .section-head{margin-bottom:22px}
  body:not(.landing-active) main .page-hero{padding-top:50px;padding-bottom:42px}
  body:not(.landing-active) main .product-body,
  body:not(.landing-active) main .demand-card,
  body:not(.landing-active) main .event-card,
  body:not(.landing-active) main .price-card,
  body:not(.landing-active) main .form-card,
  body:not(.landing-active) main .contact-aside{padding:17px}
}

/* Algemene terugknop voor alle interne pagina's */
.site-back-button{position:fixed;z-index:40;top:96px;left:16px;display:inline-flex;align-items:center;gap:7px;min-height:36px;padding:8px 13px;border:1px solid rgba(255,255,255,.38);border-radius:99px;background:rgba(5,47,91,.9);color:#fff;font:inherit;font-size:12px;font-weight:850;cursor:pointer;box-shadow:0 8px 20px rgba(3,28,55,.2);backdrop-filter:blur(8px);transition:transform .2s ease,background .2s ease}
.site-back-button:hover{transform:translateX(-2px);background:var(--orange)}
.site-back-button:focus-visible{outline:3px solid rgba(255,107,10,.3);outline-offset:2px}
@media(max-width:1120px){.site-back-button{top:82px;left:12px}}

/* Gecontroleerd B2B-promotie- en leadmodel */
.package-model-intro{display:grid;gap:20px;margin-bottom:30px;padding:26px 28px;border:1px solid #c9ddeb;border-radius:18px;background:linear-gradient(135deg,#f7fbff,#edf6fd);box-shadow:0 14px 32px rgba(5,58,108,.08)}
.package-model-intro>p{max-width:980px;margin:0;color:var(--navy);font-size:17px;font-weight:700}
.privacy-points{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.privacy-points span{display:flex;align-items:center;gap:8px;padding:11px 13px;border-radius:10px;background:#fff;color:var(--navy);font-size:13px;font-weight:850}
.privacy-points span::before{content:"✓";display:grid;place-items:center;flex:0 0 22px;height:22px;border-radius:50%;background:#e8f5ee;color:#16714a}
.pricing-grid .price-card{display:flex;flex-direction:column}
.pricing-grid .price-card .check-list{flex:1}
.pricing-grid .price-card>.btn{align-self:stretch;text-align:center}
.package-conditions{margin-top:30px;padding:26px 28px;border-radius:18px;background:linear-gradient(135deg,var(--navy),#0b5a9c);color:#fff}
.package-conditions h2{margin-top:0;color:#fff}
.package-conditions p{max-width:950px;color:rgba(255,255,255,.84)}
.request-consent{display:grid!important;grid-template-columns:auto 1fr;align-items:start;gap:11px;padding:14px 15px;border:1px solid #c9ddeb;border-radius:11px;background:#f4f9fd;font-size:13px;font-weight:700}
.request-consent input{width:19px!important;height:19px;margin:1px 0 0}
@media(max-width:760px){
  .package-model-intro,.package-conditions{padding:20px}
  .privacy-points{grid-template-columns:1fr 1fr}
}
@media(max-width:460px){.privacy-points{grid-template-columns:1fr}}
.package-registration-section{background:linear-gradient(180deg,#f6fbff,#fff)}
.event-registration-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:24px;align-items:start}
.event-registration-main{display:grid;gap:22px}
.selected-event-card,.included-card,.additional-events-card,.event-registration-form-card,.event-registration-confirmation,.total-card{padding:24px;border:1px solid #c9ddeb;border-radius:18px;background:#fff;box-shadow:0 14px 32px rgba(5,58,108,.08)}
.selected-event-card h2,.included-card h2,.additional-events-card h2,.event-registration-form-card h2{margin:0 0 10px}
.selected-event-card.is-error{border-color:#ffc8c0;background:#fff7f5}
.compact-steps{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.compact-steps article{padding:16px;border:1px solid #d4e5f3;border-radius:16px;background:#f7fbff}
.compact-steps span{display:grid;place-items:center;width:32px;height:32px;margin-bottom:10px;border-radius:50%;background:#ff7a16;color:#fff;font-weight:900}
.two-column-list{grid-template-columns:repeat(2,minmax(0,1fr))}
.event-registration-side{position:sticky;top:86px;display:grid;gap:16px}
.single-price-card{margin:0}
.single-price-card .btn{width:100%;justify-content:center}
.total-card h3{margin-top:0}.total-card dl{display:grid;gap:9px;margin:0}
.total-card dl div{display:flex;justify-content:space-between;gap:12px;border-bottom:1px solid #e3edf6;padding-bottom:8px}
.total-card dt{color:var(--text-muted)}.total-card dd{margin:0;font-weight:900;color:var(--navy)}
.total-card .total{border-bottom:0;padding-top:4px;font-size:1.08em}
.event-checkbox-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:16px}
.event-checkbox-card{display:grid;grid-template-columns:auto 1fr auto;gap:11px;align-items:center;padding:14px;border:1px solid #d2e3f1;border-radius:14px;background:#f8fbff;cursor:pointer;transition:.18s ease}
.event-checkbox-card:hover{border-color:#ffb273;transform:translateY(-2px)}
.event-checkbox-card input{width:18px;height:18px;accent-color:#ff7a16}
.event-checkbox-card strong{display:block;color:var(--navy);line-height:1.25}.event-checkbox-card small{display:block;margin-top:4px;color:var(--text-muted)}
.event-checkbox-card b{color:#ff6b0a;white-space:nowrap}.event-checkbox-card.is-primary{background:#fff7ef;border-color:#ffc999}
.event-registration-form-card{margin-top:24px}.event-registration-form-card form{display:grid;gap:20px}
.event-registration-modal[hidden]{display:none!important}
.event-registration-modal{position:fixed;z-index:1000;inset:0;display:grid;place-items:center;margin:0;padding:22px;background:rgba(2,25,48,.66);backdrop-filter:blur(8px);overflow:auto}
.event-registration-modal-panel{width:min(920px,100%);max-height:calc(100vh - 44px);overflow:auto;padding:26px;border:1px solid #c9ddeb;border-radius:20px;background:#fff;box-shadow:0 24px 60px rgba(1,19,37,.34)}
.event-registration-modal-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:18px}
.modal-close-button{display:grid;place-items:center;flex:0 0 38px;width:38px;height:38px;border:1px solid #d2e3f1;border-radius:50%;background:#f7fbff;color:var(--navy);font-size:26px;font-weight:900;cursor:pointer}
.modal-close-button:hover{border-color:#ffb273;background:#fff3e8;color:#ff6b0a}
body.registration-modal-open{overflow:hidden}
.event-registration-form-card fieldset{margin:0;padding:0;border:0}.event-registration-form-card legend{margin-bottom:12px;color:var(--navy);font-weight:900}
.selected-events-summary{display:grid;gap:8px;padding:14px;border-radius:12px;background:#f4f9fd}.selected-events-summary p{margin:0}.selected-events-summary span{color:var(--text-muted)}
.registration-consents{display:grid;gap:10px}.registration-consents label{display:grid;grid-template-columns:auto 1fr;gap:10px;align-items:start;padding:12px;border:1px solid #d4e5f3;border-radius:12px;background:#f8fbff}
.registration-consents input{width:18px;height:18px;accent-color:#ff7a16}
.event-registration-confirmation{margin-top:24px;border-color:#9be3b7;background:#f1fff6}.event-registration-confirmation dl{display:grid;gap:8px;margin-bottom:0}
.event-registration-confirmation div{display:grid;grid-template-columns:180px 1fr;gap:12px}.event-registration-confirmation dt{font-weight:900;color:var(--navy)}.event-registration-confirmation dd{margin:0}
.mobile-sticky-cta{display:none}
@media(max-width:760px){
  .event-registration-layout{grid-template-columns:1fr}.event-registration-side{position:static}.compact-steps,.event-checkbox-grid,.two-column-list{grid-template-columns:1fr}
  .selected-event-card,.included-card,.additional-events-card,.event-registration-form-card,.event-registration-confirmation,.total-card{padding:18px}
  .event-registration-modal{padding:12px;align-items:start}
  .event-registration-modal-panel{max-height:calc(100vh - 24px);padding:18px;border-radius:16px}
  .event-registration-modal-head{gap:10px}
  .event-registration-confirmation div{grid-template-columns:1fr}
  .mobile-sticky-cta{position:fixed;z-index:50;left:14px;right:14px;bottom:14px;display:flex;align-items:center;justify-content:center;min-height:46px;border-radius:14px;background:#ff6b0a;color:#fff;font-weight:950;text-decoration:none;box-shadow:0 14px 26px rgba(1,25,48,.25)}
  body:not(.landing-active):has([data-view="pakketten"].is-active){padding-bottom:74px}
}
.product-card-tags{display:flex;flex-wrap:wrap;gap:7px}.new-product-tag{background:#fff2d5!important;color:#8a5700!important}

/* Over ons en consistente route-navigatie */
body:not(.landing-active)>.site-header{display:block!important}
.primary-nav [hidden]{display:none!important}
.over-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#062f5c 0%,#0a4f8d 65%,#106caf 100%)}
.over-hero::after{content:"";position:absolute;right:-130px;bottom:-240px;width:540px;height:540px;border:1px solid rgba(255,255,255,.16);border-radius:50%;box-shadow:0 0 0 65px rgba(255,255,255,.035),0 0 0 130px rgba(255,107,10,.06)}
.over-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);align-items:center;gap:48px}
.over-hero-grid>div>p:not(.eyebrow){max-width:760px}
.over-hero-card{padding:28px;border:1px solid rgba(255,255,255,.18);border-radius:22px;background:rgba(3,31,60,.72);box-shadow:0 24px 50px rgba(1,22,43,.26);backdrop-filter:blur(12px)}
.over-hero-card h2{margin:8px 0 18px;color:#fff;font-size:22px}.over-hero-card ul{display:grid;gap:10px;margin:0;padding:0;list-style:none}.over-hero-card li{position:relative;padding-left:25px;color:rgba(255,255,255,.84)}.over-hero-card li::before{content:"✓";position:absolute;left:0;color:#ffb33c;font-weight:900}
.over-card-mark{display:grid;place-items:center;width:54px;height:54px;margin-bottom:22px;border-radius:15px;background:linear-gradient(135deg,#ff7b18,var(--orange));color:#fff;font-size:34px;font-weight:950}
.over-intro-section{background:#f4f9fd}.over-intro-grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);align-items:center;gap:48px}.over-intro-grid h2{font-size:clamp(26px,3vw,38px)}
.over-region-strip{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;align-items:center;gap:12px}.over-region-strip>article{min-height:150px;padding:20px;border:1px solid #cfe0ee;border-radius:16px;background:#fff;box-shadow:0 12px 28px rgba(8,65,123,.07)}.over-region-strip strong,.over-region-strip span{display:block}.over-region-strip strong{color:var(--navy);font-size:17px}.over-region-strip article span{margin-top:9px;color:var(--text-muted)}.over-region-strip>span{color:var(--orange);font-size:23px;font-weight:900}
.over-pillars-section{background:#fff}.over-pillar-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.over-pillar-grid article{padding:25px;border:1px solid var(--border);border-radius:18px;background:linear-gradient(180deg,#fff,#f7fbff);box-shadow:0 14px 30px rgba(8,65,123,.07);transition:transform .2s ease,border-color .2s ease}.over-pillar-grid article:hover{transform:translateY(-4px);border-color:#9fc5e6}.over-pillar-grid article>span{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#fff0e6;color:var(--orange-dark);font-weight:950}.over-pillar-grid h3{margin:18px 0 8px;font-size:21px}.over-pillar-grid p{color:var(--text-muted)}
.over-values-section{background:linear-gradient(135deg,#062f5c,#084779);color:#fff}.over-values-grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:50px;align-items:center}.over-values-grid h2{color:#fff;font-size:clamp(26px,3vw,38px)}.over-values-grid>div:first-child>p:not(.eyebrow){color:rgba(255,255,255,.74)}.over-value-list{display:grid;grid-template-columns:1fr 1fr;gap:12px}.over-value-list article{padding:18px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.07)}.over-value-list strong,.over-value-list span{display:block}.over-value-list strong{color:#ffbd4a}.over-value-list span{margin-top:5px;color:rgba(255,255,255,.76)}
.over-cta-section{background:#edf5fb}.over-cta-card{display:flex;align-items:center;justify-content:space-between;gap:36px;padding:32px 36px;border-radius:22px;background:#fff;box-shadow:0 18px 40px rgba(8,65,123,.1)}.over-cta-card h2{margin:5px 0 8px}.over-cta-card p{margin-bottom:0}.over-cta-card .button-row{flex:0 0 auto;justify-content:flex-end}
@media(max-width:1000px){.over-hero-grid,.over-intro-grid,.over-values-grid{grid-template-columns:1fr}.over-region-strip{margin-top:6px}.over-cta-card{display:block}.over-cta-card .button-row{justify-content:flex-start}}
@media(max-width:760px){.over-pillar-grid,.over-value-list{grid-template-columns:1fr}.over-region-strip{grid-template-columns:1fr}.over-region-strip>span{transform:rotate(90deg);justify-self:center}.over-region-strip>article{min-height:0}.over-hero-card,.over-cta-card{padding:21px}}

/* Xpozle Magazine online reader */
.xpozle-magazine-cover{position:relative;isolation:isolate;overflow:hidden;display:flex;flex-direction:column;justify-content:space-between;aspect-ratio:3/4;min-height:0;padding:26px;border-radius:22px;background:radial-gradient(circle at 28% 22%,rgba(21,119,196,.55),transparent 33%),linear-gradient(145deg,#021d3b 0%,#063765 55%,#021426 100%);color:#fff;box-shadow:0 24px 55px rgba(3,22,43,.28)}
.xpozle-magazine-cover::before{content:"";position:absolute;inset:18px;border:1px solid rgba(255,255,255,.14);border-radius:18px;pointer-events:none}.cover-glow{position:absolute;border-radius:999px;background:rgba(255,107,10,.72);filter:blur(18px)}.cover-glow-one{left:18%;bottom:23%;width:40px;height:40px}.cover-glow-two{right:15%;top:25%;width:32px;height:32px}.cover-continent{position:absolute;z-index:-1;border:1px solid rgba(255,255,255,.11);background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));filter:drop-shadow(0 0 18px rgba(29,147,219,.22))}.cover-continent-left{left:12%;top:30%;width:135px;height:105px;border-radius:54% 46% 60% 40%/45% 62% 38% 55%;transform:rotate(-18deg)}.cover-continent-right{right:8%;top:18%;width:165px;height:125px;border-radius:40% 60% 43% 57%/50% 38% 62% 50%;transform:rotate(15deg)}.cover-orbit{position:absolute;z-index:-1;border:1px solid rgba(255,148,53,.48);border-radius:50%;transform:rotate(-15deg)}.orbit-one{left:7%;top:31%;width:85%;height:36%}.orbit-two{left:18%;top:39%;width:70%;height:28%;transform:rotate(17deg)}.cover-logo{position:relative;z-index:1}.cover-logo span{display:block;font-family:Georgia,serif;font-size:clamp(46px,7vw,82px);font-weight:700;line-height:.82;letter-spacing:-.07em}.cover-logo em{display:block;margin-top:5px;color:#ff8a2a;font-family:Georgia,serif;font-size:clamp(20px,2.8vw,31px);font-style:normal}.cover-line{width:150px;height:2px;margin:10px 0 0;background:linear-gradient(90deg,#fff,#ff7b18,transparent)}.xpozle-magazine-cover p{max-width:360px;margin:auto 0 8px;color:rgba(255,255,255,.9);font-size:clamp(20px,3vw,32px);font-family:Georgia,serif;line-height:1.05}.xpozle-magazine-cover strong,.xpozle-magazine-cover small{position:relative;z-index:1;display:block}.xpozle-magazine-cover strong{color:#ffb44d;font-size:14px;letter-spacing:.04em;text-transform:uppercase}.xpozle-magazine-cover small{margin-top:8px;color:rgba(255,255,255,.72)}
.mini-cover{width:min(220px,100%);min-height:0;padding:20px}.mini-cover .cover-logo span{font-size:46px}.mini-cover .cover-logo em{font-size:20px}.mini-cover p{font-size:18px}.large-cover{width:min(560px,100%);min-height:0;margin:0 auto;aspect-ratio:1/1.414}
.magazine-reader-section{background:linear-gradient(180deg,#eef6fc,#fff)}.magazine-reader{display:grid;gap:22px}.magazine-toolbar{display:flex;align-items:end;justify-content:space-between;gap:24px;padding:20px 22px;border:1px solid #cfe0ee;border-radius:18px;background:#fff;box-shadow:0 14px 34px rgba(8,65,123,.08)}.magazine-toolbar h2{margin:4px 0 0}.magazine-page-indicator{display:inline-flex;align-items:center;min-height:42px;padding:0 12px;border-radius:999px;background:#edf5fb;color:var(--navy);font-weight:850}.magazine-book{position:relative;min-height:720px;perspective:1400px}.magazine-page-turn{position:absolute;inset:0;display:none;transform-origin:left center;animation:magazinePageIn .38s ease both}.magazine-page-turn.is-active{display:block}.magazine-sheet{min-height:720px;padding:clamp(24px,4vw,52px);border:1px solid #c9ddec;border-radius:24px;background:#fff;box-shadow:0 26px 60px rgba(5,43,83,.14)}.magazine-cover-sheet{padding:0;background:transparent;border:0;box-shadow:none}.magazine-editorial h2,.magazine-sheet-head h2,.magazine-closing h2{font-size:clamp(28px,4vw,46px)}.magazine-editorial>p:not(.eyebrow),.magazine-closing>p{max-width:780px;color:var(--text-muted);font-size:18px}.magazine-summary-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:34px}.magazine-summary-grid article{padding:22px;border-radius:18px;background:linear-gradient(135deg,#f7fbff,#edf6fd);border:1px solid #d5e6f2}.magazine-summary-grid strong{display:block;color:var(--orange-dark);font-size:36px}.magazine-summary-grid span{color:var(--navy);font-weight:850}.magazine-item-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.magazine-product-item,.magazine-demand-item{min-width:0;padding:18px;border:1px solid #d5e4f0;border-radius:18px;background:linear-gradient(180deg,#fff,#f8fbfe)}.magazine-product-item img{width:100%;height:155px;margin-bottom:12px;border-radius:13px;object-fit:cover}.magazine-product-item h3,.magazine-demand-item h3{margin:10px 0 7px;color:var(--navy)}.magazine-product-item p,.magazine-demand-item p{display:-webkit-box;overflow:hidden;color:var(--text-muted);-webkit-line-clamp:3;-webkit-box-orient:vertical}.magazine-product-item small{display:block;margin-top:12px;color:#60758c;font-weight:750}.magazine-meta-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.magazine-meta-row span{padding:7px 10px;border-radius:99px;background:#edf5fb;color:var(--navy);font-size:12px;font-weight:850}.magazine-closing{display:grid;align-content:center}.magazine-note{margin:0;color:var(--text-muted);font-size:13px}.magazine-note+.magazine-note,.mini-cover .cover-topic-line+strong{display:none}.magazine-toolbar .btn[disabled]{opacity:.45;cursor:not-allowed}
@keyframes magazinePageIn{from{opacity:0;transform:rotateY(-7deg) translateX(12px)}to{opacity:1;transform:rotateY(0) translateX(0)}}
@media(max-width:900px){.magazine-toolbar{align-items:flex-start;flex-direction:column}.magazine-toolbar .button-row{justify-content:flex-start}.magazine-book,.magazine-sheet{min-height:650px}.magazine-item-grid,.magazine-summary-grid{grid-template-columns:1fr}.large-cover{min-height:620px}}
@media(max-width:560px){.magazine-toolbar .button-row{align-items:stretch;flex-direction:column;width:100%}.magazine-toolbar .btn,.magazine-page-indicator{justify-content:center;width:100%}.magazine-book,.magazine-sheet{min-height:760px}.cover-logo span{font-size:52px}.cover-logo em{font-size:22px}}

/* Compacte websitepagina's: de route-keuze/voorpagina blijft bewust op normaal formaat. */
body:not(.landing-active){--header-height:70px}
body:not(.landing-active) .container{width:min(1062px,calc(100% - 40px))}
body:not(.landing-active) .narrow{width:min(756px,calc(100% - 40px))}
body:not(.landing-active) .header-inner{min-height:70px;gap:18px}
body:not(.landing-active) .primary-nav>a,
body:not(.landing-active) .nav-item>a,
body:not(.landing-active) .nav-dropdown-toggle{min-height:36px;padding:7px 9px;font-size:12.6px}
body:not(.landing-active) .dropdown a,
body:not(.landing-active) .language-menu a,
body:not(.landing-active) .language-dropdown button{padding:8px 9px;font-size:12.6px}
body:not(.landing-active) .header-actions{gap:7px}
body:not(.landing-active) .header-actions .btn,
body:not(.landing-active) .language-switch button{min-height:36px;height:36px;padding-inline:10px;font-size:12.6px}
body:not(.landing-active) main{font-size:90%}
body:not(.landing-active) main .hero,
body:not(.landing-active) main .hero-grid{min-height:clamp(540px,74vh,684px)}
body:not(.landing-active) main .hero-grid{gap:38px;padding:54px 0}
body:not(.landing-active) main .hero-copy h1,
body:not(.landing-active) main .page-hero h1{font-size:clamp(34px,5.4vw,68px)}
body:not(.landing-active) main .hero-lead,
body:not(.landing-active) main .page-hero p:not(.eyebrow){font-size:18px}
body:not(.landing-active) main .section-head h2{font-size:clamp(25px,3.6vw,43px)}
body:not(.landing-active) main .btn{min-height:38px;padding:9px 15px;font-size:.95em}
body:not(.landing-active) main .btn-large{min-height:45px;padding-inline:20px}
body:not(.landing-active) main input,
body:not(.landing-active) main select,
body:not(.landing-active) main textarea{padding:11px 13px}
body:not(.landing-active) main .product-visual img{height:auto}
body:not(.landing-active) main .team-intro-copy h2,
body:not(.landing-active) main .fair-promo-grid h2,
body:not(.landing-active) main .featured-products-head h2{font-size:clamp(23px,3.25vw,40px)}
body:not(.landing-active) main .over-intro-grid h2,
body:not(.landing-active) main .over-values-grid h2{font-size:clamp(23px,2.7vw,34px)}
body:not(.landing-active) main .magazine-book,
body:not(.landing-active) main .magazine-sheet{min-height:648px}
body:not(.landing-active) main .large-cover{min-height:0}

/* Kopteksten 20% rustiger en magazinebladen in echte paginaverhouding. */
body:not(.landing-active) main h1{font-size:clamp(27px,4.3vw,54px)!important;line-height:1.04}
body:not(.landing-active) main .hero-copy h1{max-width:680px;font-size:clamp(26px,3.85vw,48px)!important;line-height:1.05}
body:not(.landing-active) main h2{font-size:clamp(20px,2.9vw,34px)!important;line-height:1.18}
body:not(.landing-active) main h3{font-size:clamp(14px,1.55vw,18px)!important;line-height:1.28}
body:not(.landing-active) main .page-hero{padding-top:54px;padding-bottom:44px}
body:not(.landing-active) main .page-hero p:not(.eyebrow){font-size:15px}

body:not(.landing-active) main .magazine-toolbar{width:min(900px,100%);margin:0 auto}
body:not(.landing-active) main #view-magazine .page-hero .container{text-align:center}
body:not(.landing-active) main #view-magazine .page-hero h1,
body:not(.landing-active) main #view-magazine .page-hero p{margin-left:auto;margin-right:auto}
body:not(.landing-active) main .magazine-book{width:min(820px,100%);aspect-ratio:1/1.414;min-height:0!important;margin:0 auto}
body:not(.landing-active) main .magazine-page-turn{height:100%}
body:not(.landing-active) main .magazine-sheet{height:100%;min-height:0!important;overflow:hidden;padding:24px}
body:not(.landing-active) main .magazine-cover-sheet{padding:0}
body:not(.landing-active) main .large-cover{width:100%;height:100%;aspect-ratio:auto}
body:not(.landing-active) main .magazine-sheet-head{margin-bottom:12px}
body:not(.landing-active) main .magazine-sheet-head h2{font-size:24px!important}
body:not(.landing-active) main .magazine-item-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px}
body:not(.landing-active) main .magazine-product-item,
body:not(.landing-active) main .magazine-demand-item{position:relative;padding:10px;border-radius:13px}
body:not(.landing-active) main .magazine-product-item{padding-bottom:54px}
body:not(.landing-active) main .magazine-product-item::after{content:"QR";position:absolute;right:9px;bottom:9px;display:grid;place-items:center;width:40px;height:40px;border:2px dashed #bfd5e8;border-radius:8px;background:#fff;color:var(--navy);font-size:10px;font-weight:950}
body:not(.landing-active) main .magazine-product-item img{height:70px;margin-bottom:6px;border-radius:10px}
body:not(.landing-active) main .magazine-product-item .tag,
body:not(.landing-active) main .magazine-demand-item .tag{min-height:18px;padding:2px 6px;font-size:9px}
body:not(.landing-active) main .magazine-product-item h3,
body:not(.landing-active) main .magazine-demand-item h3{margin:5px 0 4px;font-size:12px!important}
body:not(.landing-active) main .magazine-product-item p,
body:not(.landing-active) main .magazine-demand-item p{margin:0;font-size:10px;line-height:1.3;-webkit-line-clamp:2}
body:not(.landing-active) main .magazine-product-item small{display:block;margin-top:6px;padding-right:46px;font-size:8px;line-height:1.25}
body:not(.landing-active) main .magazine-meta-row{gap:5px;margin-top:8px}
body:not(.landing-active) main .magazine-meta-row span{padding:4px 6px;font-size:9px}

/* Website overal compacter: circa 80% schaal. */
body.landing-active .route-landing-header{width:min(944px,calc(100% - 40px));min-height:74px}
body.landing-active .route-landing-content{width:min(736px,calc(100% - 40px));padding:clamp(16px,2.4vh,26px) 0 18px}
body.landing-active .route-landing-content>.eyebrow{font-size:8px}
body.landing-active .route-landing-content>h1{max-width:520px;font-size:clamp(19px,2.15vw,26px)}
body.landing-active .route-landing-lead{max-width:560px;margin:13px 0 18px;font-size:clamp(11px,.92vw,12px)}
body.landing-active .route-choice-grid{gap:18px}
body.landing-active .route-card{min-height:212px;padding:22px}
body.landing-active .route-choice-grid h2{font-size:clamp(13px,1.2vw,15px)}
body.landing-active .route-choice-grid p{font-size:12px}
body.landing-active .route-choice-grid .btn{min-height:31px;padding:7px 12px;font-size:10px}
body.landing-active .route-landing-note{font-size:8px}
body.landing-active .route-landing-header{width:min(1090px,calc(100% - 40px));min-height:62px}
body.landing-active .route-landing-header .brand{transform:scale(.76);transform-origin:left center}
body.landing-active .landing-language{transform:scale(.8);transform-origin:right center}
body.landing-active .route-landing-content{position:relative;width:min(1090px,calc(100% - 40px));margin:0 auto;min-height:min(650px,calc(100vh - 74px));padding:clamp(10px,1.4vh,16px) 0 10px}
body.landing-active .route-landing-content>.eyebrow,
body.landing-active .route-landing-content>h1,
body.landing-active .route-landing-lead,
body.landing-active .route-growth-line,
body.landing-active .route-benefits{position:relative;z-index:3;max-width:650px}
body.landing-active .route-landing-content>.eyebrow{font-size:8px;margin-bottom:7px}
body.landing-active .route-landing-content>h1{max-width:620px;font-size:clamp(28px,3.1vw,38px);line-height:1.07}
body.landing-active .route-landing-lead{max-width:650px;font-size:clamp(13px,1.25vw,15px);line-height:1.45;margin:13px 0 12px}
body.landing-active .route-growth-line{max-width:620px;margin:-5px 0 10px;color:#FF7417;font-size:clamp(8.5px,.76vw,10.2px);line-height:1.35;font-weight:900;letter-spacing:.01em}
body.landing-active .route-benefits{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 18px}
body.landing-active .route-benefits span{display:inline-flex;align-items:center;min-height:26px;padding:5px 10px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.09);color:rgba(255,255,255,.88);font-size:10px;font-weight:850;letter-spacing:.01em;backdrop-filter:blur(6px)}
body.landing-active .route-mobile-government-note{display:none}
body.landing-active .route-cards{position:relative;z-index:3;display:grid;grid-template-columns:360px 360px;justify-content:start;align-items:stretch;gap:clamp(118px,11vw,160px);max-width:none;margin-top:2px;margin-left:0}
body.landing-active .route-cards article{position:relative;z-index:3;display:flex;flex-direction:column;min-height:166px;padding:16px 17px;border-radius:12px;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,background .25s ease}
body.landing-active .route-card--promotion{padding-right:18px;background:linear-gradient(135deg,#0B4F7A 0%,#08658F 100%);border:2px solid #FF7417;color:#fff;box-shadow:0 16px 38px rgba(0,0,0,.28)}
body.landing-active .route-card--products{padding-left:82px;transform:translate(-76px,0);background:#E9EFF5;border:1px solid rgba(11,59,94,.15);box-shadow:none;color:#153A5F}
body.landing-active .route-presenter,
body.landing-active .hero-person{position:absolute;z-index:5;left:246px;bottom:-48px;width:clamp(232px,18.8vw,306px);max-height:none;object-fit:contain;object-position:center bottom;margin:0;transform:none;opacity:1;mix-blend-mode:normal;pointer-events:none;image-rendering:auto;filter:contrast(1.08) saturate(1.08) brightness(1.04) drop-shadow(0 18px 30px rgba(0,0,0,.28))}
body.landing-active .route-presenter-mobile{display:none}
@media(min-width:981px){
  body.landing-active .route-landing-content{--route-content-shift:130px}
  body.landing-active .route-landing-content{transform:none;transform-origin:top center}
  body.landing-active .route-landing-content>.eyebrow,
  body.landing-active .route-landing-content>h1,
  body.landing-active .route-landing-lead,
  body.landing-active .route-growth-line,
  body.landing-active .route-benefits,
  body.landing-active .route-cards{margin-left:var(--route-content-shift)}
  body.landing-active .route-cards{transform:translateY(38px)}
  body.landing-active .route-landing-note{margin-left:var(--route-content-shift)}
  body.landing-active .route-landing-lead{margin-top:16px;margin-bottom:14px}
  body.landing-active .route-card--promotion{transform:translateY(-6px)}
  body.landing-active .route-card--products{transform:translate(-76px,0)}
  body.landing-active .route-presenter,
  body.landing-active .hero-person{left:calc(127px + var(--route-content-shift));bottom:-29px}
}
@media(hover:hover) and (pointer:fine){
  body.landing-active .route-card--promotion:hover{transform:translateY(-10px);box-shadow:0 20px 44px rgba(0,0,0,.34)}
  body.landing-active .route-card--products:hover{transform:translate(-76px,-2px)}
}
@media(prefers-reduced-motion:reduce){
  body.landing-active .route-cards article,
  body.landing-active .route-cards .btn{transition:none!important}
}
body.landing-active .route-cards h2{font-size:clamp(14px,1.25vw,16px);margin-bottom:7px}
body.landing-active .route-cards p{max-width:285px;font-size:10px;line-height:1.42;margin-bottom:12px}
body.landing-active .route-card--promotion .route-label{color:#FF7417}
body.landing-active .route-card--promotion h2{color:#fff}
body.landing-active .route-card--promotion p{color:rgba(255,255,255,.82)}
body.landing-active .route-card--promotion .route-number{color:rgba(255,255,255,.25)}
body.landing-active .route-card--promotion .btn{background:#FF7417;color:#fff;border:2px solid #FF7417;font-weight:700;min-height:44px;padding:15px 24px;box-shadow:0 8px 20px rgba(255,116,23,.24)}
body.landing-active .route-card--promotion .btn:focus-visible{outline:3px solid rgba(255,255,255,.75);outline-offset:3px}
body.landing-active .route-card--products h2{color:#153A5F}
body.landing-active .route-card--products p{color:#647A92}
body.landing-active .route-card--products .route-label{color:#FF7417}
body.landing-active .route-card--products .route-number{color:rgba(21,58,95,.16)}
body.landing-active .route-card--products .btn{background:rgba(255,255,255,.55);border:1px solid rgba(255,116,23,.45);color:#0B4777;box-shadow:none;font-weight:700}
@media(hover:hover) and (pointer:fine){
  body.landing-active .route-card--promotion .btn:hover{background:#E9640D;border-color:#E9640D;transform:translateY(-2px);box-shadow:0 12px 24px rgba(255,116,23,.32)}
  body.landing-active .route-card--products .btn:hover{background:#fff;border-color:#FF7417;transform:translateY(-1px);box-shadow:none}
}
body.landing-active .route-cards .route-label{margin-bottom:7px;font-size:9px}
body.landing-active .route-cards .route-number{top:12px;right:14px;font-size:17px}
body.landing-active .route-card--promotion .route-number{top:27px}
body.landing-active .route-cards .btn{min-height:32px;padding:7px 12px;font-size:10px;font-weight:900}
body.landing-active .route-landing-note{position:relative;z-index:6;margin-top:9px;font-size:8px}
@media(max-width:980px){
  body.landing-active .route-landing-content{width:calc(100% - 28px);min-height:0;padding-bottom:26px}
  body.landing-active .route-landing-content>.eyebrow,
  body.landing-active .route-landing-content>h1,
  body.landing-active .route-landing-lead,
  body.landing-active .route-growth-line,
  body.landing-active .route-benefits{max-width:100%}
  .route-lead-break{display:none}
  body.landing-active .route-presenter,
  body.landing-active .hero-person{position:relative;left:auto;bottom:auto;display:block;width:min(170px,40vw);max-height:none;margin:-2px auto -14px;transform:none;filter:contrast(1.06) saturate(1.06) brightness(1.03) drop-shadow(0 16px 24px rgba(0,0,0,.28))}
  body.landing-active .route-cards{display:grid;grid-template-columns:1fr;gap:14px;margin-top:0}
  body.landing-active .route-cards article{min-height:160px;padding:18px}
  body.landing-active .route-cards article:first-child,
  body.landing-active .route-cards article:nth-of-type(2){padding-left:18px;padding-right:18px}
  body.landing-active .route-card--promotion,
  body.landing-active .route-card--products,
  body.landing-active .route-cards article:nth-of-type(2){transform:none}
}
@media(max-width:560px){
  body.landing-active .hero-person{display:none}
  body.landing-active .route-cards article{min-height:0;padding:16px}
}
@media(max-width:980px){
  body.landing-active .route-landing-content{width:calc(100% - 24px);padding-bottom:20px}
  body.landing-active .route-landing-content>h1{font-size:clamp(24px,9vw,34px)}
  body.landing-active .route-landing-lead{max-width:100%;font-size:13px;line-height:1.45;margin:12px 0 18px}
  body.landing-active .route-growth-line{max-width:100%;margin:-8px 0 12px;font-size:8.5px;line-height:1.35}
  body.landing-active .route-benefits{gap:7px;margin-bottom:16px}
  body.landing-active .route-benefits span{min-height:24px;padding:5px 9px;font-size:9px}
  body.landing-active .route-cards{display:grid;grid-template-columns:minmax(0,63%) minmax(90px,37%);grid-template-areas:"route-one person" "route-two person";align-items:center;gap:16px 4px;margin-top:2px}
  body.landing-active .route-cards article:first-of-type{grid-area:route-one}
  body.landing-active .route-cards article:nth-of-type(2){grid-area:route-two;transform:none;padding-left:12px;padding-right:12px}
  body.landing-active .route-cards article:nth-of-type(2):hover{transform:none}
  body.landing-active .route-presenter,
  body.landing-active .hero-person{display:none}
  body.landing-active .route-presenter-mobile,
  body.landing-active .mobile-route-person{grid-area:person;display:block;position:relative;z-index:6;justify-self:end;align-self:center;width:min(152px,43vw);max-width:none;height:auto;margin:0 -10px 0 -26px;object-fit:contain;pointer-events:none;filter:drop-shadow(0 12px 18px rgba(0,0,0,.28))}
  body.landing-active .route-cards article{min-height:104px;padding:12px;border-radius:15px}
  body.landing-active .route-cards article>p:not(.route-label){display:none}
  body.landing-active .route-cards .route-number{display:block;top:10px;right:11px;font-size:14px}
  body.landing-active .route-card--promotion .route-number{top:10px}
  body.landing-active .route-cards .route-label{margin-bottom:7px;font-size:7.5px;line-height:1.2;letter-spacing:.055em}
  body.landing-active .route-cards h2{margin:0 0 10px;font-size:clamp(13px,4.1vw,16px);line-height:1.16}
  body.landing-active .route-cards .btn{min-height:32px;padding:7px 10px;border-radius:10px;font-size:9px;line-height:1.15}
  body.landing-active .route-cards article:nth-of-type(2) .btn{background:rgba(255,255,255,.55);border:1px solid rgba(255,116,23,.45);color:#0B4777;box-shadow:none}
  body.landing-active .route-card--promotion:active{transform:translateY(-3px) scale(1.01)}
  body.landing-active .route-card--products:active,
  body.landing-active .route-cards article:nth-of-type(2):active{transform:translateY(-2px) scale(1.01)}
  body.landing-active .route-mobile-government-note{display:block;position:relative;z-index:7;margin:9px 0 0;max-width:63%;color:rgba(255,255,255,.88);font-size:10px;line-height:1.35}
}

body:not(.landing-active){--header-height:62px}
body:not(.landing-active) .container{width:min(944px,calc(100% - 40px))}
body:not(.landing-active) .narrow{width:min(672px,calc(100% - 40px))}
body:not(.landing-active) .header-inner{min-height:62px;gap:14px}
body:not(.landing-active) .brand{transform:scale(.9);transform-origin:left center}
body:not(.landing-active) .primary-nav>a,
body:not(.landing-active) .nav-item>a,
body:not(.landing-active) .nav-dropdown-toggle{min-height:32px;padding:6px 8px;font-size:11px}
body:not(.landing-active) .dropdown a,
body:not(.landing-active) .language-menu a,
body:not(.landing-active) .language-dropdown button{padding:7px 8px;font-size:11px}
body:not(.landing-active) .header-actions .btn,
body:not(.landing-active) .language-switch button{min-height:32px;height:32px;padding-inline:8px;font-size:11px}
body:not(.landing-active) main{font-size:80%}
body:not(.landing-active) main .section{padding-top:40px;padding-bottom:40px}
body:not(.landing-active) main .page-hero{padding-top:43px;padding-bottom:35px}
body:not(.landing-active) main .hero,
body:not(.landing-active) main .hero-grid{min-height:clamp(432px,59vh,548px)}
body:not(.landing-active) main .hero-grid{gap:30px;padding:43px 0}
body:not(.landing-active) main h1{font-size:clamp(22px,3.45vw,43px)!important;line-height:1.05}
body:not(.landing-active) main h2{font-size:clamp(16px,2.3vw,27px)!important}
body:not(.landing-active) main h3{font-size:clamp(12px,1.25vw,15px)!important}
body:not(.landing-active) main .hero-lead,
body:not(.landing-active) main .page-hero p:not(.eyebrow){font-size:13px}
body:not(.landing-active) main .btn{min-height:34px;padding:8px 12px;font-size:.9em}
body:not(.landing-active) main input,
body:not(.landing-active) main select,
body:not(.landing-active) main textarea{padding:9px 10px}
body:not(.landing-active) main .product-body,
body:not(.landing-active) main .demand-card,
body:not(.landing-active) main .event-card,
body:not(.landing-active) main .price-card,
body:not(.landing-active) main .feature-grid article,
body:not(.landing-active) main .article-grid article,
body:not(.landing-active) main .story-grid article{padding:16px}
body:not(.landing-active) main .magazine-toolbar{width:min(720px,100%);padding:14px 16px}
body:not(.landing-active) main .magazine-book{width:min(656px,100%)}
body:not(.landing-active) main .magazine-sheet{padding:19px}
body:not(.landing-active) main .magazine-sheet-head h2{font-size:19px!important}
body:not(.landing-active) main .magazine-item-grid{gap:8px}
body:not(.landing-active) main .magazine-product-item,
body:not(.landing-active) main .magazine-demand-item{padding:8px}
body:not(.landing-active) main .magazine-product-item{padding-bottom:44px}
body:not(.landing-active) main .magazine-product-item::after{right:8px;bottom:8px;width:32px;height:32px;font-size:8px}
body:not(.landing-active) main .magazine-product-item img{height:56px}

.nav-contact-cta{min-height:34px;padding:7px 12px;font-size:11px}
.services-hero{padding:44px 0 34px;background:linear-gradient(135deg,#f6fbff,#eef7fb)}
.services-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.82fr);gap:34px;align-items:center}
.services-hero-copy{max-width:640px}.services-hero-copy h1{margin:0 0 8px;color:var(--navy);font-size:clamp(34px,5vw,58px);line-height:1}.services-hero-copy h2{margin:0 0 16px;color:#0b5f7f;font-size:clamp(20px,2.4vw,30px)}.services-hero-copy p:not(.eyebrow){color:#49647d;font-size:16px;line-height:1.6}.services-view .btn-primary{background:#0f8c97;color:#fff}.services-view .btn-primary:hover{background:#0b7580}.services-view .btn-secondary{border:1px solid #0f8c97;background:#fff;color:#0b7580}.services-view .btn-secondary:hover{background:#e8f7f8;color:#075c65}.services-hero-media{position:relative;overflow:hidden;margin:0;border:1px solid #cfe1ec;border-radius:24px;box-shadow:0 22px 50px rgba(5,43,83,.14)}.services-hero-media::after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(3,45,78,.08),rgba(2,117,135,.14));pointer-events:none}.services-hero-media img{display:block;width:100%;height:330px;object-fit:cover}
.services-packages-section{background:#fff}.services-head{max-width:760px}.services-package-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch}.service-package-card{position:relative;display:flex;flex-direction:column;min-height:100%;padding:24px;border:1px solid #d7e4ee;border-radius:22px;background:#fff;box-shadow:0 10px 28px rgba(8,65,123,.06);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.service-package-card.is-featured{border:2px solid #0f8c97;box-shadow:0 20px 44px rgba(8,95,105,.16);transform:translateY(-5px)}.service-package-badge{align-self:flex-start;margin-bottom:12px;padding:6px 10px;border-radius:999px;background:#0f8c97;color:#fff;font-size:11px;font-weight:950;letter-spacing:.04em}.service-package-icon{display:grid;place-items:center;width:46px;height:46px;margin-bottom:14px;border-radius:14px;background:#e8f7f8;color:#0f8c97}.service-package-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}.service-package-card h3{margin:0 0 8px;color:var(--navy);font-size:21px}.service-package-position{margin:0 0 16px;color:#58728a;font-weight:750}.service-package-price{margin:0 0 16px;color:var(--navy)}.service-package-price strong{font-size:34px;line-height:1}.service-package-price span{color:#5f7489;font-size:13px;font-weight:800}.service-feature-list{display:grid;gap:9px;margin:0 0 22px;padding:0;list-style:none}.service-feature-list li{position:relative;padding-left:24px;color:#39566e;font-size:14px;line-height:1.35}.service-feature-list li::before{content:"✓";position:absolute;left:0;top:0;color:#0f8c97;font-weight:950}.service-package-card .btn{margin-top:auto;justify-content:center;min-height:44px}.service-package-card:focus-within,.service-package-card:hover{border-color:#0f8c97;box-shadow:0 18px 42px rgba(8,65,123,.12)}
.services-info-notices{display:grid;gap:10px;margin-top:20px}.services-info-notices p{margin:0;padding:14px 16px;border:1px solid #cfe5e8;border-radius:14px;background:#f2fbfb;color:#49647d;font-size:13px;line-height:1.45}
.services-comparison-section{background:#f4f8fb}.services-comparison-table-wrap{overflow:hidden;border:1px solid #cfe0ee;border-radius:18px;background:#fff;box-shadow:0 14px 34px rgba(8,65,123,.07)}.services-comparison-table{width:100%;border-collapse:collapse}.services-comparison-table th,.services-comparison-table td{padding:14px 16px;border-bottom:1px solid #e1edf5;color:#1b3852;font-size:14px}.services-comparison-table thead th{background:#0f8c97;color:#fff;font-weight:900;text-align:center}.services-comparison-table thead th:first-child{text-align:left}.services-comparison-table tbody th{font-weight:900;text-align:left}.services-comparison-table tbody td{text-align:center}.services-comparison-table tbody tr:nth-child(even){background:#f8fbfd}.services-comparison-table tbody tr:last-child th,.services-comparison-table tbody tr:last-child td{border-bottom:0}.services-comparison-cards{display:none}
.services-steps-section{background:#fff}.section-head.centered{text-align:center;margin-inline:auto}.services-steps{position:relative;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.services-steps::before{content:"";position:absolute;left:7%;right:7%;top:25px;height:2px;background:#cfe5e8}.services-steps article{position:relative;z-index:1;padding:0 6px;text-align:center}.services-steps span{display:grid;place-items:center;width:50px;height:50px;margin:0 auto 13px;border-radius:50%;background:#0f8c97;color:#fff;font-weight:950;box-shadow:0 10px 20px rgba(15,140,151,.22)}.services-steps h3{margin:0 0 8px;color:var(--navy);font-size:15px}.services-steps p{margin:0;color:#62788d;font-size:13px;line-height:1.45}
.services-bottom-cta{background:#fff}.services-cta-card{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:20px;align-items:center;padding:26px;border:1px solid #cfe5e8;border-radius:22px;background:linear-gradient(135deg,#edfafa,#f7fcfd);box-shadow:0 18px 40px rgba(8,65,123,.08)}.services-cta-icon{display:grid;place-items:center;width:54px;height:54px;border-radius:16px;background:#0f8c97;color:#fff;font-size:26px;font-weight:950}.services-cta-card h2{margin:4px 0 8px;color:var(--navy)}.services-cta-card p:not(.eyebrow){margin:0;color:#49647d}
@media(hover:hover) and (pointer:fine){.service-package-card:hover{transform:translateY(-3px)}.service-package-card.is-featured:hover{transform:translateY(-8px)}}
@media(max-width:980px){.services-hero-grid{grid-template-columns:1fr}.services-hero-media img{height:270px}.services-package-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.service-package-card.is-featured{grid-column:1/-1;transform:none}.services-steps{grid-template-columns:1fr}.services-steps::before{left:25px;right:auto;top:0;bottom:0;width:2px;height:auto}.services-steps article{display:grid;grid-template-columns:50px 1fr;gap:0 14px;text-align:left}.services-steps span{grid-row:1/3;margin:0}.services-cta-card{grid-template-columns:1fr}.services-cta-icon{width:48px;height:48px}.services-cta-card .btn{width:100%}}
@media(max-width:700px){.nav-contact-cta{display:none}.services-hero{padding:30px 0 24px}.services-hero-copy p:not(.eyebrow){font-size:16px}.services-hero-copy .button-row{display:grid}.services-hero-copy .btn{width:100%}.services-hero-media img{height:220px}.services-package-grid{grid-template-columns:1fr}.service-package-card{padding:20px}.service-package-price strong{font-size:30px}.services-comparison-table-wrap{display:none}.services-comparison-cards{display:grid;gap:14px}.services-comparison-card{padding:18px;border:1px solid #d5e4f0;border-radius:18px;background:#fff}.services-comparison-card.is-featured{border-color:#0f8c97;box-shadow:0 14px 28px rgba(8,95,105,.12)}.services-comparison-card h3{margin:0 0 12px;color:var(--navy)}.services-comparison-card dl{display:grid;gap:0;margin:0}.services-comparison-card div{display:grid;grid-template-columns:1fr;gap:3px;padding:10px 0;border-bottom:1px solid #e5eef5}.services-comparison-card div:last-child{border-bottom:0}.services-comparison-card dt{color:#49647d;font-size:12px;font-weight:850}.services-comparison-card dd{margin:0;color:var(--navy);font-weight:900}.services-info-notices p{font-size:12px}.services-steps article{grid-template-columns:42px 1fr}.services-steps span{width:42px;height:42px}.services-steps::before{left:21px}.services-cta-card{padding:20px}}
@media(prefers-reduced-motion:reduce){.service-package-card{transition:none!important}.service-package-card,.service-package-card:hover,.service-package-card.is-featured,.service-package-card.is-featured:hover{transform:none!important}}

/* Xpozle huisstijl override voor de dienstenpagina */
.services-view .services-hero{background:linear-gradient(135deg,#f6fbff,#edf5fb)}
.services-view .services-hero-copy h1{max-width:560px;font-size:clamp(28px,3.7vw,44px);line-height:1.05}
.services-view .services-hero-copy h2{color:var(--navy-dark)}
.services-view .promo-technique{font-weight:850;color:var(--navy);text-decoration-line:underline;text-decoration-color:var(--orange);text-decoration-thickness:3px;text-underline-offset:5px;text-decoration-skip-ink:none}
.services-view .btn-primary{background:var(--orange);color:#fff}
.services-view .btn-primary:hover{background:var(--orange-dark)}
.services-view .btn-secondary{border:1px solid var(--navy);background:#fff;color:var(--navy)}
.services-view .btn-secondary:hover{background:#edf5fb;color:var(--navy-dark)}
.services-view .services-hero-media::after{background:linear-gradient(135deg,rgba(3,45,78,.12),rgba(255,107,10,.08))}
.services-view .service-package-card.is-featured{border-color:var(--orange);box-shadow:0 20px 44px rgba(255,107,10,.16)}
.services-view .service-package-badge{background:var(--orange);color:#fff}
.services-view .service-package-icon{background:#fff3e8;color:var(--orange)}
.services-view .service-feature-list li::before{content:"\2713";color:var(--orange)}
.services-view .service-package-card:focus-within,
.services-view .service-package-card:hover{border-color:var(--orange)}
.services-view .services-info-notices p{border-color:#dbe8f4;background:#f5f9fd}
.services-view .services-comparison-table thead th{background:var(--navy);color:#fff}
.services-view .services-steps::before{background:#d8e5f1}
.services-view .services-steps span{background:var(--navy);box-shadow:0 10px 20px rgba(8,65,123,.22)}
.services-view .services-cta-card{border-color:#d8e5f1;background:linear-gradient(135deg,#edf5fb,#fff7ef)}
.services-view .services-cta-icon{background:var(--orange)}
@media(max-width:700px){.services-view .services-comparison-card.is-featured{border-color:var(--orange);box-shadow:0 14px 28px rgba(255,107,10,.12)}}

/* Productpromotie dropdown: goed leesbaar op de blauwe header. */
.product-promotion-nav .dropdown{
  z-index:120;
  min-width:230px;
  padding:9px;
  background:#fff;
  border:1px solid #cfe0ee;
  box-shadow:0 18px 36px rgba(4,31,58,.18);
}
.product-promotion-nav .dropdown a{
  display:block!important;
  padding:11px 12px!important;
  border-radius:9px;
  color:var(--navy)!important;
  font-weight:900;
  line-height:1.25;
  text-decoration:none;
}
.product-promotion-nav .dropdown a:hover,
.product-promotion-nav .dropdown a:focus-visible{
  background:#fff3e8!important;
  color:var(--orange-dark)!important;
}
#beurspromotie,
#magazine-route-1,
#productcatalogus{
  scroll-margin-top:104px;
}
body:not(.landing-active) main .magazine-product-item h3,
body:not(.landing-active) main .magazine-demand-item h3{font-size:10px!important}
body:not(.landing-active) main .magazine-product-item p,
body:not(.landing-active) main .magazine-demand-item p{font-size:8px}
body:not(.landing-active) main .magazine-product-item small{padding-right:38px;font-size:7px}

@media(max-width:700px){
  body.audience-supplier:not(.landing-active) .trust-bar,
  body.audience-supplier:not(.landing-active) .home-fairs-section{display:none!important}
  body:not(.landing-active) main #view-magazine .page-hero{padding-top:30px;padding-bottom:28px}
  body:not(.landing-active) main #view-magazine .page-hero h1{font-size:28px!important}
  body:not(.landing-active) main #view-magazine .page-hero p:not(.eyebrow){font-size:13px}
  body:not(.landing-active) main .magazine-toolbar{width:100%;display:grid;gap:12px;padding:14px}
  body:not(.landing-active) main .magazine-toolbar .button-row{display:grid;width:100%;grid-template-columns:1fr 1fr;gap:8px;margin-top:0}
  body:not(.landing-active) main .magazine-toolbar .btn,
  body:not(.landing-active) main .magazine-page-indicator{width:100%;min-height:34px;font-size:11px;text-align:center}
  body:not(.landing-active) main .magazine-toolbar .btn:last-child{grid-column:1/-1}
  body:not(.landing-active) main .magazine-book{width:100%;height:auto;aspect-ratio:auto;min-height:0!important;perspective:none}
  body:not(.landing-active) main .magazine-page-turn{position:static;height:auto;animation:none}
  body:not(.landing-active) main .magazine-page-turn:not(.is-active){display:none!important}
  body:not(.landing-active) main .magazine-page-turn.is-active{display:block}
  body:not(.landing-active) main .magazine-sheet{height:auto;min-height:0!important;overflow:visible;padding:16px;border-radius:18px}
  body:not(.landing-active) main .magazine-cover-sheet{display:grid;place-items:center;padding:0;background:transparent;border:0}
  body:not(.landing-active) main .large-cover{width:min(330px,100%);height:auto;aspect-ratio:1/1.414}
  body:not(.landing-active) main .magazine-sheet-head{margin-bottom:14px;text-align:left}
  body:not(.landing-active) main .magazine-sheet-head h2{font-size:20px!important}
  body:not(.landing-active) main .magazine-item-grid{grid-template-columns:1fr!important;gap:12px}
  body:not(.landing-active) main .magazine-product-item,
  body:not(.landing-active) main .magazine-demand-item{min-height:0;padding:12px;border-radius:14px}
  body:not(.landing-active) main .magazine-product-item{padding-bottom:58px}
  body:not(.landing-active) main .magazine-product-item::after{right:12px;bottom:12px;width:40px;height:40px;font-size:10px}
  body:not(.landing-active) main .magazine-product-item img{height:120px;margin-bottom:9px}
  body:not(.landing-active) main .magazine-product-item .tag,
  body:not(.landing-active) main .magazine-demand-item .tag{min-height:20px;padding:3px 7px;font-size:10px}
  body:not(.landing-active) main .magazine-product-item h3,
  body:not(.landing-active) main .magazine-demand-item h3{font-size:15px!important}
  body:not(.landing-active) main .magazine-product-item p,
  body:not(.landing-active) main .magazine-demand-item p{font-size:12px;line-height:1.45;-webkit-line-clamp:3}
  body:not(.landing-active) main .magazine-product-item small{padding-right:52px;font-size:10px}
  body:not(.landing-active) main .magazine-summary-grid{grid-template-columns:1fr!important}
}

@media print{body:not(.landing-active)>.site-header,body:not(.landing-active)>.site-footer,.skip-link,.site-back-button,.magazine-toolbar,.magazine-note{display:none!important}body{background:#fff!important}.view{display:none!important}.view#view-magazine{display:block!important}.page-hero{display:none!important}.magazine-reader-section{padding:0!important;background:#fff!important}.magazine-book{min-height:0;perspective:none}.magazine-page-turn{position:static!important;display:block!important;page-break-after:always;break-after:page;animation:none!important}.magazine-sheet,.large-cover{min-height:96vh;box-shadow:none!important}.magazine-cover-sheet{background:#fff!important}}

/* Internationale beurzen */
.hero-agenda .compact-event-card{align-items:start;padding:11px}.compact-event-card>div{min-width:0}.compact-event-country{display:block;margin-bottom:2px;color:var(--orange-dark);font-size:10px;font-weight:900;text-transform:uppercase}.compact-event-card h3{margin:0 0 2px;font-size:13px}.compact-event-card p{margin:0;font-size:11px}.event-registration-counter{display:inline-flex;align-items:center;width:max-content;margin-top:5px;padding:3px 7px;border-radius:999px;background:#fff4e8;color:var(--orange-dark);font-size:9px;font-weight:900}.event-registration-counter::before{content:"";width:6px;height:6px;margin-right:5px;border-radius:999px;background:var(--orange)}.compact-event-actions{display:flex;flex-wrap:wrap;gap:5px;margin-top:6px}.compact-event-actions a{padding:4px 7px;border-radius:6px;background:#eaf3fb;color:var(--navy);font-size:9px;font-weight:900}.compact-event-actions a:last-child{background:var(--orange);color:#fff}.event-empty{margin:22px;padding:16px;border:1px dashed #b8cee1;border-radius:12px;color:var(--text-muted);text-align:center}
.event-publication-page{min-height:100vh;background:#f3f8fc}.event-publication-top{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px max(24px,calc((100vw - 1100px)/2));background:linear-gradient(135deg,var(--navy),#0b5da5);color:#fff}.event-publication-top strong{font-size:24px}.event-publication{width:min(920px,calc(100% - 32px));margin:38px auto;padding:clamp(22px,4vw,48px);border:1px solid #d5e4f0;border-radius:24px;background:#fff;box-shadow:0 22px 55px rgba(7,47,94,.12)}.event-publication h1{max-width:800px;font-size:clamp(30px,5vw,52px)}.event-publication-intro{max-width:760px;color:var(--text-muted);font-size:18px}.event-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:28px 0}.event-facts div{padding:15px;border-radius:12px;background:#eef6fc}.event-facts dt{color:var(--text-muted);font-size:11px;font-weight:900;text-transform:uppercase}.event-facts dd{margin:4px 0 0;color:var(--navy);font-weight:800}.event-publication>section{margin:28px 0}.event-publication-cta{margin:30px 0;padding:24px;border-radius:18px;background:linear-gradient(135deg,#082f5d,#0b5da5);color:#fff}.event-publication-cta h2{color:#fff}.event-source{display:flex;align-items:center;flex-wrap:wrap;gap:8px;padding-top:18px;border-top:1px solid #dce8f1}.event-source a{color:var(--orange-dark);font-weight:900}.event-source small{flex-basis:100%;color:var(--text-muted)}
@media(max-width:700px){.event-facts{grid-template-columns:1fr 1fr}.event-publication-top{align-items:flex-start;flex-direction:column}.event-publication-top .btn{padding:9px 12px}}@media(max-width:440px){.event-facts{grid-template-columns:1fr}}

/* Nieuwsdetail */
.news-detail-body{min-height:100vh;background:#edf5fb}.news-detail-header{background:linear-gradient(135deg,#062f5c,#0a5798);color:#fff}.news-detail-header .container{min-height:78px;display:flex;align-items:center}.news-detail-main{padding:55px 0 80px}.news-detail-card{max-width:900px;padding:38px;border:1px solid #cfe0ee;border-radius:22px;background:#fff;box-shadow:0 20px 45px rgba(8,65,123,.1)}.news-detail-card h1{max-width:780px;margin:9px 0 20px;color:var(--navy);font-size:clamp(30px,5vw,48px);line-height:1.08}.news-detail-meta{display:flex;justify-content:space-between;gap:20px;color:var(--text-muted);font-size:13px}.news-country{padding:5px 10px;border-radius:99px;background:#e8f3fd;color:#075397;font-weight:900;text-transform:uppercase}.news-detail-summary{font-size:18px;color:#38536c}.news-relevance{margin:30px 0;padding:22px;border-left:4px solid var(--orange);border-radius:0 14px 14px 0;background:#fff7ef}.news-relevance h2{margin-top:0;font-size:20px}.news-source-data{display:grid;gap:0;margin:28px 0}.news-source-data div{display:grid;grid-template-columns:170px 1fr;gap:15px;padding:12px 0;border-bottom:1px solid #e2ebf3}.news-source-data dt{font-weight:900;color:var(--navy)}.news-source-data dd{margin:0}.news-source-data a{color:#075ba5;font-weight:800}.news-disclaimer{padding:15px;border-radius:11px;background:#f2f6f9;color:#60758c;font-size:12px}.news-back-button{top:92px}
@media(max-width:700px){.news-detail-main{padding:42px 0}.news-detail-card{width:calc(100% - 28px);padding:23px}.news-source-data div{grid-template-columns:1fr;gap:3px}}

.ops-inline-actions{display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.ops-inline-actions form{margin:0}
.button.danger{background:#b42318;color:#fff;border-color:#b42318}
.button.danger:hover{background:#8f1d14;border-color:#8f1d14}
.button:disabled{cursor:not-allowed;opacity:.55;transform:none}

/* Productcatalogus met leadformulier */
.catalog-product-card{display:flex;flex-direction:column;gap:16px;min-width:0;padding:18px}
.product-card-media{position:relative;overflow:hidden;width:100%;min-height:190px;padding:0;border:0;border-radius:16px;background:#eef5fb;cursor:pointer}
.product-card-media img{display:block;width:100%;height:190px;min-height:190px;object-fit:cover;transition:transform .25s ease}
.product-card-media.product-visual{display:block;place-items:initial;min-height:190px;background:#eef5fb}
.product-card-media.product-visual .product-media-badge,
.product-card-media.product-visual .product-video-badge{width:auto;height:auto;display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:999px;font-size:11px;line-height:1.1}
.catalog-product-card:hover .product-card-media img{transform:scale(1.035)}
.product-media-badge,.product-video-badge{position:absolute;left:10px;bottom:10px;padding:6px 9px;border-radius:999px;background:rgba(7,47,94,.9);color:#fff;font-size:11px;font-weight:900}
.product-video-badge{left:auto;right:10px;background:rgba(255,107,10,.92)}
.catalog-product-body h3 button{padding:0;border:0;background:transparent;color:inherit;font:inherit;text-align:left;cursor:pointer}
.catalog-product-body h3 button:hover{color:var(--orange-dark)}
.catalog-product-body,.catalog-product-body h3,.catalog-product-body p{min-width:0;overflow-wrap:break-word}
.catalog-product-actions{display:flex;flex-wrap:wrap;gap:9px;justify-items:start;margin-top:auto}
.catalog-product-actions .text-link{border:0;background:transparent;cursor:pointer}
.product-detail-modal[hidden]{display:none}
.product-modal-open{overflow:hidden}
.product-detail-modal{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:22px}
.product-detail-backdrop{position:absolute;inset:0;background:rgba(3,24,46,.72);backdrop-filter:blur(4px)}
.product-detail-dialog{position:relative;z-index:1;width:min(1120px,100%);max-height:calc(100vh - 44px);overflow:auto;padding:24px;border:1px solid rgba(255,255,255,.28);border-radius:26px;background:#fff;box-shadow:0 34px 90px rgba(0,0,0,.34)}
.product-detail-close{position:absolute;top:13px;right:13px;width:42px;height:42px;border:0;border-radius:999px;background:#eef5fb;color:var(--navy);font-size:26px;font-weight:900;cursor:pointer}
.product-detail-layout{display:grid;grid-template-columns:minmax(240px,360px) 1fr minmax(260px,340px);gap:24px;align-items:start}
.product-detail-media>img{width:100%;height:260px;border-radius:18px;object-fit:cover;background:#eef5fb}
.product-detail-thumbs{display:flex;gap:8px;margin-top:10px;overflow:auto}
.product-detail-thumbs button{flex:0 0 70px;height:56px;padding:2px;border:2px solid transparent;border-radius:10px;background:#eef5fb;cursor:pointer}
.product-detail-thumbs button.is-active{border-color:var(--orange)}
.product-detail-thumbs img{width:100%;height:100%;border-radius:7px;object-fit:cover}
.product-detail-media video{width:100%;margin-top:12px;border-radius:16px;background:#000}
.product-detail-copy h2{margin:0 0 12px;color:var(--navy);font-size:clamp(28px,3vw,42px)}
.product-detail-copy p{color:var(--text-muted)}
.product-detail-facts{display:grid;gap:10px;margin:18px 0}
.product-detail-facts div{padding:11px 12px;border-radius:12px;background:#f2f7fb}
.product-detail-facts dt{color:var(--text-muted);font-size:11px;font-weight:900;text-transform:uppercase}
.product-detail-facts dd{margin:3px 0 0;color:var(--navy);font-weight:850}
.product-interest-form{display:grid;gap:11px;padding:18px;border:1px solid #cfe0ee;border-radius:20px;background:linear-gradient(180deg,#f8fbfe,#fff)}
.product-interest-form h3{margin:0;color:var(--navy)}
.product-interest-form p{margin:0;color:var(--text-muted);font-size:13px}
.product-interest-form label{display:grid;gap:6px;color:var(--navy);font-size:13px;font-weight:850}
.product-interest-form input,.product-interest-form select,.product-interest-form textarea{width:100%;min-height:42px;padding:10px 12px;border:1px solid #cfe0ee;border-radius:11px;background:#fff;color:var(--navy);font:inherit}
.product-interest-form textarea{resize:vertical}
.product-interest-form .checkbox-line{display:flex;align-items:flex-start;gap:8px;color:var(--text-muted);font-weight:650}
.product-interest-form .checkbox-line input{width:auto;min-height:auto;margin-top:3px}
.product-interest-result{min-height:22px;color:var(--orange-dark)!important;font-weight:900}
.magazine-product-item::after{content:none!important}
.magazine-product-qr{display:flex;align-items:center;gap:8px;margin-top:auto;padding-top:10px;color:var(--navy);font-size:9px;font-weight:900;text-decoration:none}
.magazine-product-qr img{flex:0 0 auto;width:46px!important;height:46px!important;margin:0!important;border-radius:7px!important;object-fit:contain!important;background:#fff}
.magazine-product-item small{padding-right:0}
body:not(.landing-active) main .magazine-item-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}
body:not(.landing-active) main .magazine-product-item{display:flex!important;flex-direction:column!important;min-height:246px!important;padding:12px!important}
body:not(.landing-active) main .magazine-product-item>img{width:100%!important;height:clamp(104px,10.5vw,132px)!important;aspect-ratio:auto!important;margin:0 0 8px!important;border-radius:12px!important;object-fit:cover!important}
body:not(.landing-active) main .magazine-product-item .tag{align-self:flex-start;margin-top:0!important;font-size:9px!important}
body:not(.landing-active) main .magazine-product-item h3{margin:6px 0 4px!important;padding-right:0!important;font-size:13px!important;line-height:1.14!important}
body:not(.landing-active) main .magazine-product-item p{margin:0!important;padding-right:0!important;font-size:9px!important;line-height:1.25!important;-webkit-line-clamp:2!important}
body:not(.landing-active) main .magazine-product-item small{margin-top:5px!important;padding-right:0!important;font-size:7.5px!important;line-height:1.18!important}
body:not(.landing-active) main .magazine-product-qr{position:static!important;width:auto!important}
body:not(.landing-active) main .magazine-product-qr img{width:38px!important;height:38px!important}

@media(max-width:980px){
  .catalog-product-actions{display:flex;flex-wrap:wrap}
  .product-detail-layout{grid-template-columns:1fr}
}

@media(max-width:620px){
  .product-card-media,.product-card-media img{min-height:190px;height:190px}
  .product-detail-modal{padding:10px}
  .product-detail-dialog{max-height:calc(100vh - 20px);padding:16px;border-radius:20px}
  .product-detail-media>img{height:210px}
}

#view-producten .product-grid,
.route-two-product-catalog .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}

.route-two-product-catalog{background:#f3f8fc}
.route-two-product-catalog .catalog-home-head{margin-bottom:20px}
.route-two-product-catalog .catalog-home-filter{margin-bottom:22px}
body:not(.landing-active) main .product-card-media img{height:190px}
.product-route-two-intro h2{max-width:760px;margin:0;color:#fff;font-size:clamp(27px,4.3vw,54px);line-height:1.04}
.product-route-two-intro p:not(.eyebrow){max-width:780px;color:rgba(255,255,255,.78)}

.product-submit-modal[hidden]{display:none}
.product-submit-modal{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:22px}
.product-submit-backdrop{position:absolute;inset:0;background:rgba(3,24,46,.72);backdrop-filter:blur(4px)}
.product-submit-dialog{position:relative;z-index:1;width:min(980px,100%);max-height:calc(100vh - 44px);overflow:auto;padding:28px;border:1px solid rgba(255,255,255,.28);border-radius:26px;background:#fff;box-shadow:0 34px 90px rgba(0,0,0,.34)}
.product-submit-head{max-width:760px;margin-bottom:20px}
.product-submit-head h2{margin:4px 0 10px;color:var(--navy);font-size:clamp(26px,3vw,38px)}
.product-submit-head p{margin:0;color:var(--text-muted)}
.product-submit-form{display:grid;gap:18px}
.product-submit-form fieldset{margin:0;padding:18px;border:1px solid var(--border);border-radius:18px;background:#f8fbfe}
.product-submit-form legend{padding:0 8px;color:var(--navy);font-weight:900}
.product-submit-form .muted{font-size:13px}
.product-submit-form input[type=file]{padding:12px;background:#fff}
.product-submit-form.is-busy{opacity:.72;pointer-events:none}

@media(max-width:700px){
  .product-submit-modal{padding:10px}
  .product-submit-dialog{max-height:calc(100vh - 20px);padding:18px;border-radius:20px}
}

@media(max-width:820px){
  #view-producten .product-grid,
  .route-two-product-catalog .product-grid{grid-template-columns:1fr}
}
