/*
===========================================
  HSSecure.nl – Gedeelde Stijl
  Versie: 2.0
  Gebruik: Plak dit in Uiterlijk > Extra CSS
  in WordPress
===========================================
*/

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ── CSS VARIABELEN ── */
:root {
  --hs-dark:    #060810;
  --hs-surface: #0c1020;
  --hs-surf2:   #111828;
  --hs-border:  rgba(255,255,255,0.07);
  --hs-red:     #9b1c1c;   /* logo rood */
  --hs-blue:    #1e3a8a;   /* logo blauw */
  --hs-cyan:    #00d4e8;
  --hs-red-acc: #dc2626;
  --hs-text:    #e8eaf0;
  --hs-muted:   #6b7280;
  --hs-green:   #00ff88;
  --hs-yellow:  #ffd700;
  --hs-white:   #ffffff;
}

/* ── RESET BODY ── */
body.hssecure-page {
  font-family: 'Syne', sans-serif !important;
  background: var(--hs-dark) !important;
  color: var(--hs-text) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── UTILITY ── */
.hs-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hs-section {
  padding: 5rem 1.5rem;
}

.hs-section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--hs-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.hs-section-tag::before { content: '//'; opacity: 0.4; }

.hs-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.hs-h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hs-h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.hs-lead {
  font-size: 1.05rem;
  color: var(--hs-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hs-accent  { color: var(--hs-cyan); }
.hs-red-txt { color: var(--hs-red-acc); }

/* ── BUTTONS ── */
.hs-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.hs-btn-primary {
  background: var(--hs-red);
  color: #fff;
}
.hs-btn-primary:hover {
  background: var(--hs-red-acc);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155,28,28,0.4);
  color: #fff;
}
.hs-btn-outline {
  border: 1px solid var(--hs-border);
  color: var(--hs-text);
  background: transparent;
}
.hs-btn-outline:hover {
  border-color: var(--hs-cyan);
  color: var(--hs-cyan);
}

/* ── HEADER / NAV ── */
.hs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,8,16,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hs-border);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hs-logo img {
  height: 16px;
  width: auto;
  display: block;
}

.hs-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
}

.hs-nav a {
  color: var(--hs-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s;
}
.hs-nav a:hover,
.hs-nav a.active { color: var(--hs-white); }

.hs-nav .hs-nav-cta {
  background: var(--hs-red);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 5px;
  margin-left: 0.5rem;
}
.hs-nav .hs-nav-cta:hover { background: var(--hs-red-acc); }

/* Mobile nav toggle */
.hs-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hs-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hs-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hs-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.hssecure.nl/wp-content/themes/cyber-security-blocks/images/banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hs-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,232,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,232,0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.hs-hero-glow {
  position: absolute;
  width: 550px; height: 550px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  top: 5%; right: -8%;
  background: var(--hs-blue);
  pointer-events: none;
}
.hs-hero-glow2 {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.09;
  bottom: 15%; left: -5%;
  background: var(--hs-red);
  pointer-events: none;
}

.hs-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,232,0.08);
  border: 1px solid rgba(0,212,232,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-family: 'Space Mono', monospace;
  color: var(--hs-cyan);
  margin-bottom: 1.4rem;
}
.hs-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hs-cyan);
  animation: hs-pulse 1.5s infinite;
}
@keyframes hs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── TERMINAL ── */
.hs-terminal {
  background: #070c18;
  border: 1px solid rgba(0,212,232,0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.hs-term-bar {
  background: #0e1520;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hs-dot { width: 10px; height: 10px; border-radius: 50%; }
.hs-dot-r { background: #ff5f57; }
.hs-dot-y { background: #febc2e; }
.hs-dot-g { background: #28c840; }
.hs-term-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--hs-muted);
  margin-left: 0.5rem;
}
.hs-term-body {
  padding: 1.25rem 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  line-height: 2;
}
.hs-tl { display: block; }
.hs-ti { color: #4a9eff; }
.hs-tok { color: var(--hs-green); }
.hs-twarn { color: var(--hs-yellow); }
.hs-tcrit { color: #ff3d6b; }
.hs-tmuted { color: #374151; }
.hs-cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--hs-cyan);
  animation: hs-blink 1s infinite;
  vertical-align: middle;
}
@keyframes hs-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── STATS BAR ── */
.hs-stats-bar {
  background: var(--hs-surface);
  border-top: 1px solid var(--hs-border);
  border-bottom: 1px solid var(--hs-border);
  padding: 2.5rem 1.5rem;
}
.hs-stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.hs-stat-val {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Space Mono', monospace;
  letter-spacing: -0.04em;
}
.hs-stat-val.red { color: var(--hs-red-acc); }
.hs-stat-val.blue { color: var(--hs-cyan); }
.hs-stat-label {
  font-size: 0.78rem;
  color: var(--hs-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.25rem;
}

/* ── CARDS ── */
.hs-card-grid {
  display: grid;
  gap: 1px;
  background: var(--hs-border);
  border: 1px solid var(--hs-border);
  border-radius: 12px;
  overflow: hidden;
}
.hs-card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hs-card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.hs-card {
  background: var(--hs-surface);
  padding: 2rem;
  transition: background 0.2s;
}
.hs-card:hover { background: var(--hs-surf2); }

.hs-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}
.hs-card p {
  font-size: 0.85rem;
  color: var(--hs-muted);
  line-height: 1.65;
  margin: 0;
}

.hs-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  background: rgba(0,212,232,0.08);
  color: var(--hs-cyan);
  border: 1px solid rgba(0,212,232,0.15);
}
.hs-tag.red {
  background: rgba(155,28,28,0.12);
  color: #f87171;
  border-color: rgba(155,28,28,0.25);
}

/* ── PROCESS STEPS ── */
.hs-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}
.hs-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--hs-cyan), var(--hs-blue), var(--hs-red));
  opacity: 0.25;
}
.hs-step { text-align: center; }
.hs-step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(0,212,232,0.3);
  background: var(--hs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--hs-cyan);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.hs-step p { font-size: 0.82rem; color: var(--hs-muted); line-height: 1.6; }

