/* ==========================================================================
   DarkFiber.nl — statisch stylesheet (geporteerd design system)
   Licht professioneel thema: wit/lichtgrijs, elektrisch blauw accent,
   antracieten tekst, Inter-typografie.
   ========================================================================== */

/* ---------- Design tokens (afgestemd op Manus-ontwerp) ---------- */
:root {
  --background: #f7f8fa;
  --foreground: #2a2f3d;
  --card: #ffffff;
  --primary: #006ae5;
  --primary-hover: #0058c4;
  --primary-foreground: #fcfcfd;
  --secondary: #eef1f5;
  --secondary-foreground: #363c4e;
  --muted: #f0f2f5;
  --muted-foreground: #5c6578;
  --accent: #e8f0fb;
  --accent-foreground: #2c3c5e;
  --destructive: #d3372c;
  --border: #dde1e8;
  --input: #d4d9e2;
  --ring: #006ae5;
  --dark-section: #08121f;
  --dark-foreground: #e3e8ee;
  --radius: 0.625rem;
  --radius-sm: 0.375rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1rem;
  --shadow-card: 0 1px 3px rgba(20, 30, 60, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 106, 229, 0.10);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --container: 72rem;
}

/* ---------- Inter lokaal/systeem (geen externe fonts nodig; Google Fonts optioneel) ---------- */
/* De site gebruikt Inter wanneer lokaal geïnstalleerd, anders een naadloze systeemfallback. */

/* ---------- Reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--foreground); margin: 0 0 0.75rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.875rem); }
h3, .h3 { font-size: 1.25rem; }
h4, .h4 { font-size: 1rem; margin-bottom: 0.35rem; }
p { margin: 0 0 1rem; }
a { color: inherit; }
ul, ol { padding-left: 1.4rem; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; border-radius: 2px; }

/* ---------- Toegankelijkheid ---------- */
.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;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.6rem 1rem; border-radius: 0 0 var(--radius) 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Honeypot: buiten beeld, maar wél in de DOM voor bots */
.hp-field { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 3.5rem; }
.section-sm { padding-block: 2.25rem; }
.center { text-align: center; }
.narrow { max-width: 42rem; margin-inline: auto; }
.narrow-left { max-width: 42rem; }
.narrow-center { max-width: 46rem; margin-inline: auto; text-align: center; }
.narrow-grid { max-width: 56rem; margin-inline: auto; }
.wide { max-width: 100%; }
.grow { flex: 1; }
.mt { margin-top: 2rem; }
.mt-sm { margin-top: 1rem; }
.mt-lg { margin-top: 3rem; }
.mb { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.stacked > * + * { margin-top: 1rem; }
.items-center { align-items: center; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 60rem) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 40rem) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split { display: grid; gap: 2.5rem; grid-template-columns: 1.2fr 1fr; align-items: center; }
.split-wide { grid-template-columns: 1fr 1fr; }
.split-feature { grid-template-columns: 1.35fr 1fr; align-items: start; gap: 2.75rem; }
.split-main { min-width: 0; }
.split-aside { min-width: 0; }
.feature-aside { display: flex; flex-direction: column; gap: 1.25rem; }
@media (max-width: 56rem) {
  .split, .split-wide, .split-feature { grid-template-columns: 1fr; }
}

