/* ===== PENTA TECH — Global Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Dark mode tokens (default) ── */
:root {
  --bg:         #0f0b18;
  --bg-2:       #181228;
  --bg-3:       #201930;
  --fg:         #f0ecf6;
  --fg-2:       #b8a8cc;
  --fg-3:       #7a6a90;
  --accent:     #ab4ec7;
  --accent-hi:  #c060e0;
  --accent-lo:  rgba(171,78,199,0.12);
  --accent-mid: rgba(171,78,199,0.25);
  --border:     rgba(171,78,199,0.15);
  --border-2:   rgba(255,255,255,0.06);
  --shadow:     0 2px 24px rgba(0,0,0,0.4);

  --font: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --max-w: 1120px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: 0.2s var(--ease);
}

/* ── Light mode tokens ── */
[data-theme="light"] {
  --bg:         #faf8fc;
  --bg-2:       #f2eef8;
  --bg-3:       #e9e2f4;
  --fg:         #1a1028;
  --fg-2:       #4a3860;
  --fg-3:       #8a7aa0;
  --accent:     #8b2eaa;
  --accent-hi:  #a035c8;
  --accent-lo:  rgba(139,46,170,0.08);
  --accent-mid: rgba(139,46,170,0.2);
  --border:     rgba(139,46,170,0.15);
  --border-2:   rgba(0,0,0,0.06);
  --shadow:     0 2px 24px rgba(139,46,170,0.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--fg-2); line-height: 1.75; }
p + p { margin-top: 1em; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section   { padding: 96px 0; }
.label {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--t); border: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hi); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(171,78,199,0.35); }
.btn-ghost {
  background: transparent; color: var(--fg-2);
  border: 1.5px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Nav ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-2);
  transition: background var(--t), border-color var(--t);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem;
  color: var(--fg); letter-spacing: -0.01em; flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px; background: var(--accent);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: #fff;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--fg-3);
  transition: color var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Lang toggle */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 100px; padding: 3px;
}
.lang-toggle button {
  padding: 4px 10px; border-radius: 100px; border: none;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  background: transparent; color: var(--fg-3);
  transition: var(--t); font-family: var(--font);
}
.lang-toggle button.active {
  background: var(--accent); color: #fff;
}
.lang-toggle button:hover:not(.active) { color: var(--fg); }

/* Theme toggle */
.theme-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-2);
  background: var(--bg-2); color: var(--fg-2); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); font-size: 0.9rem;
}
.theme-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile nav */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--fg); border-radius: 2px; transition: var(--t);
}
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-2); border-bottom: 1px solid var(--border-2);
  padding: 20px 28px; z-index: 99; flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 13px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 1rem; font-weight: 500; color: var(--fg-3);
  transition: color var(--t);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--fg); }
.nav-mobile-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-2);
}

/* ── Footer ── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem; color: var(--fg);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.875rem; max-width: 28ch; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block; font-size: 0.875rem; color: var(--fg-3);
  margin-bottom: 9px; transition: color var(--t);
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border-2);
  font-size: 0.8rem; color: var(--fg-3);
}

/* ── Hero ── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 70% at 65% 35%, rgba(171,78,199,0.18) 0%, transparent 65%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-2) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-lo); border: 1px solid var(--accent-mid);
  border-radius: 100px; padding: 5px 14px;
  font-size: 0.75rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px;
}
.hero-tag::before {
  content: ''; width: 5px; height: 5px; background: var(--accent);
  border-radius: 50%; animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero > .container > .hero-content > p { font-size: 1.05rem; margin-bottom: 36px; max-width: 50ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; color: var(--fg-3); letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Blobs */
