/* Redesign v2 – minimalistisch, conversie, geen zware animaties */
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.page-hero {
  padding: 32px 0 24px;
  margin-bottom: 8px;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.02em;
}
.page-hero .lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 42rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}
.stat-pill {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.stat-pill .label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.stat-pill .value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.stat-pill .meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.section-block {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.section-block:first-of-type { border-top: none; }
.section-block h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.section-block .section-intro {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 36rem;
  line-height: 1.6;
}

.direction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .direction-grid { grid-template-columns: repeat(3, 1fr); }
}
.direction-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.direction-card:hover {
  border-color: rgba(96, 165, 250, 0.35);
}
.direction-card h3 {
  margin: 0;
  font-size: 1.125rem;
  color: #fff;
}
.direction-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.direction-card li {
  margin: 8px 0;
  font-size: 14px;
}
.direction-card li a {
  color: #93c5fd;
  text-decoration: none;
}
.direction-card li a:hover { text-decoration: underline; color: var(--primary); }

.cta-band {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band h2 { margin: 0 0 6px; font-size: 1.25rem; }
.cta-band p { margin: 0; color: var(--muted); font-size: 15px; max-width: 32rem; }

.leveranciers-cta {
  margin: 24px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 2px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.12);
}
.leveranciers-cta__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}
.leveranciers-cta__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.leveranciers-cta__text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 36rem;
}
.leveranciers-cta__btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 48px;
  padding: 14px 22px;
  font-size: 15px;
}
@media (max-width: 640px) {
  .leveranciers-cta { padding: 22px 18px; }
  .leveranciers-cta__btn { width: 100%; text-align: center; justify-content: center; }
}

.leveranciers-cta-inline {
  margin: 28px 0;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.leveranciers-cta-inline__text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.leveranciers-cta-inline__text strong {
  color: #fff;
}
.leveranciers-cta-inline__btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 44px;
  padding: 12px 18px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .leveranciers-cta-inline { padding: 16px; }
  .leveranciers-cta-inline__btn { width: 100%; text-align: center; justify-content: center; }
}

.newsletter-block {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.5) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 14px;
  padding: 32px 24px;
}
.newsletter-block h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #fff;
}
.newsletter-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}
@media (min-width: 640px) {
  .newsletter-benefits { grid-template-columns: repeat(4, 1fr); }
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 480px;
}
.newsletter-form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.8);
  color: var(--text);
  font-size: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid.two-col { grid-template-columns: 1fr 1fr; }
}
.form-field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.8);
  color: var(--text);
  font-size: 16px;
}
.form-field input:focus,
.form-field select:focus,
.newsletter-form input:focus {
  outline: 2px solid rgba(96, 165, 250, 0.5);
  outline-offset: 1px;
}
.result-box {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}
.result-box h3 { margin: 0 0 12px; font-size: 1.1rem; color: #fff; }
.result-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .result-metrics { grid-template-columns: repeat(3, 1fr); }
}
.result-metric {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 8px;
  padding: 14px;
}
.result-metric .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.result-metric .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.plus-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .plus-features { grid-template-columns: repeat(2, 1fr); }
}
.plus-feature {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.5);
}
.plus-feature strong { color: #fff; display: block; margin-bottom: 4px; }
.plus-feature span { font-size: 14px; color: var(--muted); }

.kb-list { list-style: none; padding: 0; margin: 0; }
.kb-list li {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.kb-list a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
}
.kb-list a:hover { text-decoration: underline; }
.kb-list .desc {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

.result-box[hidden] { display: none !important; }
#leadSection[hidden] { display: none !important; }

.form-msg {
  margin-top: 12px;
  font-size: 14px;
  display: none;
}
.form-msg.ok { color: #4ade80; display: block; }
.form-msg.err { color: #f87171; display: block; }

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

/* Geen hover-transform op redesign cards (CWV / motion) */
.direction-card:hover { transform: none; }