/* ---------- Typografie-hulpmiddelen ---------- */
.lead { font-size: 1.125rem; color: var(--muted-foreground); }
.muted { color: var(--muted-foreground); }
.dimmed { color: var(--muted-foreground); opacity: 0.85; }
.small { font-size: 0.9rem; }
.xsmall { font-size: 0.78rem; }
.medium { font-weight: 500; }
.small-title { font-size: 0.95rem; font-weight: 600; }
.eyebrow {
  color: var(--primary); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.muted-eyebrow {
  color: var(--muted-foreground); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.text-link { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.text-link:hover { color: var(--primary-hover); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: var(--radius); border: 1px solid transparent;
  padding: 0.6rem 1.15rem; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: background-color 160ms var(--ease-out),
    border-color 160ms var(--ease-out), color 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.btn-secondary:hover { background: #e2e5ec; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--foreground); }
.btn-outline:hover { background: var(--accent); }
.btn-lg { padding: 0.8rem 1.5rem; font-size: 1rem; }
.btn-small { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 248, 250, 0.80); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 4rem; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-mark {
  display: block; flex: none; width: 1.75rem; height: 1.75rem;
  color: var(--primary);
}
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-name { color: var(--foreground); }
.brand-accent { color: var(--primary); }
.brand-tld { color: var(--foreground); }

.main-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 0.25rem; padding: 0; margin: 0; }
.main-nav li { margin: 0; }
.main-nav a, .main-nav .nav-dropdown > summary {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.8rem; border-radius: var(--radius-sm);
  color: var(--foreground); font-size: 0.95rem; font-weight: 500; text-decoration: none;
  list-style: none; cursor: pointer; white-space: nowrap;
}
.main-nav a:hover { background: var(--accent); }
.main-nav a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.dropdown-menu a { white-space: normal; }
.main-nav > a, .main-nav .nav-dropdown > summary {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.8rem; border-radius: var(--radius-sm);
  color: var(--foreground); font-size: 0.95rem; font-weight: 500; text-decoration: none;
  list-style: none; cursor: pointer;
}
.main-nav > a:hover, .main-nav .nav-dropdown > summary:hover { background: var(--accent); }
.main-nav > a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after {
  content: ""; width: 0.45em; height: 0.45em; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px);
  margin-left: 0.2rem; transition: transform 160ms var(--ease-out);
}
.nav-dropdown[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.4rem); left: 0; min-width: 17rem;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(20, 30, 60, 0.12); padding: 0.4rem; z-index: 60;
}
.dropdown-menu a {
  display: block; padding: 0.55rem 0.75rem; border-radius: var(--radius-sm);
  text-decoration: none; font-size: 0.92rem; color: var(--foreground);
}
.dropdown-menu a:hover { background: var(--accent); color: var(--accent-foreground); }
.header-cta { margin-left: 0.5rem; }

/* Mobiel menu: checkbox-hack, werkt zonder JavaScript */
.mobile-menu-checkbox { position: absolute; opacity: 0; pointer-events: none; }
.mobile-menu-button { display: none; }
.mobile-nav { display: none; }

@media (max-width: 56rem) {
  .main-nav, .header-cta { display: none; }
  .mobile-menu-button {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-left: auto; padding: 0.5rem 0.75rem;
    border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
    font-size: 0.85rem; font-weight: 600; color: var(--foreground);
  }
  .hamburger { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; width: 1.1rem; }
  .hamburger span { display: block; height: 2px; background: var(--foreground); border-radius: 2px; transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out); }
  .mobile-menu-checkbox:focus-visible ~ .mobile-menu-button { outline: 2px solid var(--ring); outline-offset: 2px; }
  .mobile-menu-checkbox:checked ~ .mobile-menu-button .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu-checkbox:checked ~ .mobile-menu-button .hamburger span:nth-child(2) { opacity: 0; }
  .mobile-menu-checkbox:checked ~ .mobile-menu-button .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--card); border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.5rem; box-shadow: 0 20px 40px rgba(20, 30, 60, 0.12);
    max-height: calc(100vh - 4rem); overflow-y: auto;
  }
  .mobile-menu-checkbox:checked ~ .mobile-nav { display: block; }
  .mobile-nav ul { list-style: none; padding: 0; margin: 0; }
  .mobile-nav a { display: block; padding: 0.6rem 0.25rem; text-decoration: none; color: var(--foreground); font-weight: 500; border-radius: var(--radius-sm); }
  .mobile-nav a:hover { color: var(--primary); }
  .mobile-nav-group { border-top: 1px solid var(--border); margin: 0.5rem 0 0.2rem; padding-top: 0.6rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-foreground); }
  .mobile-nav-heading { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-foreground); margin: 0.4rem 0 0.2rem; }
  .mobile-nav-sub a { padding-left: 0.75rem; font-weight: 400; font-size: 0.95rem; }
  .mobile-nav-secondary { border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.5rem; }
  .mobile-nav-cta { margin-top: 1rem; width: 100%; }
}