.hero-blob {
  position: absolute; z-index: 0; pointer-events: none;
}
.hero-blob svg { width: 100%; height: 100%; }
.hero-blob-1 {
  width: 520px; height: 480px; top: -100px; right: -80px;
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-1 path { fill: rgba(171,78,199,0.22); }
.hero-blob-2 {
  width: 340px; height: 320px; top: 80px; right: 240px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
.hero-blob-2 path { fill: rgba(123,47,160,0.14); }
.hero-blob-3 {
  width: 240px; height: 220px; bottom: 100px; right: 60px;
  animation: blobFloat 13s ease-in-out infinite;
}
.hero-blob-3 path { fill: rgba(171,78,199,0.09); }
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-16px) rotate(2deg); }
  66%  { transform: translateY(10px) rotate(-1.5deg); }
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ── Diensten ── */
.diensten-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--border-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
.dienst-card {
  background: var(--bg-2); padding: 32px 24px;
  transition: background var(--t);
  position: relative; overflow: hidden;
}
.dienst-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform var(--t); transform-origin: left;
}
.dienst-card:hover { background: var(--bg-3); }
.dienst-card:hover::after { transform: scaleX(1); }
.dienst-icon {
  width: 40px; height: 40px; margin-bottom: 18px;
  background: var(--accent-lo); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.dienst-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
.dienst-card h3 { font-size: 1rem; margin-bottom: 8px; }
.dienst-card p  { font-size: 0.85rem; color: var(--fg-3); }
.dienst-nr {
  position: absolute; bottom: 16px; right: 20px;
  font-size: 2.5rem; font-weight: 800; color: var(--border-2);
  line-height: 1; user-select: none; font-variant-numeric: tabular-nums;
}

/* ── Project cards ── */
.project-cards,
.projecten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.project-card {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; color: inherit;
}
.project-card:hover {
  border-color: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.project-card-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg-3); position: relative;
}
.project-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-card-img img { transform: scale(1.03); }
.img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  background: repeating-linear-gradient(
    45deg, var(--bg-3) 0, var(--bg-3) 8px, var(--bg) 8px, var(--bg) 16px
  );
  color: var(--fg-3); font-size: 0.75rem; font-family: monospace; text-align: center;
}
.project-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  background: var(--accent-lo); color: var(--accent);
  border: 1px solid var(--accent-mid);
  margin-bottom: 12px; width: fit-content;
}
.project-card-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.project-card-body p  { font-size: 0.875rem; flex: 1; }
.project-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-2);
  font-size: 0.8rem; color: var(--fg-3);
}
.project-card-footer .arrow {
  color: var(--accent); transition: transform var(--t);
}
.project-card:hover .project-card-footer .arrow { transform: translateX(4px); }

/* ── Filter bar ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  border: 1px solid var(--border-2); background: transparent; color: var(--fg-3);
  cursor: pointer; transition: var(--t); font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-lo);
}

/* ── Page hero ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  border-bottom: 1px solid var(--border-2);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(171,78,199,0.12) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 10px; }
.page-hero p  { font-size: 1rem; margin-top: 14px; max-width: 52ch; color: var(--fg-2); }

/* ── CTA strip ── */
.cta-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 80px 0; text-align: center;
}
.cta-strip h2 { margin-bottom: 12px; }
.cta-strip > .container > p { margin: 0 auto 32px; max-width: 48ch; }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Over ons ── */
.stats-row { display: flex; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.stat .val  { font-size: 2.2rem; font-weight: 800; color: var(--fg); line-height: 1; }
.stat .val span { color: var(--accent); }
.stat .lbl  { font-size: 0.82rem; color: var(--fg-3); margin-top: 4px; }

.expertise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
.expertise-card { background: var(--bg-2); padding: 28px; }
.expertise-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.expertise-card p  { font-size: 0.85rem; color: var(--fg-3); }
.expertise-card.highlight {
  background: var(--accent-lo);
}
.expertise-card.highlight h3 { color: var(--accent); }

.timeline { position: relative; margin-top: 40px; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 0;
  width: 1px; background: var(--border-2);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 5px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-lo);
}
.timeline-item .year {
  font-size: 0.72rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
}
.timeline-item h3 { font-size: 1rem; margin-bottom: 6px; }
.timeline-item p  { font-size: 0.875rem; color: var(--fg-3); }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
.value-card { background: var(--bg-2); padding: 32px 28px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.875rem; color: var(--fg-3); }

.portrait-placeholder {
  width: 100%; max-width: 320px; aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(
    45deg, var(--bg-3) 0, var(--bg-3) 8px, var(--bg-2) 8px, var(--bg-2) 16px
  );
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--fg-3); font-size: 0.75rem; font-family: monospace; text-align: center;
}