/* ── CHECKLIST ── */
.hs-checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; }
.hs-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.hs-checklist li::before {
  content: '✓';
  color: var(--hs-green);
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  flex-shrink: 0;
}

/* ── INFO BOX ── */
.hs-infobox {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-left: 3px solid var(--hs-cyan);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}
.hs-infobox.red { border-left-color: var(--hs-red-acc); }
.hs-infobox h4 { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.3rem; }
.hs-infobox p { font-size: 0.82rem; color: var(--hs-muted); margin: 0; line-height: 1.55; }

/* ── NIS2 QUOTE BOX ── */
.hs-quote-box {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hs-quote-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hs-red), var(--hs-blue));
}
.hs-quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30,58,138,0.12);
  border: 1px solid rgba(30,58,138,0.25);
  color: #93c5fd;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 0.9rem;
}

/* ── CVE TICKER ── */
.hs-ticker-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}
.hs-ticker-wrap::before,
.hs-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.hs-ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--hs-surface), transparent); }
.hs-ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--hs-surface), transparent); }
.hs-ticker {
  display: flex;
  gap: 1.2rem;
  animation: hs-scroll 32s linear infinite;
  width: max-content;
}
@keyframes hs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hs-cve-pill {
  flex-shrink: 0;
  background: var(--hs-dark);
  border: 1px solid var(--hs-border);
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.hs-cve-id { color: #ff3d6b; font-weight: 700; }
.hs-cve-score {
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 700;
}
.hs-score-crit { background: rgba(255,61,107,0.15); color: #ff3d6b; }
.hs-score-high { background: rgba(255,215,0,0.1); color: var(--hs-yellow); }
.hs-cve-desc { color: var(--hs-muted); }

/* ── FAQ ── */
.hs-faq { border: 1px solid var(--hs-border); border-radius: 10px; overflow: hidden; }
.hs-faq-item { border-bottom: 1px solid var(--hs-border); }
.hs-faq-item:last-child { border-bottom: none; }
.hs-faq-q {
  width: 100%;
  background: var(--hs-surface);
  color: var(--hs-text);
  text-align: left;
  padding: 1.1rem 1.4rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.hs-faq-q:hover { background: var(--hs-surf2); }
.hs-faq-q .hs-arr { color: var(--hs-cyan); font-size: 1.1rem; transition: transform 0.3s; }
.hs-faq-item.open .hs-arr { transform: rotate(45deg); }
.hs-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  background: var(--hs-dark);
  font-size: 0.87rem;
  color: var(--hs-muted);
  line-height: 1.7;
  padding: 0 1.4rem;
}
.hs-faq-item.open .hs-faq-a {
  max-height: 300px;
  padding: 1.1rem 1.4rem;
}

/* ── FORM ── */
.hs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.hs-form-full { grid-column: 1 / -1; }
.hs-input {
  width: 100%;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: 6px;
  color: var(--hs-text);
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  padding: 0.72rem 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.hs-input:focus { border-color: var(--hs-cyan); }
textarea.hs-input { resize: vertical; min-height: 110px; }
select.hs-input option { background: var(--hs-surface); }

/* ── FOOTER ── */
.hs-footer {
  background: var(--hs-surface);
  border-top: 1px solid var(--hs-border);
  padding: 4rem 1.5rem 2rem;
}
.hs-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--hs-border);
}
.hs-footer-logo { height: 36px; width: auto; margin-bottom: 0.9rem; display: block; }
.hs-footer-desc { font-size: 0.82rem; color: var(--hs-muted); line-height: 1.65; max-width: 240px; }
.hs-footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hs-muted);
  margin: 0 0 1rem;
}
.hs-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.hs-footer-col a { color: var(--hs-text); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.hs-footer-col a:hover { color: var(--hs-cyan); }
.hs-footer-bottom {
  max-width: 1180px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--hs-muted);
}