/* ---------- Hero (glow + hokjespatroon, Manus-ontwerp) ---------- */
.hero {
  position: relative; padding-block: 5rem 4.5rem; overflow: hidden;
  background:
    radial-gradient(60rem 30rem at 15% 0%, rgba(200, 224, 255, 0.55), transparent 60%),
    radial-gradient(50rem 26rem at 85% 100%, rgba(209, 231, 255, 0.45), transparent 60%);
  border-bottom: none;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(57, 73, 93, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(57, 73, 93, 0.05) 1px, transparent 1px);
  background-size: 3rem 3rem;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.15fr 1fr; align-items: center; }
@media (max-width: 56rem) {
  .hero { padding-block: 3.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-card);
  padding: 0;
}
.hero-card img {
  width: 100%; height: 11rem; object-fit: cover; display: block;
  border-radius: 0;
}
@media (min-width: 40rem) {
  .hero-card img { height: 14rem; }
}
.hero-card-body { padding: 2rem; }
@media (min-width: 40rem) {
  .hero-card-body { padding: 2.5rem; }
}
.hero-card-body .two-point { margin-bottom: 1.5rem; }
.hero-card-body > p:last-child { margin-bottom: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-card);
}
.card.hero-card { padding: 0; border-radius: 1rem; }
.card-pad { padding: 1.75rem; }
.card-pad-lg { padding: 2.25rem; }
@media (min-width: 56rem) {
  .card-pad-lg { padding: 2.5rem 2.75rem; }
}
.card-hover { transition: transform 200ms var(--ease-out), border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.card-hover:hover { transform: translateY(-2px); border-color: rgba(0, 106, 229, 0.45); box-shadow: var(--shadow-card-hover); }
.card-row { display: flex; gap: 1rem; align-items: flex-start; }
.card-row-top { display: flex; gap: 1rem; align-items: flex-start; }
.card-col { display: flex; flex-direction: column; gap: 0.5rem; }
.card-center { text-align: center; }
.card-accent { background: var(--accent); border-color: rgba(0, 106, 229, 0.25); }
.card-primary { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.card-primary h2, .card-primary h3, .card-primary .h3 { color: var(--primary-foreground); }
.card-primary .muted { color: rgba(252, 252, 253, 0.75); }
.card-primary .lead, .card-primary p { color: rgba(252, 252, 253, 0.88); }
.card-primary .eyebrow { color: #cfe0ff; }
.card-primary .endpoint-icon {
  background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none; color: #ffffff;
}
.card-primary .endpoint-label { color: #ffffff; }
.card-primary .endpoint-equipment { color: rgba(255, 255, 255, 0.7); }
.card-primary .two-point-line-base { stroke: rgba(255, 255, 255, 0.35); }
.card-primary .two-point-line-pulse { stroke: #ffffff; }
.card-primary .two-point-line-node { fill: #ffffff; }
.card-primary .two-point-line-label { color: #ffffff; }
.card-primary .two-point-line-sub { color: rgba(255, 255, 255, 0.7); }
.card-primary .btn-outline { border-color: rgba(255, 255, 255, 0.5); color: #ffffff; }
.card-primary .btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.card-primary .btn-secondary { background: #ffffff; color: var(--primary); }
.card-primary .text-link { color: #ffffff; }
.img-card { border-radius: var(--radius-lg); border: 1px solid var(--border); object-fit: cover; width: 100%; }

/* Feature-card (licht, Manus-ontwerp — "Meest gekozen oplossing") */
.feature-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--card); border: 1px solid rgba(0, 106, 229, 0.40);
  border-radius: 1rem; overflow: hidden;
}
.feature-card-main { padding: 2rem; }
.feature-card-main .muted { margin-bottom: 1rem; }
.feature-card-main .btn-row { margin-top: 0.5rem; }
.feature-card-visual {
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 240, 251, 0.30); padding: 2rem;
}
@media (min-width: 40rem) {
  .feature-card-main, .feature-card-visual { padding: 3rem; }
}
@media (max-width: 56rem) {
  .feature-card { grid-template-columns: 1fr; }
}

.dot {
  flex: none; width: 0.6rem; height: 0.6rem; margin-top: 0.5rem;
  border-radius: 50%; background: var(--primary); display: inline-block;
}

/* ---------- Situaties / stats / stappen ---------- */
.situaties-grid { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 60rem) { .situaties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 36rem) { .situaties-grid { grid-template-columns: 1fr; } }

.stats-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 40rem) { .stats-grid { grid-template-columns: 1fr; } }
.stat { text-align: center; padding: 1.25rem; }
.stat-value { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); }

.steps-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; counter-reset: stap; }
.steps-list > li { display: flex; gap: 1rem; align-items: flex-start; }
.step-number {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--accent); color: var(--primary); font-weight: 700; font-size: 0.95rem;
}

.check-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.check-list > li { position: relative; padding-left: 1.7rem; margin-bottom: 0.55rem; }
.check-list > li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--primary); font-weight: 700;
}
.check-list-badges { margin: 0; }
.check-list-badges > li {
  padding-left: 2rem; margin-bottom: 0.85rem; color: var(--muted-foreground); font-size: 0.95rem;
}
.check-list-badges > li:last-child { margin-bottom: 0; }
.check-list-badges > li::before {
  content: ""; left: 0; top: 0.2rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l2.8 2.8 6.2-6.2' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 0.7rem;
  color: transparent; font-weight: normal;
}

.link-list { list-style: none; padding: 0; margin: 0; }
.link-list > li { margin-bottom: 0.5rem; }

.data-list { display: grid; gap: 0.5rem; margin: 0; }
.data-list dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); }
.data-list dd { margin: 0 0 0.6rem; font-weight: 500; }

