:root {
  --hk-bg: #f8fafc;
  --hk-surface: #ffffff;
  --hk-section-alt-bg: #f1f5f9;
  --hk-text: #111827;
  --hk-muted: #6b7280;
  --hk-primary: #1e3a5f;
  --hk-primary-dark: #0f2744;
  --hk-accent: #2563eb;
  --hk-accent-hover: #1d4ed8;
  --hk-accent-soft: #eff6ff;
  --hk-dark: #0c1222;
  --hk-dark-2: #1a2332;
  --hk-border: #e5e7eb;
  --hk-radius: 10px;
  --hk-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --hk-font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hk-font);
  background: var(--hk-bg);
  color: var(--hk-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hk-accent); }
.hk-container { width: min(1180px, calc(100% - clamp(24px, 5vw, 48px))); margin: 0 auto; }

/* Header */
.hk-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12, 18, 34, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hk-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.hk-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; font-weight: 700; }
.hk-logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.hk-logo-text { font-size: 17px; letter-spacing: -0.02em; }
.hk-nav-list { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.hk-nav-list a {
  color: #cbd5e1; text-decoration: none; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: .2s;
}
.hk-nav-list a:hover, .hk-nav-list .current-menu-item a { color: #fff; background: rgba(255,255,255,0.06); }
.hk-nav-cta { background: var(--hk-accent) !important; color: #fff !important; }
.hk-nav-cta:hover { background: var(--hk-accent-hover) !important; }
.hk-menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hk-menu-btn span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; }
.hk-mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px;
  background: var(--hk-dark); border-top: 1px solid rgba(255,255,255,0.08);
}
.hk-mobile-nav a { color: #e2e8f0; text-decoration: none; padding: 12px; border-radius: 8px; }
.hk-mobile-nav:not([hidden]) { display: flex; }

/* Hero — volledig schermvullend, rechte overgang naar volgende sectie */
.hk-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -72px;
  padding: calc(72px + clamp(1.25rem, 3vw, 2.5rem)) clamp(16px, 4vw, 24px) clamp(2.5rem, 5vw, 4rem);
  box-sizing: border-box;
  background: linear-gradient(165deg, #0c1222 0%, #1e3a5f 55%, #1a2332 100%);
  color: #fff;
  text-align: center;
}
.hk-hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hk-hero-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 38%;
  background: radial-gradient(
    ellipse 48% 52% at 50% 42%,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(147, 197, 253, 0.08) 40%,
    transparent 72%
  );
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}
.hk-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 clamp(12px, 2.5vw, 20px);
  font-weight: 800;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hk-hero-typed-line {
  display: block;
  min-height: 1.25em;
  min-width: min(100%, 22ch);
  color: #e2e8f0;
  font-weight: 600;
}
.hk-hero-typed {
  color: #93c5fd;
  text-shadow: 0 0 28px rgba(96, 165, 250, 0.45);
}
.hk-hero-cursor {
  display: inline-block;
  width: 4px;
  height: 0.88em;
  margin-left: 4px;
  background: #60a5fa;
  border-radius: 1px;
  vertical-align: -0.06em;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.75);
  animation: hk-cursor-blink 1.05s step-end infinite;
}
.hk-hero-cursor[hidden] { display: none; }
@keyframes hk-cursor-blink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hk-hero-cursor { animation: none; opacity: 0.6; }
}
.hk-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 6px;
  padding: 8px 14px; font-size: 13px; color: #cbd5e1;
  margin-bottom: clamp(14px, 3vw, 24px);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 24px rgba(186, 210, 255, 0.15);
}
.hk-pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .5; } }
.hk-hero p { font-size: clamp(.95rem, 2.5vw, 1.0625rem); color: #94a3b8; max-width: 620px; margin: 0 auto clamp(20px, 4vw, 32px); line-height: 1.55; }
#hk-particles { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .45; pointer-events: none; z-index: 0; }
.hk-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 0; width: 100%; max-width: 420px; }

