: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-price {
  display: inline-block; margin: 0 0 10px; padding: 4px 10px;
  border-radius: 999px; background: var(--hk-accent-soft); color: var(--hk-accent);
  font-size: .82rem; font-weight: 700;
}
.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-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 */
.hk-page-hero { padding: 140px 0 60px; background: linear-gradient(165deg, var(--hk-dark), var(--hk-primary)); color: #fff; }
.hk-page-hero-sm { padding-bottom: 48px; }
.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: 420px; 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-remote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.hk-remote-card { background: #fff; border-radius: var(--hk-radius); padding: 28px; border: 1px solid var(--hk-border); }
.hk-remote-num {
  width: 36px; height: 36px; border-radius: 6px; background: var(--hk-primary); color: #fff;
  display: grid; place-items: center; font-weight: 700; margin-bottom: 12px; font-size: 14px;
}
.hk-steps-list { padding-left: 18px; color: var(--hk-muted); }
.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; }

.hk-remote-download-box {
  background: linear-gradient(145deg, #fff, #f8fafc);
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: clamp(24px, 4vw, 36px);
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, .06);
}
.hk-remote-download-box h2 { margin-top: 0; }
.hk-remote-download-box code {
  font-size: .88em;
  background: #eef2ff;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--hk-primary-dark);
}
.hk-remote-download-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 12px;
}
.hk-btn-lg { padding: 14px 28px; font-size: 1rem; }
.hk-remote-download-meta { color: var(--hk-muted); font-size: .9rem; }
.hk-remote-download-alt { margin: 0; color: var(--hk-muted); font-size: .92rem; }
.hk-remote-download-alt a { color: var(--hk-accent); }

.hk-remote-steps-row {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hk-remote-step {
  background: #fff;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 24px;
}
.hk-remote-step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.hk-remote-step p { margin: 0; color: var(--hk-muted); font-size: .94rem; line-height: 1.55; }
.hk-remote-step .hk-remote-num { margin-bottom: 14px; }

.hk-remote-trouble h3 { margin-top: 0; }
.hk-remote-trouble-intro { margin-bottom: 20px; }
.hk-remote-trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hk-remote-trouble-item {
  background: #f8fafc;
  border: 1px solid var(--hk-border);
  border-radius: 8px;
  padding: 18px 20px;
}
.hk-remote-trouble-item h4 { margin: 0 0 8px; font-size: .95rem; }
.hk-remote-trouble-item p,
.hk-remote-trouble-item ol { margin: 0 0 8px; color: var(--hk-muted); font-size: .9rem; line-height: 1.5; }
.hk-remote-trouble-item ol { padding-left: 18px; margin-bottom: 0; }
.hk-remote-trouble-footer { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--hk-border); font-size: .94rem; }

/* 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-grid, .hk-remote-steps-row, .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;
  }
}