/* ---------- Tabellen ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--card); }
.table-wrap table { min-width: 40rem; }
.table-wrap th, .table-wrap td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; vertical-align: top; }
.table-wrap thead th { background: var(--muted); font-weight: 600; }
.table-wrap tbody tr:last-child td { border-bottom: none; }
.th-primary { color: var(--primary); }
.row-highlight { background: var(--accent); }
.row-highlight td:first-child { font-weight: 600; color: var(--accent-foreground); }

/* ---------- Prose (artikelen / juridisch) ---------- */
.prose { max-width: 46rem; }
.prose-page { max-width: 46rem; margin-inline: auto; }
.prose h2, .prose-page h2 { margin-top: 2.25rem; }
.prose h3, .prose-page h3 { margin-top: 1.5rem; }
.prose p, .prose-page p, .prose li, .prose-page li { color: var(--foreground); }

/* ---------- FAQ (details/summary, werkt zonder JS) ---------- */
.faq-list { display: grid; gap: 0.6rem; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0; overflow: hidden;
}
.faq-item > summary {
  cursor: pointer; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1rem; list-style: none; position: relative; padding-right: 2.4rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); color: var(--primary); font-size: 1.2rem; font-weight: 600;
}
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item > p { padding: 0 1rem 0.9rem; margin: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-block: 0.85rem 0; font-size: 0.85rem; color: var(--muted-foreground); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; padding: 0; margin: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.35rem; }
.breadcrumbs li + li::before { content: "/"; color: var(--border); }
.breadcrumbs a { color: var(--muted-foreground); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); text-decoration: underline; }

/* ---------- Twee-eindpunten-visual (Manus-ontwerp) ---------- */
.two-point { margin: 0; max-width: 42rem; margin-inline: auto; width: 100%; }
.two-point-compact { max-width: 28rem; }
.two-point-row {
  display: flex; align-items: center; gap: 0.5rem;
}
@media (min-width: 40rem) {
  .two-point-row { gap: 1rem; }
}
.endpoint-block {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; flex: 1; min-width: 0;
}
.endpoint-icon {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem; border-radius: 0.75rem;
  background: var(--card); border: 1px solid rgba(0, 106, 229, 0.40);
  color: var(--primary);
  box-shadow: 0 0 24px -6px rgba(0, 106, 229, 0.30);
}
@media (min-width: 40rem) {
  .endpoint-icon { padding: 1rem; }
}
.endpoint-icon svg {
  display: block; width: 1.5rem; height: 1.5rem;
}
@media (min-width: 40rem) {
  .endpoint-icon svg { width: 2rem; height: 2rem; }
}
.endpoint-label {
  font-size: 0.75rem; font-weight: 500; color: var(--foreground);
  line-height: 1.3;
}
@media (min-width: 40rem) {
  .endpoint-label { font-size: 0.875rem; }
}
.endpoint-equipment {
  font-size: 0.625rem; color: var(--muted-foreground); line-height: 1.3;
}
@media (min-width: 40rem) {
  .endpoint-equipment { font-size: 0.75rem; }
}

