/* ==========================================================================
   ZichtopIT — Main Stylesheet v2.0
   Design: Sharp, editorial, asymmetric — NOT a template
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #F8FAFC;
  background-color: #0B1929;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   2. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --navy:       #0B1929;
  --navy-mid:   #0F2235;
  --navy-light: #1E3A5F;
  --blue:       #2563EB;
  --blue-dim:   rgba(37, 99, 235, 0.12);
  --cyan:       #06B6D4;
  --cyan-dim:   rgba(6, 182, 212, 0.1);
  --white:      #F8FAFC;
  --muted:      #94A3B8;
  --border:     #1E3A5F;
  --border-dim: rgba(30, 58, 95, 0.6);
  --radius:     6px;

  /* Spacing scale */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); letter-spacing: -0.01em; }

p {
  line-height: 1.75;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 700;
  color: var(--white);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-nav.scrolled {
  background-color: rgba(11, 25, 41, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--s8);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Fallback SVG logo */
.nav-logo-svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
  flex-shrink: 0;
}

.nav-logo-name {
  color: var(--white);
}

.nav-logo-name em {
  font-style: normal;
  color: var(--cyan);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s8);
  list-style: none;
  padding: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cyan);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}

.nav-portal-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-portal-link:hover { color: var(--white); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 6px 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  justify-content: center;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background-color: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--s24) 0 var(--s20);
  overflow: hidden;
  background: var(--navy);
}

/* Fine grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

/* Diagonal accent line */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: var(--s16);
  align-items: center;
}

/* Text column */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: var(--s6);
}

.hero-headline .accent {
  color: var(--cyan);
  position: relative;
  display: inline;
}

.hero-headline .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  opacity: 0.4;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--s10);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  column-gap: var(--s5);
  row-gap: var(--s1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.hero-trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* Visual column — terminal/dashboard mockup */
.hero-visual {
  position: relative;
}

.terminal-mock {
  background: #071220;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.6;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(6, 182, 212, 0.06);
  position: relative;
}

.terminal-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  pointer-events: none;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-dim);
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.terminal-title {
  font-family: inherit;
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: var(--s2);
  letter-spacing: 0.06em;
}

.terminal-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.t-line {
  display: flex;
  gap: var(--s3);
  margin-bottom: 0.3rem;
  align-items: baseline;
}

.t-prompt { color: var(--cyan); }
.t-cmd    { color: #e2e8f0; }
.t-ok     { color: #4ade80; }
.t-warn   { color: #fb923c; }
.t-muted  { color: #475569; }
.t-info   { color: #60a5fa; }

.t-separator {
  height: 1px;
  background: var(--border-dim);
  margin: 0.75rem 0;
}

.t-blink {
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* --------------------------------------------------------------------------
   8. One-liner section
   -------------------------------------------------------------------------- */
.oneliner {
  padding: var(--s16) 0;
  border-top: 1px solid var(--border);
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.oneliner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s12);
}

.oneliner-text {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.2;
}

.oneliner-text em {
  font-style: normal;
  color: var(--cyan);
}

/* --------------------------------------------------------------------------
   9. How it works — numbered steps
   -------------------------------------------------------------------------- */
.how-section {
  padding: var(--s20) 0 var(--s24);
  background: var(--navy);
  position: relative;
}

.section-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s5);
}

.section-heading {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s4);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.steps-list {
  margin-top: var(--s12);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s10);
  padding: var(--s10) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step-row:last-child {
  border-bottom: 1px solid var(--border);
}

.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s;
}

.step-row:hover .step-num {
  color: var(--cyan);
}

.step-body-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s3);
}

.step-body-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* --------------------------------------------------------------------------
   10. Features — numbered list layout
   -------------------------------------------------------------------------- */
.features-section {
  padding: var(--s20) 0 var(--s24);
  background: var(--navy-mid);
  position: relative;
}

.features-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
  margin-bottom: var(--s16);
}

