/* ==========================================================================
   CAW consulting — styles.css
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --bg-dark: #0A0E27;
  --bg-dark-2: #0F1A3D;
  --ink: #0B1437;
  --ink-2: #1f2a4d;
  --muted: #5b6584;
  --muted-2: #8892b5;
  --line: #e6eaf2;
  --line-dark: rgba(255,255,255,0.12);
  --primary: #3B82F6;
  --primary-2: #06B6D4;
  --accent: #06B6D4;
  --ok: #10b981;
  --warn: #f59e0b;
  --err: #ef4444;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 6px rgba(15,26,61,0.06);
  --shadow-md: 0 12px 30px -10px rgba(15,26,61,0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15,26,61,0.25);
  --gradient: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
  --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #0F1A3D 60%, #14245C 100%);
  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* Grotere schermen: bredere container zodat site niet in het midden 'verdwijnt' */
@media (min-width: 1600px) {
  :root { --container: 1360px; }
}
@media (min-width: 2200px) {
  :root { --container: 1520px; }
  html { font-size: 17px; }
}
@media (min-width: 3000px) {
  :root { --container: 1720px; }
  html { font-size: 18px; }
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* voorkomt horizontale scroll op smalle schermen */
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-2); }
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(59,130,246,0.08);
  border-radius: 999px;
}
.eyebrow-light { color: #67E8F9; background: rgba(103,232,249,0.12); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-sm { padding: 9px 16px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 8px 20px -6px rgba(59,130,246,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(59,130,246,0.6); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--ink); }
.btn-outline {
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff; color: var(--ink);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.3); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 16px -8px rgba(15,26,61,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; color: var(--ink);
  flex-shrink: 0; /* logo mag nooit weggedrukt worden */
}
.brand img { height: 42px; width: auto; display: block; }

.primary-nav ul {
  display: flex; gap: 6px; list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
  padding: 8px 14px; border-radius: 999px; color: var(--ink); font-weight: 500; font-size: 0.95rem;
  transition: background .2s;white-space: nowrap;
}
.primary-nav a:hover { background: var(--bg-alt); color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-tel {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px;
  color: var(--ink); font-weight: 600; font-size: 0.88rem;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.header-tel svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }
.header-tel:hover { background: var(--bg-alt); color: var(--ink); }
.header-tel:hover svg { color: var(--primary-2); }

.lang-switcher {
  display: inline-flex; background: var(--bg-alt); border-radius: 999px; padding: 3px;
}
.lang-switcher button {
  padding: 6px 12px; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); border-radius: 999px; transition: all .2s;
}
.lang-switcher button[aria-pressed="true"] {
  background: #fff; color: var(--ink); box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px; border-top: 1px solid var(--line); background: #fff;
}
.mobile-menu a {
  padding: 12px 14px; border-radius: 12px; color: var(--ink); font-weight: 500;
}
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-menu .btn { justify-content: center; margin-top: 8px; }
.mobile-menu[data-open="true"] { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--gradient-dark);
  color: #fff;
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 14vw, 160px);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; color: #fff; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { top: -120px; left: -120px; width: 460px; height: 460px; background: #3B82F6; }
.blob-2 { bottom: -150px; right: -100px; width: 520px; height: 520px; background: #06B6D4; animation-delay: -4s; }
.blob-3 { top: 30%; right: 30%; width: 300px; height: 300px; background: #8B5CF6; opacity: 0.35; animation-delay: -10s; }
.grid-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; pointer-events: none; }
@media (max-width: 960px) {
  .grid-pattern { opacity: 0.3; }
}
@media (max-width: 640px) {
  .grid-pattern { display: none; } /* verborgen op mobile — voorkomt lijnen door gradient text */
}

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.06); }
  66% { transform: translate(-30px, 40px) scale(0.96); }
}

