:root {
  --wgk-yellow: #ffc300;
  --wgk-yellow-tint: #fff6dc;
  --wgk-dark-blue: #00193c;
  --wgk-text-blue: #4b555f;
  --wgk-white: #ffffff;
  --wgk-line: rgba(0, 25, 60, 0.14);
  --wgk-shadow: 0 18px 50px rgba(0, 25, 60, 0.09);

  /* Voeg de gelicentieerde Agrandir Narrow webfont toe wanneer die beschikbaar is. */
  --font-heading: "Agrandir Narrow", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;

  --content-width: 1080px;
  --radius-frame: 14px;
  --radius-button: 999px;
  --focus-ring: 0 0 0 4px rgba(0, 25, 60, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--wgk-text-blue);
  background: var(--wgk-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--wgk-white);
  background: var(--wgk-dark-blue);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--wgk-line);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner,
.site-footer__inner,
.page-shell {
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

.site-header__inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding-block: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
}

.brand__logo {
  width: clamp(174px, 22vw, 230px);
  height: auto;
}


.page-shell {
  padding-block: clamp(48px, 8vw, 88px) 72px;
}

.intro {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.intro__eyebrow,
.help-panel__eyebrow,
.action-card__label {
  margin: 0 0 10px;
  color: var(--wgk-dark-blue);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 13px;
  background: var(--wgk-yellow);
  border-radius: var(--radius-button);
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--wgk-dark-blue);
  font-family: var(--font-heading);
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.intro__lead {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  line-height: 1.6;
}

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

.action-panel--single {
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr);
}

.action-card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--wgk-white);
  border: 1px solid var(--wgk-line);
  border-radius: var(--radius-frame);
  box-shadow: 0 8px 28px rgba(0, 25, 60, 0.035);
}

.action-card--primary {
  background: var(--wgk-yellow-tint);
  border-color: rgba(255, 195, 0, 0.52);
}

.action-card__icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--wgk-dark-blue);
  background: var(--wgk-yellow);
  border-radius: 10px;
}

.action-card:not(.action-card--primary) .action-card__icon {
  background: var(--wgk-yellow-tint);
}

.action-card__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.action-card__label {
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.action-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3.1vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.action-card p:not(.action-card__label) {
  margin-bottom: 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: auto;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-button);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button svg {
  flex: 0 0 auto;
  transition: transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:hover svg:last-child {
  transform: translateX(2px);
}

.button--primary {
  color: var(--wgk-dark-blue);
  background: var(--wgk-yellow);
}

.button--primary:hover {
  background: #ffd13d;
}

.button--secondary {
  color: var(--wgk-dark-blue);
  background: var(--wgk-white);
  border-color: var(--wgk-dark-blue);
}

.button--secondary:hover {
  color: var(--wgk-white);
  background: var(--wgk-dark-blue);
}

.button--dark {
  color: var(--wgk-white);
  background: var(--wgk-dark-blue);
}

.button--dark:hover {
  background: #0b2d5e;
}

.button--help {
  color: var(--wgk-dark-blue);
  background: var(--wgk-yellow);
}

.button--help:hover {
  background: #ffd13d;
}

.steps-panel {
  max-width: 920px;
  margin-top: clamp(32px, 5vw, 48px);
}

.steps-panel__heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.steps-panel__eyebrow {
  margin-bottom: 7px;
  color: var(--wgk-dark-blue);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.steps-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.steps-panel__heading > p:last-child {
  margin-bottom: 0;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: var(--wgk-white);
  border: 1px solid var(--wgk-line);
  border-radius: var(--radius-frame);
}

.step-card__number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--wgk-dark-blue);
  background: var(--wgk-yellow);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.step-card h3 {
  margin: 1px 0 7px;
  color: var(--wgk-dark-blue);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.help-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: clamp(44px, 7vw, 72px);
  padding: clamp(28px, 5vw, 50px);
  color: var(--wgk-white);
  background: var(--wgk-dark-blue);
  border-radius: var(--radius-frame);
}

.help-panel::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 220px;
  height: 220px;
  border: 34px solid var(--wgk-yellow);
  border-radius: 50%;
  opacity: 0.95;
  pointer-events: none;
}

.help-panel__content,
.help-panel__actions {
  position: relative;
  z-index: 1;
}

.help-panel__content {
  max-width: 590px;
}

.help-panel__eyebrow,
.help-panel h2 {
  color: var(--wgk-white);
}

.help-panel__eyebrow {
  margin-bottom: 8px;
  opacity: 0.75;
}

.help-panel h2 {
  margin-bottom: 9px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.help-panel p:last-child {
  margin-bottom: 0;
}

.help-panel__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.help-panel .button--help {
  color: var(--wgk-dark-blue);
  background: var(--wgk-yellow);
}

.help-panel .button--help:hover {
  background: #ffd13d;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wgk-white);
  font-weight: 700;
  text-underline-offset: 4px;
}

.site-footer {
  color: var(--wgk-text-blue);
  background: var(--wgk-yellow-tint);
  border-top: 1px solid rgba(255, 195, 0, 0.36);
}

.site-footer__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 0;
}

.status-message {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(380px, calc(100% - 36px));
  padding: 13px 17px;
  color: var(--wgk-white);
  background: var(--wgk-dark-blue);
  border-radius: 10px;
  box-shadow: var(--wgk-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.status-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--wgk-dark-blue);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

@media (max-width: 840px) {
  .action-panel {
    grid-template-columns: 1fr;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .help-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .help-panel__actions {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header__inner,
  .site-footer__inner,
  .page-shell {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .site-header__inner {
    min-height: 90px;
    gap: 16px;
    padding-block: 14px;
  }

  .brand__logo {
    width: 150px;
  }



  .page-shell {
    padding-block: 42px 52px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .action-card {
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }

  .action-card h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }

  .steps-panel {
    margin-top: 32px;
  }

  .step-card {
    padding: 20px;
  }

  .help-panel {
    padding: 28px 24px 120px;
  }

  .help-panel::after {
    right: -60px;
    bottom: -88px;
  }

  .help-panel__actions {
    width: 100%;
  }

  .site-footer__inner {
    min-height: 84px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