.two-point-mid {
  display: flex; flex-direction: column; align-items: center;
  flex: 1.4; min-width: 0;
}
.two-point-line-svg {
  display: block; width: 100%; height: 1.5rem;
}
.two-point-line-base {
  stroke: #3a4558; stroke-width: 4; fill: none;
}
.two-point-line-pulse {
  stroke: var(--primary); stroke-width: 2; fill: none;
  stroke-dasharray: 6 10;
}
.two-point-line-node { fill: var(--primary); }
@media (prefers-reduced-motion: no-preference) {
  .two-point-line-pulse { animation: df-dash 1.6s linear infinite; }
  @keyframes df-dash {
    to { stroke-dashoffset: -16px; }
  }
}
.two-point-line-label {
  font-size: 0.625rem; font-weight: 500; color: var(--primary);
  white-space: nowrap; margin-top: 0.15rem;
}
@media (min-width: 40rem) {
  .two-point-line-label { font-size: 0.75rem; }
}
.two-point-line-sub {
  font-size: 0.625rem; color: var(--muted-foreground); white-space: nowrap;
}
@media (min-width: 40rem) {
  .two-point-line-sub { font-size: 0.75rem; }
}

.two-point-compact .endpoint-icon { padding: 0.55rem; }
.two-point-compact .endpoint-icon svg { width: 1.25rem; height: 1.25rem; }
.two-point-compact .endpoint-label { font-size: 0.7rem; }

/* ---------- CTA-sectie (lichte glow-card, Manus-ontwerp) ---------- */
.cta-section {
  padding-block: 0; margin-top: 3.5rem; margin-bottom: 0;
  background: transparent; color: var(--foreground);
}
.cta-inner {
  display: block;
  text-align: center;
  background:
    radial-gradient(60rem 30rem at 15% 0%, rgba(200, 224, 255, 0.55), transparent 60%),
    radial-gradient(50rem 26rem at 85% 100%, rgba(209, 231, 255, 0.45), transparent 60%),
    linear-gradient(to bottom right, rgba(232, 240, 251, 0.85), var(--card));
  border: 1px solid rgba(0, 106, 229, 0.30);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 40rem) {
  .cta-inner { padding: 3rem 2.75rem; }
}
.cta-visual { display: none; }
.cta-copy { max-width: 40rem; margin-inline: auto; }
.cta-section h2 { color: var(--foreground); margin-bottom: 0.75rem; }
.cta-section p { color: var(--muted-foreground); margin: 0 0 1.75rem; }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; align-items: center;
}
.cta-section .btn-secondary {
  background: transparent; color: var(--foreground);
  border: 1px solid var(--border);
}
.cta-section .btn-secondary:hover { background: var(--accent); }
.cta-section .cta-microcopy {
  color: var(--muted-foreground); flex-basis: 100%; margin-top: 0.35rem; text-align: center;
}

/* ---------- Footer (licht, Manus-ontwerp) ---------- */
.site-footer {
  background: rgba(255, 255, 255, 0.4);
  color: var(--foreground);
  padding-block: 3rem 1.5rem; margin-top: 3.5rem;
  border-top: 1px solid rgba(221, 225, 232, 0.6);
}
.cta-section + .site-footer { border-top: 1px solid rgba(221, 225, 232, 0.6); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 56rem) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 36rem) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 1.125rem; color: var(--foreground); text-decoration: none;
  margin: 0 0 0.75rem;
}
.footer-brand .brand-accent { color: var(--primary); }
.footer-about { color: var(--muted-foreground); font-size: 0.9rem; margin: 0; line-height: 1.65; }
.footer-col .footer-about + address,
.footer-about + address { margin-top: 1rem; }
.footer-heading {
  font-size: 0.875rem; font-weight: 600; text-transform: none; letter-spacing: 0;
  color: var(--foreground); margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--muted-foreground); text-decoration: none; font-size: 0.875rem; }