.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-text .eyebrow {
  background: rgba(255,255,255,0.1); color: #67E8F9;
}
.hero h1 { color: #fff; }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-ctas .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.hero-ctas .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 0.9rem; color: #fff;
}
.hero-trust li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 500;
}
.hero .lead {
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Hero visual */
.hero-visual {
  position: relative; aspect-ratio: 1; max-width: 460px; margin-left: auto;
}
.orb { width: 100%; height: 100%; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.floating-card {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.96);
  color: var(--ink); padding: 10px 16px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: floatCard 6s ease-in-out infinite;
}
.card-1 { top: 8%; left: -6%; animation-delay: 0s; }
.card-2 { top: 46%; right: -10%; animation-delay: -2s; }
.card-3 { bottom: 8%; left: 8%; animation-delay: -4s; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #10b981; box-shadow: 0 0 8px #10b981; }
.dot-blue { background: #3B82F6; box-shadow: 0 0 8px #3B82F6; }
.dot-purple { background: #8B5CF6; box-shadow: 0 0 8px #8B5CF6; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 10vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { display: inline-block; }
.section-head p { font-size: 1.08rem; color: var(--muted); }
.ribbon {
  display: inline-block; margin-top: 12px; padding: 8px 16px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #78350f; font-weight: 600; font-size: 0.9rem;
  border-radius: 999px;
}

/* ---------- Service grid ---------- */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  display: block;
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: var(--ink);
}
.service-card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gradient); color: #fff;
  margin-bottom: 18px;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 6px; }
.service-card p { color: var(--muted); margin-bottom: 16px; font-size: 0.96rem; }
.card-link { color: var(--primary); font-weight: 600; font-size: 0.92rem; }
.service-card.featured {
  background: linear-gradient(135deg, #0A0E27 0%, #14245C 100%);
  border-color: transparent;
  color: #fff;
}
.service-card.featured h3, .service-card.featured p { color: rgba(255,255,255,0.95); }
.service-card.featured p { color: rgba(255,255,255,0.72); }
.service-card.featured .card-link { color: #67E8F9; }
.service-card.featured .icon { background: rgba(255,255,255,0.15); }
.service-card.featured:hover { color: #fff; }
.service-card.featured::before {
  content: 'Hoofddienst'; position: absolute; top: 14px; right: 14px;
  background: var(--gradient); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 700px) {
  .service-card.featured { grid-column: span 2; }
}

.ai-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-ghost-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- AI section ---------- */
.section-ai {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-ai::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.3), transparent 70%);
  pointer-events: none;
}
.section-ai h2 { color: #fff; }
.lead-light { color: rgba(255,255,255,0.85); font-size: 1.08rem; }
.lead-light strong { color: #67E8F9; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li { display: flex; gap: 12px; margin-bottom: 10px; align-items: flex-start; }
.check-list .check {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gradient); color: #fff; font-size: 0.8rem;
  display: inline-grid; place-items: center; margin-top: 2px;
}
.check-list-light li { color: rgba(255,255,255,0.95); }
.check-list-light .check { background: rgba(255,255,255,0.18); }

.proof-note {
  margin: 20px 0 28px;
  padding: 14px 18px;
  background: rgba(103,232,249,0.08);
  border-left: 3px solid #67E8F9;
  border-radius: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.55;
}
.proof-note strong { color: #67E8F9; }
.check-list.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px 18px; }

/* Terminal */
.terminal {
  background: #0F172A; border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.terminal-head {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.terminal-head span {
  width: 11px; height: 11px; border-radius: 50%; background: #ef4444;
}
.terminal-head span:nth-child(2) { background: #f59e0b; }
.terminal-head span:nth-child(3) { background: #10b981; }
.terminal-head em { font-style: normal; margin-left: auto; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.terminal pre {
  margin: 0; padding: 22px 20px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.88rem; line-height: 1.7;
  color: #E2E8F0; overflow-x: auto;
}
.tok-com { color: #64748B; }
.tok-key { color: #67E8F9; }
.tok-ok { color: #10b981; }

.metric-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 24px;
}
.metric {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 16px 14px; text-align: center;
}
.metric strong {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; color: #fff;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px;
}
.metric span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ---------- Pricing ---------- */
.includes {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 40px;
}
.includes h3 { margin-bottom: 16px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card header { margin-bottom: 14px; }
.price-card .price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 8px; color: var(--muted);
}
.price-card .price strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; color: var(--ink); font-weight: 700;
}
.price-card p { color: var(--muted); margin-bottom: 18px; }
.price-card .setup { font-size: 0.92rem; color: var(--muted); margin: 8px 0 22px; }
.price-card .setup s { color: var(--muted-2); }
.price-card .setup strong { color: var(--ok); }
.price-card .btn { margin-top: auto; align-self: stretch; }
.price-card-featured {
  background: linear-gradient(180deg, #0A0E27 0%, #14245C 100%);
  border-color: transparent;
  color: #fff;
}
.price-card-featured h3 { color: #fff; }
.price-card-featured p, .price-card-featured .price, .price-card-featured .setup { color: rgba(255,255,255,0.8); }
.price-card-featured .price strong { color: #fff; }
.price-card-featured .check-list li { color: rgba(255,255,255,0.95); }
.price-card-featured .check-list .check { background: rgba(255,255,255,0.18); }
.price-card .badge {
  position: absolute; top: -12px; right: 22px;
  background: var(--gradient); color: #fff;
  padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  box-shadow: 0 6px 14px -4px rgba(59,130,246,0.5);
}

.muted-note {
  text-align: center; color: var(--muted); font-size: 0.95rem; margin-top: 32px;
}

/* ---------- Process ---------- */
.process-steps {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; counter-reset: step;
}
.process-steps li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .2s;
}
.process-steps li:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent;
}
.step-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px; letter-spacing: 0.05em;
}
.process-steps p { color: var(--muted); margin: 0; }

/* ---------- Contact ---------- */
.section-contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-text h2 { margin-bottom: 12px; }
.contact-text .lead, .contact-text p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.contact-list .ico { width: 32px; height: 32px; display: inline-grid; place-items: center; background: #fff; border-radius: 10px; box-shadow: var(--shadow-sm); }
.contact-list a { color: var(--ink); font-weight: 500; }
.contact-list a:hover { color: var(--primary); }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-weight: 500; font-size: 0.92rem; color: var(--ink-2);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  font: inherit; color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}
.field textarea { resize: vertical; min-height: 110px; }

.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--muted);
  margin: 4px 0 18px;
}
.consent input { margin-top: 4px; accent-color: var(--primary); }
.consent a { color: var(--primary); text-decoration: underline; }

.form-status { margin: 14px 0 0; font-size: 0.94rem; min-height: 1.4em; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; align-items: start;
}
.footer-brand img { margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-cols a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px; margin-top: 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.86rem; color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  z-index: 100;
  transform: translateY(20px); opacity: 0;
  animation: slideUp .4s var(--ease) forwards .2s;
  box-sizing: border-box;
}
.cookie-banner p {
  margin: 0; flex: 1 1 200px;
  min-width: 0; /* laat tekst inkorten in flex-container */
  font-size: 0.92rem; color: var(--ink-2);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* ---------- Responsive ---------- */
/* Header: wissel vroeger naar hamburger-menu om verdringing te voorkomen */
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-tel { display: none; } /* verborgen in header, wél beschikbaar in mobile menu */
}
@media (max-width: 1380px) and (min-width: 1101px) {
  .header-tel span { display: none; } /* op smallere desktop: alleen icoon */
  .header-tel { padding: 10px; }
}
/* Layout-breakpoints: hero, ai, contact en footer worden single-column */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .header-inner { gap: 8px; } /* meer plek voor content */
  .container { padding: 0 16px; } /* smaller padding op mobile */
  .header-actions { gap: 6px; }
  .header-actions .lang-switcher { order: 1; }
  .header-actions:not(.case-actions) .btn { display: none; }
  .case-home { display: none; }
  /* Compactere taalswitcher — voorkomt overflow op smalle schermen */
  .lang-switcher { padding: 2px; }
  .lang-switcher button { padding: 5px 8px; font-size: 0.75rem; }
  /* Kleinere logo op mobile */
  .brand img { height: 34px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .metric-row { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px; gap: 10px; }
  .cookie-banner p { font-size: 0.86rem; flex-basis: 100%; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-actions .btn { flex: 1; padding: 10px 12px; }
}
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .header-inner { gap: 6px; }
  .header-actions { gap: 4px; }
  .lang-switcher button { padding: 5px 6px; font-size: 0.7rem; }
  .brand img { height: 30px; }
  .menu-toggle { width: 38px; height: 38px; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 12px; }
  .cookie-banner p { font-size: 0.82rem; }
  .cookie-actions .btn { font-size: 0.82rem; padding: 9px 10px; }
}
@media (max-width: 420px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.85rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- reCAPTCHA badge verbergen (disclaimer staat onder submit-knop) ---------- */
.grecaptcha-badge { visibility: hidden !important; }

.recaptcha-notice {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.5;
}
.recaptcha-notice a { color: var(--muted); text-decoration: underline; }
.recaptcha-notice a:hover { color: var(--primary); }

/* ---------- Case study page ---------- */
.case-hero {
  background: var(--gradient-dark);
  color: #fff;
  padding: clamp(70px, 10vw, 120px) 0 clamp(50px, 7vw, 80px);
  position: relative; overflow: hidden;
}
.case-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 70%);
  pointer-events: none;
}
.case-hero-inner { max-width: 860px; position: relative; z-index: 1; }
.case-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin: 12px 0 20px; }
.case-hero .lead-light { font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 720px; }
.back-link {
  display: inline-block; color: #67E8F9; font-size: 0.9rem;
  margin-bottom: 12px; text-decoration: none; font-weight: 500;
}
.back-link:hover { color: #fff; }

.case-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin-top: 40px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case-meta > div { display: flex; flex-direction: column; gap: 2px; }
.case-meta span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.case-meta strong { color: #fff; font-size: 1.02rem; font-family: 'Space Grotesk', sans-serif; }

.case-article { padding: clamp(50px, 8vw, 90px) 0; background: #fff; }
.case-article-inner { max-width: 780px; }
.case-article h2 {
  margin-top: 48px; margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
}
.case-article h2:first-child { margin-top: 0; }
.case-article p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; }
.case-article .check-list li { color: var(--ink); }
.case-article .check-list .check { background: var(--gradient); color: #fff; }

.result-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin: 24px 0 30px;
}
.result-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--line);
}
.result-card strong {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem; font-weight: 700; margin-bottom: 4px;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.result-card span { font-size: 0.88rem; color: var(--muted); }

.tech-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; }
.tech-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-2); font-weight: 500;
}

.muted-note-inline { color: var(--muted); font-size: 0.94rem; font-style: italic; }

.cta-block {
  margin-top: 40px; padding: 30px 28px;
  background: linear-gradient(135deg, #0A0E27, #14245C);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
}
.cta-block h3 { color: #fff; margin-bottom: 8px; font-size: 1.35rem; }
.cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 18px; }

/* ---------- FAQ section ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 400;
  transition: transform .25s;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(0); }
.faq-item summary:hover { color: var(--primary); }
.faq-item .answer { padding: 0 22px 20px; color: var(--muted); line-height: 1.65; }
.faq-item .answer p { margin: 0; }

/* ---------- 404 page ---------- */
.error-page {
  min-height: 70vh;
  display: grid; place-items: center;
  padding: 60px 24px;
  background: var(--gradient-dark);
  color: #fff;
  text-align: center;
}
.error-page-inner { max-width: 520px; }
.error-page .code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(5rem, 15vw, 9rem); font-weight: 700; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 8px;
}
.error-page h1 { color: #fff; font-size: 1.75rem; margin-bottom: 12px; }
.error-page p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.error-page .btn-white { background: #fff; color: var(--ink); }

/* ---------- Privacy & Terms pages ---------- */
.legal-page { padding: clamp(60px, 9vw, 100px) 0; max-width: 820px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 24px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 36px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--primary); }