.features-list {
  display: flex;
  flex-direction: column;
}

.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--s6);
  padding: var(--s8) 0;
  border-bottom: 1px solid var(--border-dim);
  transition: background-color 0.15s;
}

.feature-row:first-child {
  border-top: 1px solid var(--border-dim);
}

.feature-row:hover {
  background: rgba(30, 58, 95, 0.2);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.feature-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 0.2rem;
}

.feature-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s2);
}

.feature-one-liner {
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: var(--s3);
}

.feature-detail {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* Featured feature — fullwidth highlight */
.feature-highlight {
  margin-top: var(--s12);
  padding: var(--s12) var(--s12);
  background: var(--navy);
  border-left: 3px solid var(--cyan);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: center;
}

.feature-highlight-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s4);
}

.feature-highlight-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: var(--s4);
}

.feature-highlight-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.feature-highlight-detail {
  padding: var(--s6);
  border: 1px solid var(--border);
  background: rgba(6, 182, 212, 0.03);
  border-radius: var(--radius);
}

.fhd-row {
  display: flex;
  gap: var(--s4);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.85rem;
  align-items: baseline;
}

.fhd-row:last-child { border-bottom: none; }

.fhd-label {
  color: var(--muted);
  min-width: 140px;
  font-weight: 500;
  flex-shrink: 0;
}

.fhd-value {
  color: var(--white);
  font-weight: 600;
}

.fhd-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   11. Trust / compliance — table-style layout
   -------------------------------------------------------------------------- */
.trust-table {
  width: 100%;
  border-collapse: collapse;
}

.trust-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: var(--s3) var(--s6) var(--s3) 0;
  border-bottom: 1px solid var(--border);
}

.trust-table td {
  padding: var(--s5) var(--s6) var(--s5) 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.9rem;
  vertical-align: top;
}

.trust-table tr:last-child td { border-bottom: none; }

.trust-table .td-name {
  font-weight: 700;
  color: var(--white);
  width: 220px;
}

.trust-table .td-status {
  width: 120px;
}

.trust-table .td-desc {
  color: var(--muted);
  line-height: 1.6;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
}

.status-badge.green {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

.status-badge.blue {
  color: var(--cyan);
  background: var(--cyan-dim);
}

.status-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* --------------------------------------------------------------------------
   12. Approach — editorial text blocks (no cards)
   -------------------------------------------------------------------------- */
.approach-section {
  padding: var(--s20) 0 var(--s24);
  background: var(--navy);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12) var(--s16);
  margin-top: var(--s12);
}

.approach-item {
  border-top: 2px solid var(--border);
  padding-top: var(--s6);
}

.approach-item-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s4);
}

.approach-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s4);
}

.approach-item-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   13. CTA section — fullwidth asymmetric
   -------------------------------------------------------------------------- */
.cta-strip {
  padding: var(--s16) 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s12);
  align-items: center;
}

.cta-strip-text {}

.cta-strip-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s4);
  display: block;
}

.cta-strip-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: var(--s3);
}

.cta-strip-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: flex-end;
}

.cta-fine-print {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
}

/* Bottom CTA — large typographic */
.cta-big {
  padding: var(--s24) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-big::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-big-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s16);
  align-items: end;
}

.cta-big-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--s5);
}

.cta-big-headline em {
  font-style: normal;
  color: var(--cyan);
}

.cta-big-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.cta-big-side {}

.cta-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.875rem;
  color: var(--muted);
}

.cta-checklist li::before {
  content: '→';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. Contact form
   -------------------------------------------------------------------------- */
.contact-section {
  padding: var(--s20) 0 var(--s24);
  background: var(--navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s16);
  align-items: start;
}

.form-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: var(--s4);
}

.form-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: var(--s4);
}

.form-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: var(--s10);
  line-height: 1.7;
}

.form-no-commitment {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.02em;
  padding: var(--s3) 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: var(--s8);
}

.form-group {
  margin-bottom: var(--s5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s2);
  letter-spacing: 0.01em;
}