.footer-col a:hover { color: var(--primary); }
.footer-col address {
  font-style: normal; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7;
}
.footer-col address a { color: var(--muted-foreground); }
.footer-col address a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 2.5rem; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--muted-foreground);
}
.footer-legal, .footer-links-small { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.footer-links-small { margin-top: 1rem; }
.footer-links-small a, .footer-legal a { color: var(--muted-foreground); text-decoration: none; font-size: 0.82rem; }
.footer-links-small a:hover, .footer-legal a:hover { color: var(--primary); }

/* ---------- Cookiebanner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--card); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(20, 30, 60, 0.12); padding-block: 1rem;
}
.cookie-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.cookie-inner p { margin: 0; font-size: 0.88rem; max-width: 44rem; }
.cookie-actions { display: flex; gap: 0.6rem; }

/* ---------- Formulieren ---------- */
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.9rem; font-weight: 500; }
.field input, .field textarea {
  border: 1px solid var(--input); border-radius: var(--radius-sm);
  background: var(--card); padding: 0.6rem 0.8rem; font-size: 0.95rem;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--ring); box-shadow: 0 0 0 3px rgba(0, 106, 229, 0.15);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--destructive); }
.field textarea { resize: vertical; min-height: 5rem; }
.field-grid-2 { display: grid; gap: 0 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 40rem) { .field-grid-2 { grid-template-columns: 1fr; } }
.field-legend { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.75rem; padding: 0; }
.field-error { color: var(--destructive); font-size: 0.8rem; margin: 0.35rem 0 0; }
.field-hint { color: var(--muted-foreground); font-size: 0.8rem; margin: 0.25rem 0 0; }
fieldset { border: none; padding: 0; margin: 0 0 1.5rem; }

.consent-row { display: flex; gap: 0.7rem; align-items: flex-start; margin-top: 0.5rem; }
.consent-row input[type="checkbox"] { margin-top: 0.2rem; width: 1rem; height: 1rem; accent-color: var(--primary); flex: none; }
.consent-label { font-size: 0.8rem; color: var(--muted-foreground); font-weight: 400; }

.form-error-summary {
  border: 1px solid rgba(211, 55, 44, 0.5); background: rgba(211, 55, 44, 0.07);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem;
}
.form-error-title { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.4rem; color: var(--destructive); }
.form-error-summary ul { margin: 0; padding-left: 1.2rem; }
.form-error-summary li { margin-bottom: 0.25rem; font-size: 0.88rem; }
.form-error-summary a { color: var(--destructive); }

.form-success {
  border: 1px solid rgba(0, 106, 229, 0.4); background: var(--accent);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.form-success h3 { margin-top: 0.75rem; }

/* ---------- Contactpagina ---------- */
.contact-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1.5fr; align-items: start; }
@media (max-width: 56rem) { .contact-layout { grid-template-columns: 1fr; } }
.contact-aside { display: grid; gap: 1rem; align-content: start; }
.contact-form-card { position: relative; }
.contact-form-card .h3 { margin-bottom: 1.25rem; }

/* ---------- Locatiecheck-funnel ---------- */
.funnel { max-width: 42rem; margin-inline: auto; }
.funnel-header { margin-bottom: 2rem; }
.funnel-title { font-size: clamp(1.5rem, 3vw, 1.9rem); margin: 0; }
.funnel-progress { margin-bottom: 2.5rem; }
.progress-bars { list-style: none; display: flex; gap: 0.4rem; padding: 0; margin: 0; }
.progress-bars li { flex: 1; }
.progress-bar { height: 0.4rem; border-radius: 999px; background: var(--border); transition: background-color 200ms var(--ease-out); }
.progress-bar-active { background: var(--primary); }
.progress-caption { font-size: 0.8rem; color: var(--muted-foreground); margin: 0.6rem 0 0; }