/* ── PAGE HERO (subpages) ── */
.hs-page-hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--hs-dark);
}
.hs-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.hssecure.nl/wp-content/themes/cyber-security-blocks/images/banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.hs-page-hero-glow {
  position: absolute;
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,212,232,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hs-page-hero-inner { position: relative; z-index: 1; }
.hs-breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--hs-muted);
  margin-bottom: 1rem;
}
.hs-breadcrumb a { color: var(--hs-cyan); text-decoration: none; }
.hs-breadcrumb span { margin: 0 0.4rem; }

/* ── CTA BANNER ── */
.hs-cta-banner {
  background: linear-gradient(135deg, rgba(155,28,28,0.15) 0%, rgba(30,58,138,0.15) 100%);
  border: 1px solid var(--hs-border);
  border-radius: 16px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 5rem 0;
}
.hs-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hs-red), var(--hs-blue));
}
.hs-cta-banner h2 { margin-bottom: 0.75rem; }
.hs-cta-banner p { color: var(--hs-muted); margin-bottom: 2rem; }

/* ── DARK SECTION VARIANT ── */
.hs-section-dark { background: var(--hs-surface); border-top: 1px solid var(--hs-border); border-bottom: 1px solid var(--hs-border); }

/* ── SPLIT LAYOUT ── */
.hs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hs-split.center { align-items: center; }

/* ── PRICE CARDS ── */
.hs-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.hs-price-card {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s;
}
.hs-price-card:hover { transform: translateY(-4px); border-color: rgba(0,212,232,0.3); }
.hs-price-card.featured {
  border-color: rgba(0,212,232,0.35);
  position: relative;
}
.hs-price-card.featured::before {
  content: 'Populair';
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--hs-cyan);
  color: var(--hs-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0 0 6px 6px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em;
}
.hs-price-name { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--hs-muted); margin-bottom: 0.5rem; }
.hs-price-amount { font-size: 2rem; font-weight: 800; font-family: 'Space Mono', monospace; letter-spacing: -0.04em; margin-bottom: 0.25rem; }
.hs-price-period { font-size: 0.78rem; color: var(--hs-muted); margin-bottom: 1.5rem; }
.hs-price-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.hs-price-features li { font-size: 0.84rem; display: flex; align-items: center; gap: 0.6rem; }
.hs-price-features li::before { content: '✓'; color: var(--hs-green); font-family: 'Space Mono', monospace; font-size: 0.8rem; }

/* ── ANIMATIONS ── */
.hs-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hs-reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hs-steps { grid-template-columns: 1fr 1fr; }
  .hs-steps::before { display: none; }
  .hs-card-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .hs-price-grid { grid-template-columns: 1fr 1fr; }
  .hs-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hs-hero-inner { grid-template-columns: 1fr; }
  .hs-split { grid-template-columns: 1fr; gap: 2rem; }
  .hs-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hs-card-grid.cols-3,
  .hs-card-grid.cols-2 { grid-template-columns: 1fr; }
  .hs-price-grid { grid-template-columns: 1fr; }
  .hs-steps { grid-template-columns: 1fr; }
  .hs-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hs-form-grid { grid-template-columns: 1fr; }
  .hs-nav { display: none; }
  .hs-hamburger { display: flex; }
  .hs-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(6,8,16,0.98);
    padding: 1.5rem;
    border-bottom: 1px solid var(--hs-border);
    gap: 0.5rem;
  }
  .hs-cta-banner { padding: 2rem; }
  .hs-cta-banner h2 { font-size: 1.6rem; }
}

/* ── LOGO WEERGAVE ── */
.hs-logo img, .hs-footer-logo {
  height: 16px; width: auto; display: block;
}
.hs-footer-logo { height: 36px; margin-bottom: 0.9rem; }
.hs-logo .custom-logo-link img { height: 16px; width: auto; }