/* ── Contact ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}
.contact-info { position: sticky; top: calc(var(--nav-h) + 32px); }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--accent-lo); border: 1px solid var(--accent-mid);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
.contact-detail-text strong {
  display: block; font-size: 0.75rem; color: var(--fg-3); font-weight: 500; margin-bottom: 2px;
}
.contact-detail-text a, .contact-detail-text span { color: var(--fg); font-size: 0.9rem; }
.contact-detail-text a:hover { color: var(--accent); }
.map-placeholder {
  margin-top: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border-2);
  aspect-ratio: 16/9; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--fg-3); font-size: 0.75rem; font-family: monospace; text-align: center;
}
.contact-form-wrap {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden;
}
.contact-form-wrap iframe { width: 100%; min-height: 560px; border: none; display: block; }
.form-placeholder {
  padding: 48px 36px; text-align: center; color: var(--fg-3);
}
.form-placeholder p { font-size: 0.875rem; max-width: 30ch; margin: 0 auto 12px; }
.form-placeholder code {
  background: var(--bg-3); padding: 2px 6px; border-radius: 4px;
  font-size: 0.8rem; color: var(--fg-2);
}

/* ── Project detail ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--fg-3); margin-bottom: 20px;
}
.breadcrumb a { color: var(--fg-3); transition: color var(--t); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }
.detail-hero { padding: calc(var(--nav-h) + 56px) 0 0; position: relative; overflow: hidden; }
.detail-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(171,78,199,0.15) 0%, transparent 65%);
}
.detail-hero .container { position: relative; z-index: 1; }
.detail-header { max-width: 720px; padding-bottom: 48px; }
.detail-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 12px 0 16px; }
.detail-subtitle { font-size: 1.05rem; color: var(--fg-2); margin-bottom: 24px; }
.detail-meta {
  display: flex; gap: 28px; flex-wrap: wrap; font-size: 0.82rem; color: var(--fg-3);
  border-top: 1px solid var(--border-2); padding-top: 20px;
}
.detail-meta span strong { display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 2px; color: var(--fg-3); font-weight: 600; }
.detail-meta span em { font-style: normal; color: var(--fg); font-weight: 500; }
.detail-img {
  width: 100%; max-height: 440px; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--border-2); display: block;
}
.detail-body {
  display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 64px 0;
}
.detail-section { margin-bottom: 48px; }
.detail-section h2 {
  font-size: 1.2rem; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-2);
}
.aanpak-list { display: flex; flex-direction: column; gap: 12px; }
.aanpak-item { display: flex; gap: 14px; align-items: flex-start; }
.aanpak-nr {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent-lo); border: 1px solid var(--accent-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: var(--accent);
}
.aanpak-item p { font-size: 0.9rem; margin: 3px 0 0; color: var(--fg-2); }
.resultaten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.resultaat-card {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
}
.resultaat-card .waarde {
  font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.resultaat-card .rlabel {
  font-size: 0.78rem; color: var(--fg-3); margin-top: 6px; display: block; line-height: 1.4;
}
.quote-block {
  background: var(--accent-lo); border: 1px solid var(--accent-mid);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-lg); padding: 24px 28px;
}
.quote-block p { font-size: 1rem; color: var(--fg); font-style: italic; }
.quote-block cite {
  display: block; margin-top: 12px; font-size: 0.8rem;
  color: var(--fg-3); font-style: normal;
}
.sidebar-card {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.tech-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tech-tag {
  padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 500;
  background: var(--accent-lo); border: 1px solid var(--accent-mid); color: var(--accent);
}
.sidebar-nav { display: flex; flex-direction: column; gap: 8px; }
.sidebar-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: var(--radius);
  background: var(--bg-3); border: 1px solid var(--border-2);
  font-size: 0.85rem; color: var(--fg); transition: var(--t);
}
.sidebar-nav a:hover { border-color: var(--accent-mid); color: var(--accent); }
.sidebar-nav a span { color: var(--accent); }
.sidebar-cta {
  background: var(--accent-lo); border: 1px solid var(--accent-mid);
}

/* Result strip inline */
.result-strip {
  margin-top: 14px; padding: 14px 16px;
  background: var(--accent-lo); border-radius: var(--radius);
  border-left: 2px solid var(--accent);
  font-size: 0.84rem; color: var(--fg-2);
}
.result-strip strong {
  color: var(--accent); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .project-cards, .projecten-grid,
  .contact-grid, .expertise-grid,
  .values-grid, .detail-body { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-info  { position: static; }
  .stats-row     { gap: 28px; }
  .hero          { min-height: auto; padding-bottom: 72px; }
  .hero-scroll   { display: none; }
  .section       { padding: 64px 0; }
  .detail-sidebar { order: -1; }
}
@media (max-width: 480px) {
  .diensten-grid    { grid-template-columns: 1fr; }
  .resultaten-grid  { grid-template-columns: 1fr 1fr; }
  .expertise-grid   { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
}