.option-stack { display: grid; gap: 0.75rem; }
.option-card {
  display: flex; gap: 1rem; align-items: flex-start; cursor: pointer;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--card); padding: 1.15rem 1.25rem;
  transition: border-color 160ms var(--ease-out), background-color 160ms var(--ease-out);
}
.option-card:hover { border-color: rgba(0, 106, 229, 0.5); }
.option-card-selected { border-color: var(--primary); background: var(--accent); }
.option-card input[type="radio"] { margin-top: 0.25rem; accent-color: var(--primary); width: 1rem; height: 1rem; flex: none; }
.option-label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.15rem; }
.option-description { display: block; font-size: 0.82rem; color: var(--muted-foreground); }

.option-grid { display: grid; gap: 0.5rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 36rem) { .option-grid { grid-template-columns: 1fr; } }
.option-pill {
  display: flex; gap: 0.7rem; align-items: center; cursor: pointer;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); padding: 0.7rem 1rem; font-size: 0.9rem;
  transition: border-color 160ms var(--ease-out), background-color 160ms var(--ease-out);
}
.option-pill:hover { border-color: rgba(0, 106, 229, 0.5); }
.option-pill-selected { border-color: var(--primary); background: var(--accent); }
.option-pill input[type="radio"] { accent-color: var(--primary); width: 1rem; height: 1rem; flex: none; }

.info-strip {
  display: flex; gap: 0.75rem; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--card); padding: 0.9rem 1.1rem;
  font-size: 0.9rem; color: var(--muted-foreground); margin-bottom: 1.5rem;
}
.info-strip-icon {
  flex: none; width: 0.85rem; height: 0.85rem; border-radius: 50%;
  background: var(--primary); position: relative;
}
.funnel-fields fieldset { margin-bottom: 2rem; }
.funnel-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; }
.funnel-footnote { font-size: 0.8rem; color: var(--muted-foreground); text-align: center; margin-top: 2rem; }

/* ---------- Resultaat & bedankt ---------- */
.funnel-result { max-width: 48rem; margin-inline: auto; }
.funnel-done { max-width: 42rem; margin-inline: auto; }
.result-intro { margin-bottom: 2.25rem; }
.result-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  font-size: 1.6rem; font-weight: 700; margin-bottom: 1.25rem;
}
.result-card { margin-bottom: 1.75rem; }
.result-summary {
  display: grid; gap: 0.9rem 2rem; grid-template-columns: repeat(2, 1fr);
  margin: 2rem 0 0; font-size: 0.9rem;
}
@media (max-width: 36rem) { .result-summary { grid-template-columns: 1fr; } }
.result-summary dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); margin-bottom: 0.1rem; }
.result-summary dd { margin: 0; font-weight: 500; }
.result-next {
  border: 1px solid var(--border); background: var(--accent);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-bottom: 1.75rem;
  font-size: 0.9rem; color: var(--muted-foreground);
}
.result-next h2 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--foreground); }
.result-next ol { margin: 0; padding-left: 1.3rem; }
.result-next li { margin-bottom: 0.3rem; }
.result-actions { margin-bottom: 0.5rem; }

/* ---------- Diversen ---------- */
.mobile-menu-button { appearance: none; }

/* ---------- CTA-microcopy (ronde 6) ---------- */
.cta-microcopy { margin: 0.6rem 0 0; font-size: 0.82rem; }

/* ---------- Funnel-procesuitleg (ronde 6) ---------- */
.funnel-explainer {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-card);
}
.funnel-explainer h2 { margin: 0 0 0.5rem; font-size: 1rem; }
.explainer-steps { margin: 0; padding-left: 1.2rem; color: var(--muted-foreground); font-size: 0.88rem; }
.explainer-steps li { margin-bottom: 0.35rem; }
.explainer-steps li:last-child { margin-bottom: 0; }

/* ---------- FAQ accessibility: focus & answer spacing ---------- */
.faq-item summary:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; border-radius: var(--radius-sm); }
.faq-answer { padding: 0.25rem 0 0.5rem; }
.faq-answer p { margin: 0; }
