* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #004177;
  --blue-dark: #00335f;
  --blue-light: #e6edf3;
  --green: #16a34a;
  --ink: #0f172a;
  --gray: #475569;
  --gray-light: #64748b;
  --border: #e2e8f0;
  --bg-soft: #f8fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header / Navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.nav-btn) {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:not(.nav-btn):hover {
  color: var(--blue);
}

.nav-btn {
  background: var(--blue);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: var(--blue-dark);
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 65, 119, 0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(22, 163, 74, 0.08), transparent 45%),
    var(--bg-soft);
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  color: var(--blue-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 540px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--border);
}

.btn {
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--border);
  background: white;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Trust bar */
.trust-bar {
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.trust-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.trust-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-pill {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  letter-spacing: 0.01em;
}

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

section h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-head p {
  font-size: 17px;
  color: var(--gray);
}

/* Legal / text pages */
.legal {
  background: white;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-updated {
  color: var(--gray-light);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 12px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 14px 20px;
  color: var(--gray);
  font-size: 16px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--blue);
}

/* Features */
.features {
  background: #f5f5f5;
  padding-top: 88px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 26px;
}

.icon-blue {
  background: #dbeafe;
  color: var(--blue);
}

.icon-green {
  background: #dcfce7;
  color: var(--green);
}

.icon-amber {
  background: #fed7aa;
  color: #b45309;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* Services */
.services {
  background: var(--bg-soft);
}

.services-intro {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 18px;
  color: var(--gray);
}

.services-intro strong {
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.service-card.service-card-link {
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.service-card.service-card-link:hover {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.service-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.service-card p {
  font-size: 15px;
  color: var(--gray);
}

/* Stats */
.stats {
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-size: 34px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: #dbeafe;
  font-weight: 600;
  margin-top: 4px;
}

/* Experience Section */
.experience {
  background: #f5f5f5;
}

.experience-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

.experience-content p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.experience-content strong {
  color: var(--ink);
}

.highlight-box {
  border-left: 4px solid var(--blue);
  padding: 12px 24px;
  background: white;
  border-radius: 0 12px 12px 0;
}

.highlight-box p:first-child {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Clients Section */
.clients {
  background: var(--bg-soft);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}

.client-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.client-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.client-period {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.client-card p {
  font-size: 14.5px;
  color: var(--gray);
}

/* Mission Section */
.mission {
  background: #f5f5f5;
  text-align: center;
}

.mission-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.mission-icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.mission-box {
  background: linear-gradient(120deg, var(--blue), var(--green));
  color: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
}

/* North-Star Section */
.northstar {
  background: var(--ink);
  color: white;
}

.northstar-content {
  max-width: 860px;
  margin: 0 auto;
}

.northstar-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8fc1e8;
  background: rgba(0, 65, 119, 0.3);
  border: 1px solid rgba(0, 65, 119, 0.55);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.northstar h2 {
  color: white;
}

.northstar-content p {
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.8;
}

.northstar-content strong {
  color: white;
}

/* About Section */
.about {
  background: #f5f5f5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.about h2 {
  text-align: left;
}

.about-lead {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-lead strong {
  color: var(--ink);
}

.about-note {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--gray);
}

.traits-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trait {
  padding: 8px 16px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* Contact Section */
.contact {
  background: linear-gradient(120deg, var(--blue), var(--blue-dark));
  color: white;
  text-align: center;
}

.contact h2 {
  color: white;
}

.contact-subtitle {
  font-size: 19px;
  color: #dbeafe;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.contact-card {
  background: white;
  color: var(--blue);
  padding: 26px;
  border-radius: 16px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.contact-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  color: var(--blue);
}

.contact-card h3 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-light);
}

.northstar-link {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.northstar-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}

.northstar-link a:hover {
  color: white;
}

/* Footer */
footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer-inner a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-inner a:hover {
  color: white;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------- */
/* Subpage components (reused across doorklikpagina's)  */
/* ---------------------------------------------------- */

/* Utility: off-white section background, for alternating section rhythm */
.bg-soft-section {
  background: var(--bg-soft);
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0 0;
  background: var(--bg-soft);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-light);
}

.breadcrumb-inner a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-inner a:hover {
  color: var(--blue);
}

.breadcrumb-inner .current {
  color: var(--ink);
  font-weight: 600;
}

/* Simpler hero for subpages (no image) */
.page-hero {
  padding: 40px 0 72px;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 65, 119, 0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(22, 163, 74, 0.08), transparent 45%),
    var(--bg-soft);
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 680px;
}

/* Source / reference note */
.source-note {
  font-size: 14px;
  color: var(--gray-light);
}

.source-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.source-note a:hover {
  text-decoration: underline;
}

/* Scenario cards (wanneer is een VMO waardevol) */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.scenario-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}

.scenario-card .scenario-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.scenario-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.scenario-card p {
  font-size: 15px;
  color: var(--gray);
}

/* Step list (analyse & implementatie aanpak) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 24px;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.step-card p {
  font-size: 14.5px;
  color: var(--gray);
}

/* Role mapping (bestaande rollen) */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.role-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px;
}

.role-card .role-existing {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 6px;
}

.role-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.role-card .role-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.role-card p {
  font-size: 14px;
  color: var(--gray);
}

/* Engagement / resultaatafspraak panel */
.engagement-panel {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

.engagement-panel p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.engagement-panel p:last-child {
  margin-bottom: 0;
}

.engagement-panel strong {
  color: var(--ink);
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links a:not(.nav-btn) {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 17px;
    max-width: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .button-group {
    justify-content: center;
  }

  .hero-visual img {
    max-width: 100%;
  }

  section h2 {
    font-size: 27px;
  }

  .mission-box {
    font-size: 18px;
    padding: 32px;
  }

  .experience-content {
    padding: 32px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  section {
    padding: 56px 0;
  }

  .features {
    padding-top: 56px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .engagement-panel {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .container {
    padding: 0 16px;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  section h2 {
    font-size: 23px;
  }

  .traits {
    gap: 8px;
  }

  .trait {
    font-size: 12px;
    padding: 6px 12px;
  }

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

  .client-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