/* Buttons */
.hk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 8px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: .2s;
}
.hk-btn-primary { background: var(--hk-accent); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,.25); }
.hk-btn-primary:hover { background: var(--hk-accent-hover); transform: translateY(-1px); }
.hk-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.hk-btn-ghost:hover { background: rgba(255,255,255,.06); }
.hk-btn-outline { background: #fff; color: var(--hk-primary); border-color: var(--hk-border); }
.hk-btn-outline:hover { border-color: var(--hk-accent); color: var(--hk-accent); }

/* Sections */
.hk-section { padding: clamp(56px, 8vw, 96px) 0; background: var(--hk-bg); }
.hk-section--wave-out {
  position: relative;
  padding-bottom: calc(clamp(56px, 8vw, 96px) + clamp(44px, 6vw, 64px));
}
.hk-section--before-contact { padding-bottom: calc(clamp(32px, 5vw, 48px) + clamp(44px, 6vw, 64px)); }
.hk-section-alt { background: var(--hk-section-alt-bg); }
.hk-section-contact {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, var(--hk-section-alt-bg), var(--hk-bg));
}
.hk-wave-divider {
  display: block;
  line-height: 0;
}
.hk-wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(44px, 6vw, 64px);
}
.hk-wave-divider--section-end {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  pointer-events: none;
}
.hk-contact-channels {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin: 20px auto 0; max-width: 560px; text-align: center;
}
.hk-contact-whatsapp-title {
  margin: 0; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--hk-muted);
}
.hk-whatsapp-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--hk-border);
  font-weight: 700; font-size: 1.1rem; color: var(--hk-text); text-decoration: none;
  box-shadow: var(--hk-shadow); transition: .2s;
}
.hk-whatsapp-link::before { content: none !important; display: none !important; }
.hk-whatsapp-icon { flex-shrink: 0; display: block; }
.hk-whatsapp-number { line-height: 1; }
.hk-whatsapp-link:hover {
  border-color: #25D366; color: var(--hk-text);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .15);
}
.hk-contact-channels-note { margin: 0; color: var(--hk-muted); font-size: .92rem; line-height: 1.5; }
.hk-footer-whatsapp { margin-top: 12px; }
.hk-footer-whatsapp-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #cbd5e1; margin-bottom: 8px; }
.hk-footer .hk-whatsapp-link {
  padding: 0; border: 0; background: transparent; box-shadow: none;
  color: #e5e7eb; font-size: 1rem;
}
.hk-footer .hk-whatsapp-link:hover { color: #fff; border-color: transparent; box-shadow: none; }
.hk-section-head { text-align: center; margin-bottom: clamp(28px, 5vw, 48px); }
.hk-section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 8px 0 12px; letter-spacing: -.02em; color: var(--hk-text); }
.hk-section-head p { color: var(--hk-muted); max-width: 560px; margin: 0 auto; }
.hk-section-head-row { display: flex; justify-content: space-between; align-items: end; text-align: left; gap: 24px; flex-wrap: wrap; }
.hk-section-head-row p { margin: 0; }
.hk-label {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--hk-accent);
}

/* Services */
.hk-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.hk-service-card {
  background: var(--hk-surface); border-radius: var(--hk-radius); padding: 28px;
  border: 1px solid var(--hk-border); box-shadow: var(--hk-shadow); transition: .2s;
}
.hk-service-card:hover { transform: translateY(-2px); border-color: #cbd5e1; box-shadow: 0 8px 32px rgba(15,23,42,.08); }
.hk-service-icon { font-size: 1.75rem; margin-bottom: 12px; opacity: .9; }
.hk-service-card h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--hk-text); }
.hk-service-card p { color: var(--hk-muted); font-size: .94rem; margin: 0 0 16px; }
.hk-service-card a { font-weight: 600; text-decoration: none; font-size: 14px; color: var(--hk-accent); }
.hk-form-note {
  margin: -4px 0 16px; padding: 12px 14px; border-radius: 8px;
  background: #f8fafc; border: 1px solid var(--hk-border); color: var(--hk-muted); font-size: .92rem;
}