.required { color: var(--cyan); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(30, 58, 95, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s, background-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder { color: #475569; }

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(30, 58, 95, 0.5);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select option {
  background: #0F2235;
  color: var(--white);
}

textarea { resize: vertical; min-height: 120px; }

.form-checkbox-group {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  margin-bottom: var(--s6);
}

.form-checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin-top: 2px;
  padding: 0;
  cursor: pointer;
  accent-color: var(--blue);
}

.form-checkbox-group label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-group label a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
}

.form-disclaimer {
  margin-top: var(--s3);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* Info sidebar */
.contact-info-side {
  padding-top: var(--s10);
}

.info-side-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s4);
}

.info-side-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--s8);
}

.trial-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s10);
}

.trial-benefit {
  display: flex;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border-dim);
}

.trial-benefit:first-child { border-top: 1px solid var(--border-dim); }

.tb-arrow {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
  padding-top: 0.1rem;
}

.tb-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.tb-text strong { color: var(--white); }

.direct-contact-block {
  border-top: 1px solid var(--border-dim);
  padding-top: var(--s6);
  margin-top: var(--s2);
}

.direct-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: var(--s3);
}

.direct-contact-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.direct-contact-text a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   15. Compliance table page section
   -------------------------------------------------------------------------- */
.compliance-section {
  padding: var(--s20) 0 var(--s24);
  background: var(--navy-mid);
}

/* --------------------------------------------------------------------------
   16. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  padding: var(--s20) 0 var(--s16);
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 100% at 20% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 20% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: var(--s5);
}

.page-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #070f1a;
  border-top: 1px solid var(--border);
  padding: var(--s16) 0 var(--s8);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s10);
  padding-bottom: var(--s12);
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: var(--s8);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  margin-bottom: var(--s5);
}

.footer-logo img {
  width: 28px;
  height: 28px;
}

.footer-logo-svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.footer-logo-name em {
  font-style: normal;
  color: var(--cyan);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--s6);
}

.footer-portal-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background-color 0.15s;
}

.footer-portal-link:hover {
  background: var(--cyan-dim);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--s5);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #334155;
}

.footer-legal-links {
  display: flex;
  gap: var(--s6);
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: #334155;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal-links a:hover { color: var(--muted); }

/* --------------------------------------------------------------------------
   18. Tag / badge components
   -------------------------------------------------------------------------- */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-dim);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
}

.tag-cyan {
  color: var(--cyan);
  border-color: rgba(6, 182, 212, 0.25);
  background: var(--cyan-dim);
}

/* --------------------------------------------------------------------------
   19. Responsive — Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--s12);
  }

  .hero-visual {
    display: none;
  }

  .oneliner-inner {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .features-intro {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .feature-highlight {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .cta-strip-actions {
    align-items: flex-start;
  }

  .cta-fine-print { text-align: left; }

  .cta-big-inner {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* --------------------------------------------------------------------------
   20. Responsive — Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --s20: 3.5rem;
    --s24: 4.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 25, 41, 0.99);
    flex-direction: column;
    gap: 0;
    padding: var(--s4) 0 var(--s6);
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: var(--s4) 1.5rem;
    font-size: 1rem;
  }

  .nav-link.active::after { display: none; }

  .nav-actions {
    display: none;
  }

  .nav-actions.open {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: var(--s4) 1.5rem var(--s6);
    background: rgba(11, 25, 41, 0.99);
    border-top: 1px solid var(--border);
    z-index: 99;
    gap: var(--s3);
  }

  .nav-actions.open .btn { width: 100%; justify-content: center; }
  .nav-actions.open .nav-portal-link { text-align: center; }

  .nav-toggle { display: flex; }

  .nav-portal-link { display: none; }
  .nav-actions.open .nav-portal-link { display: block; }

  .step-row {
    grid-template-columns: 60px 1fr;
    gap: var(--s4);
  }

  .step-num { font-size: 2.5rem; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-table { font-size: 0.85rem; }
  .trust-table .td-name { width: 160px; }
}

/* --------------------------------------------------------------------------
   21. Utilities
   -------------------------------------------------------------------------- */
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }

.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--cyan);
  margin-top: var(--s6);
}

/* Print reset */
@media print {
  .site-nav, .site-footer { display: none; }
}

/* --------------------------------------------------------------------------
   22. Hero FOMO — urgentie, blinde vlekken
   -------------------------------------------------------------------------- */
.hero-fomo {
  position: relative;
  padding: var(--s24) 0 var(--s20);
  background: var(--navy);
  overflow: hidden;
}

/* Fine grid background */
.hero-fomo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

/* Left accent line */
.hero-fomo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 70%);
  pointer-events: none;
}

.hero-fomo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56% 1fr;
  gap: var(--s16);
  align-items: center;
}

.hero-fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: var(--s8);
}

.hero-fomo-headline {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--muted);
  margin-bottom: var(--s4);
}

/* The "blind list" — dashes before each item */
.hero-blind-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s6);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-blind-list li {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
  padding: 0.6rem 0 0.6rem 2rem;
  border-bottom: 1px solid var(--border-dim);
  position: relative;
}

.hero-blind-list li:first-child {
  border-top: 1px solid var(--border-dim);
}

.hero-blind-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

/* The punchline — ZichtopIT wel. */
.hero-fomo-punchline {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cyan);
  line-height: 1.4;
  margin: var(--s6) 0 var(--s4);
}

.hero-fomo-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--s8);
  max-width: 480px;
}

.hero-fomo-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s5);
}

.hero-fomo-fineline {
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.5;
}

.hero-fomo-visual {
  position: relative;
}

/* --------------------------------------------------------------------------
   23. Quotes / One-liners — groot, typografisch, gedurfd
   -------------------------------------------------------------------------- */
.quotes-section {
  background: #060e18;
  padding-top: var(--s16);
  padding-bottom: var(--s4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quotes-section > .container {
  margin-bottom: var(--s10);
}

.quotes-list {
  display: flex;
  flex-direction: column;
}

.quote-item {
  padding: var(--s10) 0;
}

.quote-text {
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
  max-width: 900px;
  quotes: none;
}

.quote-divider {
  height: 1px;
  background: var(--border);
  margin: 0 1.5rem;
}

/* Alternating left/right alignment for visual rhythm */
.quote-item:nth-child(even) .quote-text {
  margin-left: auto;
  color: #CBD5E1;
}

/* --------------------------------------------------------------------------
   24. Neefje — sarcastisch titel, serieuze inhoud
   -------------------------------------------------------------------------- */
.neefje-section {
  padding: var(--s20) 0 var(--s24);
  background: var(--navy-mid);
  position: relative;
}

.neefje-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--s16);
  align-items: start;
}

.neefje-headline {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: var(--s8);
}

/* The italic part is the "quote" — stands out */
.neefje-headline em {
  font-style: italic;
  color: var(--white);
  display: block;
}

.neefje-body {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  border-left: 3px solid var(--border);
  padding-left: var(--s8);
}

.neefje-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.neefje-conclusion {
  color: var(--white) !important;
  font-size: 1.05rem !important;
  padding-top: var(--s4);
  border-top: 1px solid var(--border-dim);
}

.neefje-conclusion strong {
  color: var(--cyan);
}

/* Stats sidebar */
.neefje-stat-block {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: var(--s8);
}

.neefje-stat {
  padding: var(--s5) 0;
}

.neefje-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cyan);
  line-height: 1.2;
  margin-bottom: var(--s2);
}

.neefje-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.neefje-stat-divider {
  height: 1px;
  background: var(--border-dim);
}

/* --------------------------------------------------------------------------
   25. MKB focus — 1 tot 50 werkplekken
   -------------------------------------------------------------------------- */
.mkb-section {
  padding: var(--s20) 0 var(--s24);
  background: var(--navy);
  position: relative;
}

.mkb-header {
  margin-bottom: var(--s12);
}

.mkb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.mkb-item {
  padding: var(--s8) var(--s8) var(--s8) 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border-dim);
}

.mkb-item:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.mkb-item:nth-child(3n+1) {
  padding-left: 0;
}

.mkb-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s4);
}

.mkb-item-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Full-width price row */
.mkb-item-full {
  grid-column: 1 / -1;
  border-right: none;
  padding: var(--s8) 0;
  display: flex;
  align-items: center;
}

.mkb-price-note {
  max-width: 680px;
}

.mkb-price-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: var(--s3);
}

.mkb-price-text {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
}

/* step-link — inline text link inside step body */
.step-link {
  display: inline-block;
  margin-top: var(--s5);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.step-link:hover {
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   26. Geen verplichtingen (no-guts) — prominent
   -------------------------------------------------------------------------- */
.noguts-section {
  padding: var(--s20) 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.noguts-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--s16);
  align-items: center;
}

.noguts-headline {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.45;
}

.noguts-headline em {
  font-style: normal;
  color: var(--cyan);
}

.noguts-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.noguts-list li {
  display: flex;
  gap: var(--s4);
  align-items: baseline;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--white);
}

.noguts-list li:first-child {
  border-top: 1px solid var(--border-dim);
}

.noguts-arrow {
  color: var(--cyan);
  font-weight: 800;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   27. Final CTA — groot en simpel
   -------------------------------------------------------------------------- */
.cta-final {
  padding: var(--s24) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s8);
  max-width: 680px;
  margin: 0 auto;
}

.cta-final-headline {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.4;
}

.cta-final-btn {
  min-width: 220px;
}

.cta-final-fineline {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   28. Responsive overrides for new sections
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-fomo-inner {
    grid-template-columns: 1fr;
    gap: var(--s12);
  }

  .hero-fomo-visual {
    display: none;
  }

  .neefje-inner {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .mkb-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mkb-item:nth-child(2n) {
    border-right: none;
  }

  .mkb-item:nth-child(3) {
    border-right: none;
    padding-right: 0;
  }

  .noguts-inner {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .quote-text {
    font-size: clamp(1.3rem, 3vw, 2rem);
  }
}

@media (max-width: 640px) {
  .hero-blind-list li {
    font-size: 1rem;
  }

  .hero-fomo-punchline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .mkb-grid {
    grid-template-columns: 1fr;
  }

  .mkb-item {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
  }

  .mkb-item:nth-child(3n+1) {
    padding-left: 0;
  }

  .quote-item:nth-child(even) .quote-text {
    margin-left: 0;
  }

  .neefje-body {
    padding-left: var(--s5);
  }

  .cta-final-headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .how-teaser-inner {
    grid-template-columns: 1fr;
  }
}

/* ─── How teaser layout ─────────────────────────────────────── */
.how-teaser {
  padding: var(--s10) 0;
  background: var(--navy-mid);
}

.how-teaser-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

/* ─── Quote interrupter bar ──────────────────────────────── */
.ql-bar {
  border-top: 1px solid var(--border, #1E3A5F);
  border-bottom: 1px solid var(--border, #1E3A5F);
  padding: 1.75rem 0;
  margin: 0;
  overflow: hidden;
}
.ql-bar blockquote {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 500;
  color: #94A3B8;
  max-width: 820px;
  line-height: 1.5;
}
.ql-bar blockquote em {
  font-style: normal;
  color: #06B6D4;
}

/* --------------------------------------------------------------------------
   25. Dashboard mockup — vervangt terminal in hero
   -------------------------------------------------------------------------- */
.dash-mock {
  background: #071220;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(6,182,212,0.06);
}

.dash-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-dim);
}

.dash-mock-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.dash-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
}

.dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

.dash-mock-body {
  padding: 1.25rem;
}

.dash-score-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dash-score-circle {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.dash-score-circle svg {
  width: 64px;
  height: 64px;
}

.dash-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.dash-score-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.dash-score-sub {
  font-size: 0.75rem;
  color: #fb923c;
  font-weight: 500;
}

.dash-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}

.dash-alert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-dim);
}