/* Split */
.hk-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hk-office-photo {
  margin: 0;
  border-radius: var(--hk-radius);
  overflow: hidden;
  box-shadow: var(--hk-shadow);
  border: 1px solid var(--hk-border);
  background: #fff;
}
.hk-office-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hk-checklist { list-style: none; padding: 0; margin: 24px 0; }
.hk-checklist li { padding: 10px 0 10px 28px; position: relative; color: #374151; }
.hk-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--hk-accent); font-weight: 700; }
.hk-inline-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Blog cards */
.hk-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.hk-blog-card {
  background: var(--hk-surface); border-radius: var(--hk-radius); overflow: hidden;
  text-decoration: none; color: inherit; border: 1px solid var(--hk-border);
  box-shadow: var(--hk-shadow); transition: .2s; display: flex; flex-direction: column;
}
.hk-blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(15,23,42,.08); }
.hk-blog-card-img { position: relative; height: 180px; background: linear-gradient(145deg, #1e3a5f, #334155); }
.hk-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hk-blog-card-icon { display: grid; place-items: center; height: 100%; font-size: 2.5rem; opacity: .85; }
.hk-blog-card-cat {
  position: absolute; top: 12px; left: 12px; background: var(--hk-primary);
  color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.hk-blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.hk-blog-card-body h3 { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.4; }
.hk-blog-card-body p { color: var(--hk-muted); font-size: .92rem; flex: 1; margin: 0 0 14px; }
.hk-blog-card-link { color: var(--hk-accent); font-weight: 600; font-size: 14px; }

.hk-blog-toolbar { display: grid; gap: 16px; margin-bottom: 24px; }
.hk-blog-search { display: flex; gap: 10px; flex-wrap: wrap; }
.hk-blog-search input[type="search"] {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid var(--hk-border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
.hk-blog-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.hk-blog-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--hk-border);
  background: #fff;
  color: var(--hk-text);
  text-decoration: none;
  font-size: .88rem;
  transition: border-color .15s, background .15s, color .15s;
}
.hk-blog-filter:hover,
.hk-blog-filter.is-active {
  border-color: var(--hk-accent);
  background: var(--hk-accent-soft);
  color: var(--hk-primary-dark);
}
.hk-blog-results-meta { margin: 0 0 18px; color: var(--hk-muted); font-size: .92rem; }

.hk-blog-grid--safeonweb {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.hk-blog-card-img--safeonweb {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  min-height: 48px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0f3d5c 0%, #1a6b8a 100%);
}
.hk-blog-card-img--safeonweb .hk-blog-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 1;
}
.hk-blog-card-img--safeonweb .hk-blog-card-cat {
  position: static;
}
.hk-blog-card--external .hk-blog-card-body {
  padding: clamp(14px, 2.5vw, 18px);
}
.hk-blog-card--external .hk-blog-card-body h3 {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}
.hk-blog-card--external .hk-blog-card-body p {
  font-size: clamp(0.85rem, 2.2vw, 0.92rem);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hk-blog-card-date { display: block; font-size: .78rem; color: var(--hk-muted); margin-bottom: 6px; }
.hk-feed-attribution { margin-top: clamp(12px, 2vw, 18px); font-size: .88rem; color: var(--hk-muted); text-align: center; }
.hk-feed-attribution a { color: var(--hk-accent); font-weight: 500; }

/* Wizard */
.hk-wizard {
  background: var(--hk-surface); border-radius: var(--hk-radius); padding: 32px;
  box-shadow: var(--hk-shadow); border: 1px solid var(--hk-border);
}
.hk-wizard-steps { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hk-step { flex: 1; min-width: 140px; padding: 12px; border-radius: 8px; background: #f3f4f6; font-size: 13px; font-weight: 600; color: var(--hk-muted); }
.hk-step span { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #d1d5db; color: #fff; margin-right: 8px; font-size: 12px; }
.hk-step.active { background: var(--hk-accent-soft); color: var(--hk-primary); }
.hk-step.active span { background: var(--hk-accent); }
.hk-step.done span { background: #16a34a; }
.hk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.hk-form-step label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 16px; color: #374151; }
.hk-form-step input, .hk-form-step select, .hk-form-step textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--hk-border);
  border-radius: 8px; font: inherit; background: #fff;
}
.hk-form-step input:focus, .hk-form-step select:focus, .hk-form-step textarea:focus {
  outline: none; border-color: var(--hk-accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.hk-form-step input.error, .hk-form-step textarea.error { border-color: #dc2626; }
.hk-radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.hk-radio-3 { grid-template-columns: repeat(3, 1fr); }
.hk-radio-cards label { cursor: pointer; margin: 0; }
.hk-radio-cards input { position: absolute; opacity: 0; }
.hk-radio-cards span { display: block; padding: 14px; border: 1px solid var(--hk-border); border-radius: 8px; transition: .2s; }
.hk-radio-cards span strong { display: block; margin-bottom: 6px; color: var(--hk-text); }
.hk-radio-cards span small { display: block; color: var(--hk-muted); font-size: 13px; line-height: 1.45; }
.hk-radio-cards input:checked + span { border-color: var(--hk-accent); background: var(--hk-accent-soft); }
.hk-form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.hk-alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 16px; }
.hk-alert.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.hk-alert.error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* Page hero — compact, uniform op alle pagina's behalve homepage */
.hk-page-hero {
  padding: calc(72px + 12px) 0 20px;
  background: linear-gradient(165deg, var(--hk-dark), var(--hk-primary));
  color: #fff;
}
.hk-page-hero .hk-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #93c5fd;
}
.hk-page-hero h1 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  margin: 0 0 6px;
  line-height: 1.15;
}
.hk-page-hero p {
  font-size: .92rem;
  margin: 0;
  max-width: 540px;
  color: #cbd5e1;
  line-height: 1.5;
}
.hk-section:has(.hk-blog-toolbar) { padding-top: 32px; }
.hk-page-content { padding: 80px 0 96px; }
.hk-prose h2 { margin-top: 2rem; }
.hk-prose li { margin-bottom: .5rem; }
.hk-prose p { margin: 0 0 1rem; }
.hk-prose ol, .hk-prose ul { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.hk-prose h2 { font-size: 1.35rem; margin-bottom: .75rem; }
.hk-prose code { background: #f1f5f9; padding: 2px 6px; border-radius: 4px; font-size: .92em; }

.hk-single-hero img { width: 100%; max-height: 280px; object-fit: cover; display: block; }
.hk-single-body { padding: 40px 0 96px; }
.hk-single-header { margin-bottom: 28px; }
.hk-single-header h1 { margin: 8px 0 10px; line-height: 1.2; }
.hk-single-meta { color: var(--hk-muted); margin: 0; }
.hk-breadcrumb { margin-bottom: 18px; font-size: .9rem; color: var(--hk-muted); }
.hk-breadcrumb a { color: var(--hk-accent); text-decoration: none; }
.hk-content.hk-prose { background: #fff; border: 1px solid var(--hk-border); border-radius: var(--hk-radius); padding: clamp(24px, 4vw, 36px); }
.hk-single .hk-cta-banner { margin-top: 32px; }
.hk-muted { color: var(--hk-muted); }
.hk-pagination { margin-top: 40px; text-align: center; }
.hk-pagination a, .hk-pagination span {
  display: inline-block; padding: 8px 14px; margin: 4px; border-radius: 6px;
  border: 1px solid var(--hk-border); text-decoration: none;
}
.hk-pagination .current { background: var(--hk-accent); color: #fff; border-color: var(--hk-accent); }

.hk-cta-banner {
  margin-top: 48px; padding: 40px; border-radius: var(--hk-radius); text-align: center;
  background: linear-gradient(145deg, var(--hk-primary-dark), var(--hk-primary)); color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
}
.hk-cta-banner p { color: #cbd5e1; }

.hk-btn-lg { padding: 14px 28px; font-size: 1rem; }
.hk-btn-xl { padding: 18px 32px; font-size: 1.0625rem; width: 100%; max-width: 420px; justify-content: center; }
.hk-btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; }

/* Hulp op afstand — modern download flow */
.hk-remote-page { padding-top: 28px; }
.hk-remote-trust {
  display: flex; flex-wrap: wrap; gap: 10px 18px; list-style: none; margin: 0 0 28px; padding: 0;
}
.hk-remote-trust li {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--hk-border); border-radius: 999px;
  padding: 8px 14px; font-size: .88rem; font-weight: 500; color: var(--hk-primary-dark);
}
.hk-remote-trust-icon { font-size: 1rem; line-height: 1; }

.hk-remote-layout {
  display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: 24px; align-items: start;
}
.hk-remote-panel {
  background: #fff; border: 1px solid var(--hk-border); border-radius: 16px;
  padding: clamp(22px, 3vw, 28px); box-shadow: var(--hk-shadow);
}
.hk-remote-panel--download { border-color: #bfdbfe; box-shadow: 0 12px 40px rgba(37, 99, 235, .08); }
.hk-remote-panel--download.is-locked { opacity: .72; }
.hk-remote-download-lock-msg { text-align: center; padding: 28px 16px; color: var(--hk-muted); }
.hk-remote-download-lock-msg span { font-size: 2rem; display: block; margin-bottom: 8px; }
.hk-remote-terms-box {
  background: #f8fafc; border: 1px solid var(--hk-border); border-radius: 12px;
  padding: 16px 18px; margin-bottom: 20px;
}
.hk-remote-terms-box h3 { margin: 0 0 10px; font-size: .95rem; }
.hk-remote-terms-list { margin: 0; padding-left: 18px; color: var(--hk-muted); font-size: .88rem; line-height: 1.55; }
.hk-remote-terms-list li { margin-bottom: 6px; }
.hk-remote-form label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 14px; color: #374151; }
.hk-remote-form input[type="text"],
.hk-remote-form input[type="email"],
.hk-remote-form input[type="tel"],
.hk-remote-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 11px 12px;
  border: 1px solid var(--hk-border); border-radius: 8px; font: inherit; font-weight: 400;
}
.hk-remote-form input:focus, .hk-remote-form textarea:focus {
  outline: none; border-color: var(--hk-accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.hk-remote-type { border: 0; margin: 0 0 14px; padding: 0; }
.hk-remote-type legend { font-size: .88rem; font-weight: 600; margin-bottom: 8px; color: #374151; }
.hk-radio-inline { display: inline-flex; align-items: center; gap: 8px; margin-right: 16px; font-weight: 500; font-size: .9rem; }
.hk-honeypot { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; pointer-events: none; }
.hk-remote-form .hk-remote-check { margin-bottom: 12px; }
.hk-remote-form .hk-btn-xl { margin-top: 8px; width: 100%; }
.hk-field-optional { font-weight: 400; color: var(--hk-muted, #6b7280); font-size: 0.9em; }
.hk-turnstile-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0 18px;
  min-height: 65px;
  width: 100%;
}
.hk-remote-panel-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.hk-remote-panel-head h2 { margin: 0 0 4px; font-size: 1.25rem; line-height: 1.2; }
.hk-remote-panel-sub { margin: 0; color: var(--hk-muted); font-size: .88rem; }
.hk-remote-step-badge {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(145deg, var(--hk-accent), #1d4ed8); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
}

.hk-remote-price {
  background: linear-gradient(145deg, #f0f9ff, #eff6ff);
  border: 1px solid #bfdbfe; border-radius: 12px; padding: 18px 20px; margin-bottom: 20px;
}
.hk-remote-price-main { margin-bottom: 10px; }
.hk-remote-price-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--hk-muted); margin-bottom: 4px; }
.hk-remote-price-value { display: block; font-size: clamp(1.75rem, 4vw, 2.15rem); line-height: 1.1; color: var(--hk-primary-dark); }
.hk-remote-price-note { display: block; font-size: .86rem; color: var(--hk-muted); margin-top: 4px; }
.hk-remote-price-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: .82rem; color: var(--hk-muted); }
.hk-remote-price-meta code { font-size: .85em; background: #fff; padding: 2px 6px; border-radius: 4px; }

.hk-remote-pay-methods { display: grid; gap: 14px; margin-bottom: 18px; }
.hk-remote-pay-card {
  border: 1px solid var(--hk-border); border-radius: 12px; padding: 16px; text-align: center; background: #fafbfc;
}
.hk-remote-pay-card--featured { border-color: #86efac; background: linear-gradient(180deg, #f0fdf4, #fff); }
.hk-remote-pay-card h3 { margin: 0 0 12px; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.hk-remote-tag {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .04em;
  background: #16a34a; color: #fff; padding: 3px 8px; border-radius: 999px; font-weight: 700;
}
.hk-remote-qr {
  display: block; margin: 0 auto 10px; border-radius: 10px; border: 1px solid var(--hk-border); background: #fff;
}
.hk-remote-pay-card p { margin: 0; font-size: .84rem; color: var(--hk-muted); line-height: 1.45; }
.hk-remote-pay-card code { font-size: .85em; background: #eef2ff; padding: 1px 6px; border-radius: 4px; }
.hk-remote-bank-details { margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid var(--hk-border); text-align: left; font-size: .82rem; }
.hk-remote-bank-details div { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4px 10px; margin-bottom: 6px; }
.hk-remote-bank-details dt { margin: 0; color: var(--hk-muted); font-weight: 500; }
.hk-remote-scan-note { margin: 0 0 12px; font-size: .84rem; color: var(--hk-muted); line-height: 1.45; }
.hk-remote-scan-warn { color: #92400e; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 8px 10px; }
.hk-remote-bank-details dd { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hk-copy-btn {
  border: 1px solid var(--hk-border); background: #fff; color: var(--hk-accent);
  border-radius: 6px; padding: 4px 10px; font-size: .75rem; font-weight: 600; cursor: pointer;
}
.hk-copy-btn:hover { border-color: var(--hk-accent); background: var(--hk-accent-soft); }
.hk-copy-btn.is-copied { color: #166534; border-color: #86efac; background: #f0fdf4; }
.hk-remote-pay-placeholder { font-size: .9rem; color: var(--hk-muted); line-height: 1.5; margin: 0; }
.hk-remote-pay-help { border-top: 1px solid var(--hk-border); padding-top: 16px; }
.hk-remote-pay-help p { margin: 0 0 12px; font-size: .88rem; color: var(--hk-muted); }

.hk-remote-terms { border: 0; margin: 0 0 20px; padding: 0; display: grid; gap: 12px; }
.hk-remote-check {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px;
  border: 1px solid var(--hk-border); border-radius: 10px; background: #f8fafc; cursor: pointer;
  font-size: .9rem; line-height: 1.5; transition: border-color .2s, background .2s;
}
.hk-remote-check:has(input:checked) { border-color: #86efac; background: #f0fdf4; }
.hk-remote-check input { margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--hk-accent); }
.hk-remote-check a { font-weight: 600; }

.hk-remote-download-cta {
  position: relative; text-align: center; padding: 24px 20px;
  border: 2px dashed #cbd5e1; border-radius: 14px; background: #f8fafc;
  transition: border-color .25s, background .25s;
}
.hk-remote-download-cta.is-unlocked {
  border-color: #86efac; border-style: solid; background: linear-gradient(180deg, #f0fdf4, #fff);
}
.hk-remote-download-lock { margin-bottom: 14px; color: var(--hk-muted); font-size: .9rem; }
.hk-remote-download-lock span { font-size: 1.75rem; display: block; margin-bottom: 6px; }
.hk-remote-download-cta.is-unlocked .hk-remote-download-lock { display: none; }
.hk-remote-download-btn[aria-disabled="true"] { opacity: .45; pointer-events: none; filter: grayscale(.2); }
.hk-remote-download-meta { margin: 12px 0 0; font-size: .86rem; color: var(--hk-muted); }
.hk-remote-download-alt { margin: 8px 0 0; font-size: .84rem; color: var(--hk-muted); }
.hk-remote-download-alt a[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.hk-remote-quicksteps {
  list-style: none; margin: 24px 0 0; padding: 16px 0 0; border-top: 1px solid var(--hk-border);
  display: grid; gap: 10px;
}
.hk-remote-quicksteps li {
  font-size: .92rem; color: var(--hk-muted); padding-left: 28px; position: relative;
}
.hk-remote-quicksteps li::before {
  content: '→'; position: absolute; left: 0; color: var(--hk-accent); font-weight: 700;
}

.hk-remote-faq {
  margin-top: 32px; background: #fff; border: 1px solid var(--hk-border); border-radius: 12px; overflow: hidden;
}
.hk-remote-faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; list-style: none;
}
.hk-remote-faq summary::-webkit-details-marker { display: none; }
.hk-remote-faq-body { padding: 0 20px 20px; border-top: 1px solid var(--hk-border); }
.hk-remote-faq-body > p { color: var(--hk-muted); font-size: .92rem; margin: 16px 0; }
.hk-remote-trouble-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hk-remote-trouble-item {
  background: #f8fafc; border: 1px solid var(--hk-border); border-radius: 8px; padding: 16px 18px;
}
.hk-remote-trouble-item h4 { margin: 0 0 8px; font-size: .92rem; }
.hk-remote-trouble-item ol { margin: 0; padding-left: 18px; color: var(--hk-muted); font-size: .88rem; line-height: 1.5; }
.hk-remote-cta-bottom { margin-top: 32px; }

.hk-notice { background: var(--hk-accent-soft); border: 1px solid #bfdbfe; padding: 14px 18px; border-radius: 8px; margin-bottom: 24px; color: #1e3a5f; }
.hk-info-box { background: #fff; border: 1px solid var(--hk-border); border-radius: var(--hk-radius); padding: 24px; margin-top: 24px; }

/* Footer */
.hk-footer { background: var(--hk-dark); color: #9ca3af; padding: 64px 0 32px; }
.hk-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.hk-footer h4 { color: #f3f4f6; margin: 0 0 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.hk-footer ul { list-style: none; padding: 0; margin: 0; }
.hk-footer li { margin-bottom: 10px; }
.hk-footer a { color: #9ca3af; text-decoration: none; }
.hk-footer a:hover { color: #fff; }
.hk-footer-brand { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.hk-footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; }

.hk-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--hk-border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, .12); padding: 16px 0;
}
.hk-cookie-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.hk-cookie-banner p { margin: 0; color: var(--hk-muted); font-size: .92rem; max-width: 720px; }
.hk-cookie-banner a { color: var(--hk-accent); }
.hk-cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

#hk-main { padding-top: 72px; }

@media (max-width: 900px) {
  .hk-nav { display: none; }
  .hk-menu-btn { display: block; }
  .hk-split, .hk-remote-layout, .hk-remote-trouble-grid, .hk-footer-grid, .hk-form-grid, .hk-radio-cards, .hk-radio-3 { grid-template-columns: 1fr; }
  .hk-section-head-row { flex-direction: column; align-items: start; }
}

@media (max-width: 768px) {
  .hk-hero {
    padding-top: calc(72px + clamp(1rem, 3vh, 1.5rem));
    padding-bottom: clamp(1.75rem, 5vh, 2.5rem);
  }
  .hk-hero h1 { font-size: clamp(1.75rem, 7.5vw, 2.15rem); line-height: 1.15; }
  .hk-hero p { font-size: .94rem; margin-bottom: 1.25rem; }
  .hk-hero-actions { flex-direction: column; gap: 10px; max-width: 320px; }
  .hk-hero-actions .hk-btn { width: 100%; padding: 14px 20px; }
  #hk-particles { display: none; }
  .hk-hero-typed-line { min-height: 2.4em; }
  .hk-split { gap: clamp(32px, 6vw, 64px); }
  .hk-wizard { padding: clamp(20px, 4vw, 32px); }
  .hk-service-card { padding: clamp(20px, 4vw, 28px); }
  .hk-footer { padding: clamp(40px, 8vw, 64px) 0 clamp(24px, 5vw, 32px); }
  .hk-section--wave-out { padding-bottom: calc(clamp(40px, 7vw, 56px) + clamp(36px, 5vw, 52px)); }
  .hk-section-head-row .hk-btn { width: 100%; justify-content: center; }
  .hk-blog-grid--safeonweb { gap: 12px; }
  .hk-blog-card--external .hk-blog-card-body h3 { font-size: .98rem; line-height: 1.35; }
  .hk-feed-attribution { font-size: .82rem; line-height: 1.5; }
}

@media (max-width: 600px) {
  .hk-blog-grid--safeonweb {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hk-blog-card-img--safeonweb {
    min-height: 44px;
    padding: 8px 12px;
    gap: 8px;
  }
  .hk-blog-card-img--safeonweb .hk-blog-card-icon {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
  .hk-blog-card--external .hk-blog-card-body p {
    -webkit-line-clamp: 2;
  }
}

/* ========== Download Card Grid ========== */
.hk-dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 0;
}

.hk-dl-card {
  background: var(--hk-surface, #fff);
  border-radius: 16px;
  border-top: 4px solid var(--dl-accent, var(--hk-accent));
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--hk-shadow, 0 4px 24px rgba(15,23,42,0.06));
  transition: transform .2s ease, box-shadow .2s ease;
}

.hk-dl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(15,23,42,0.1);
}

.hk-dl-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hk-dl-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dl-accent-bg, var(--hk-accent-soft));
  font-size: 24px;
  flex-shrink: 0;
}

.hk-dl-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hk-text, #111827);
  line-height: 1.3;
}

.hk-dl-card-desc {
  margin: 6px 0 0;
  font-size: .88rem;
  color: var(--hk-muted, #6b7280);
  line-height: 1.55;
}

.hk-dl-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  background: var(--dl-accent, var(--hk-accent));
  color: #fff;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.hk-dl-card-btn:hover {
  opacity: .9;
  transform: scale(1.01);
  color: #fff;
}

.hk-dl-tip {
  background: var(--hk-accent-soft, #eff6ff);
  border: 1px solid var(--hk-border, #e5e7eb);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--hk-muted, #6b7280);
  margin-top: 8px;
  line-height: 1.55;
}

.hk-dl-tip code {
  background: rgba(0,0,0,.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .82rem;
}

@media (max-width: 640px) {
  .hk-dl-grid {
    grid-template-columns: 1fr;
  }
}

/* Steps grid for hulp-op-afstand page */
.hk-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {
  .hk-steps-grid {
    grid-template-columns: 1fr;
  }
}