.dash-alert-item:first-child {
  border-top: 1px solid var(--border-dim);
}

.dash-alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-alert--warn .dash-alert-dot { background: #fb923c; }
.dash-alert--ok  .dash-alert-dot  { background: #4ade80; }

.dash-alert-content {
  flex: 1;
  min-width: 0;
}

.dash-alert-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.dash-alert-desc {
  font-size: 0.7rem;
  color: var(--muted);
}

.dash-alert-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fb923c;
  background: rgba(251,146,60,0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.dash-tag--ok {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
}

.dash-advice-box {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 6px;
  padding: 0.9rem 1rem;
}

.dash-advice-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
  display: block;
}

.dash-advice-text {
  font-size: 0.78rem;
  color: #e2e8f0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   26. Trust signals bar — compact balk onder hero
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.trust-bar-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.25rem 1.5rem 0.25rem 0;
  white-space: nowrap;
}

.trust-bar-item:not(:last-child) {
  border-right: 1px solid var(--border);
  margin-right: 1.5rem;
}

.trust-bar-item svg {
  color: var(--cyan);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   26b. NIS2 compact section — homepage
   -------------------------------------------------------------------------- */
.nis2-home-section {
  padding: var(--s16) 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.nis2-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}

.nis2-home-text .section-heading {
  margin-bottom: var(--s4);
}

.nis2-home-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nis2-stat-row {
  display: flex;
  align-items: baseline;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border-dim);
}

.nis2-stat-row:first-child {
  border-top: 1px solid var(--border-dim);
}

.nis2-stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  min-width: 80px;
}

.nis2-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.nis2-stat-source {
  font-size: 0.65rem;
  color: #475569;
  display: block;
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .nis2-home-inner {
    grid-template-columns: 1fr;
  }
  .trust-bar-item:not(:last-child) {
    border-right: none;
    margin-right: 1rem;
  }
}

/* --------------------------------------------------------------------------
   27. Neefje callout — compact tussenkadertje
   -------------------------------------------------------------------------- */
.neefje-callout {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.neefje-callout-inner {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  flex-wrap: wrap;
}

.neefje-callout-quote {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  flex-shrink: 0;
}

.neefje-callout-reply {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  border-left: 2px solid var(--cyan);
  padding-left: 1rem;
}

/* --------------------------------------------------------------------------
   27. Benefits grid — sectie 3 homepage
   -------------------------------------------------------------------------- */
.benefits-section {
  padding: var(--s20) 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}

.benefit-item {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
  padding: var(--s6);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--navy-mid);
  transition: border-color 0.15s;
}

.benefit-item:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--cyan-dim);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   27. Testimonials (structuur klaarstaan voor echte quotes)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--s20) 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}

.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--border);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: var(--s4);
  border-top: 1px solid var(--border-dim);
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   27. Prijzen sectie
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: var(--s20) 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.pricing-card {
  margin-top: var(--s10);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-card-left {
  background: var(--blue);
  padding: var(--s10) var(--s8);
  display: flex;
  flex-direction: column;
}

.pricing-amount {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.pricing-per {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: auto;
}

.pricing-card-left .btn-primary {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  margin-top: 2rem;
}

.pricing-card-left .btn-primary:hover {
  background: #e0e7ff;
  border-color: #e0e7ff;
}

.pricing-fineline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.pricing-includes {
  background: var(--navy);
  padding: var(--s10) var(--s8);
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.9rem;
  color: var(--white);
}

.pricing-includes li:last-child {
  border-bottom: none;
}

.pricing-includes li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing-card {
    grid-template-columns: 1fr;
  }
  .pricing-card-left {
    padding: var(--s8);
  }
}
