/* ============================================================
   BoldNewEra v5, Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --navy:             #122235;
  --navy-mid:         #1a2333;
  --navy-light:       #2a3444;
  --navy-card:        rgba(18, 30, 55, 0.7);
  --navy-glass:       rgba(14, 24, 45, 0.6);
  --blue-accent:      #A085FF;
  --blue-bright:      #A085FF;
  --blue-glow:        #b599ff;
  --blue-dim:         rgba(160, 133, 255, 0.12);
  --orange:           #FF7303;
  --orange-bright:    #ff8c1a;
  --orange-deep:      #e66303;
  --orange-glow:      rgba(255, 115, 3, 0.28);
  --orange-dim:       rgba(255, 115, 3, 0.1);
  --cyan:             #00d4ff;
  --teal:             #00c9a7;
  --teal-dim:         rgba(0, 201, 167, 0.12);
  --green:            #10b981;
  --green-bright:     #34d399;
  --white:            #ffffff;
  --off-white:        #f2f2f2;
  --gray:             #8b99b4;
  --gray-light:       #c5cedf;
  --gray-dim:         rgba(139, 153, 180, 0.15);
  --ease-out:         cubic-bezier(0.2, 0.7, 0.2, 1);
  --transition:       all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow-card:      0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-orange:    0 0 32px rgba(255, 115, 3, 0.22);
  --shadow-blue:      0 0 32px rgba(160, 133, 255, 0.2);
  --radius:           16px;
  --radius-sm:        10px;
  --radius-lg:        24px;
  --radius-xl:        32px;
}

/* ─── Skip link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.1s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

/* ─── Screenreader-only ──────────────────────────────────── */
.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;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(160, 133, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 133, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: 0;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Arvo', serif; color: var(--white); }
h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); line-height: 1.25; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.625rem); line-height: 1.35; }
h4 { font-size: 1.25rem; }
p { color: var(--gray-light); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── Focus-visible (globaal) ────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(160, 133, 255, 0.35);
  background: rgba(160, 133, 255, 0.08);
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}
/* Verwijder standaard outline alleen als :focus-visible beschikbaar is */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; z-index: 1; }
.section-padding { padding: 5rem 0; }
.section-padding-lg { padding: 7rem 0; }
.divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(160, 133, 255, 0.12), transparent); }

.grid-2col      { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-2col-start { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-2col-alt  { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.grid-2col-wide { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }

/* ─── Noise overlay ──────────────────────────────────────── */
.noise-overlay { position: relative; overflow: hidden; }
.noise-overlay::after {
  content: '';
  position: absolute; inset: 0; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none; z-index: 0; border-radius: inherit;
}
.noise-overlay > * { position: relative; z-index: 1; }

/* ─── Section label ──────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--orange); margin-bottom: 1.25rem;
}

/* ─── Tags ───────────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 0.3rem 0.85rem; border-radius: 100px;
  font-family: 'Poppins', sans-serif; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.tag-ai     { background: rgba(160, 133, 255, 0.12); color: var(--blue-bright); border: 1px solid rgba(160, 133, 255, 0.22); }
.tag-auto   { background: rgba(255, 115, 3, 0.1);  color: var(--orange-bright); border: 1px solid rgba(255, 115, 3, 0.22); }
.tag-people { background: rgba(0, 201, 167, 0.1);  color: var(--teal); border: 1px solid rgba(0, 201, 167, 0.22); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: var(--transition);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: white; box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 48px rgba(255, 115, 3, 0.4), 0 12px 32px rgba(0,0,0,0.25); }
.btn-secondary {
  background: rgba(160, 133, 255, 0.1); color: var(--blue-bright);
  border: 1px solid rgba(160, 133, 255, 0.28); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(160, 133, 255, 0.18); border-color: rgba(160, 133, 255, 0.5); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--gray-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); color: var(--white); }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--navy-card); border: 1px solid rgba(160, 133, 255, 0.1);
  border-radius: var(--radius); padding: 2rem;
  backdrop-filter: blur(16px); transition: var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(160, 133, 255, 0.04) 0%, transparent 60%);
  border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
}
.card:hover { border-color: rgba(160, 133, 255, 0.22); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card-orange { border-color: rgba(255, 115, 3, 0.1); }
.card-orange::before { background: linear-gradient(135deg, rgba(255, 115, 3, 0.06) 0%, transparent 60%); }
.card-orange:hover { border-color: rgba(255, 115, 3, 0.28); box-shadow: var(--shadow-orange); }

/* ─── Icon boxes ─────────────────────────────────────────── */
.icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.25rem; flex-shrink: 0; }
.icon-box-blue   { background: rgba(160, 133, 255, 0.12); color: var(--blue-accent); }
.icon-box-orange { background: rgba(255, 115, 3, 0.12);   color: var(--orange); }
.icon-box-teal   { background: rgba(0, 201, 167, 0.12);   color: var(--teal); }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  --nav-bg-rgb: 10, 22, 40;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.25rem 0;
  transition: padding 0.3s var(--ease-out), border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(var(--nav-bg-rgb), 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 0.875rem 0;
  border-bottom-color: rgba(160, 133, 255, 0.1);
}
.nav.scrolled-text-white .nav-links a {
  color: var(--white);
}
.nav.scrolled-text-white .nav-ham span {
  background: var(--white);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 0.125rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { display: block; padding: 0.5rem 1rem; color: var(--gray-light); font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 500; border-radius: 8px; transition: var(--transition); }
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav-links a.nav-active { color: var(--white); font-weight: 600; }
.dropdown-trigger { cursor: pointer; }
.dropdown-trigger svg { vertical-align: middle; margin-left: 2px; transition: transform 0.2s ease; }
.dropdown-trigger:hover svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.625rem); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(14, 29, 53, 0.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(160, 133, 255, 0.14);
  border-radius: var(--radius-sm); padding: 0.5rem;
  min-width: 220px; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-links li:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 0.625rem 1rem; color: var(--gray-light); font-size: 0.85rem; border-radius: 6px; }
.dropdown-menu a:hover { color: var(--white); background: rgba(160, 133, 255, 0.1); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.75rem; touch-action: manipulation; pointer-events: auto; -webkit-user-select: none; user-select: none; position: relative; z-index: 201; }
.nav-ham span { display: block; width: 22px; height: 2px; background: var(--gray-light); border-radius: 2px; transition: var(--transition); }
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-drawer {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(10, 22, 40, 0.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem; padding: 2rem;
  opacity: 0; visibility: hidden; pointer-events: none; display: flex;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-drawer.open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-drawer a { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--white); transition: color 0.2s ease; }
.nav-drawer a:hover { color: var(--orange); }
.nav-drawer-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1.25rem; padding: 0.5rem; }
.logo-img { height: 32px; width: auto; display: block; transition: height 0.3s ease; }
.nav.scrolled .logo-img { height: 26px; }
.nav-logo-link { display: flex; align-items: center; }
.nav-logo-link:hover { opacity: 0.85; }

/* ─── Hero (homepage) ────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 5rem;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; padding: 4rem 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255, 115, 3, 0.1);
  border: 1px solid rgba(255, 115, 3, 0.25);
  border-radius: 100px; padding: 0.375rem 0.875rem;
  font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange-bright);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright); animation: pulse 2s infinite;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.05rem; color: var(--gray-light); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-visual { position: relative; }

/* Hero services preview (from v3) */
.hero-services-preview {
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; max-width: 400px; margin: 0 auto;
}
.hero-service-item {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(160, 133, 255, 0.08);
  border: 1px solid rgba(160, 133, 255, 0.15);
  border-radius: 12px; transition: var(--transition);
}
.hero-service-item:hover {
  background: rgba(160, 133, 255, 0.12);
  border-color: rgba(160, 133, 255, 0.28);
  transform: translateY(-2px);
}
.hero-service-icon { font-size: 2rem; flex-shrink: 0; color: var(--blue-accent); }
.hero-service-name { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--white); font-size: 1rem; }

/* ─── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid rgba(160, 133, 255, 0.1);
  border-bottom: 1px solid rgba(160, 133, 255, 0.1);
  padding: 1.75rem 0;
  background: rgba(14, 24, 45, 0.5); backdrop-filter: blur(8px);
}
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem 4rem; }
.trust-item { text-align: center; }
.trust-value { font-family: 'Arvo', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); display: block; }
.trust-label { font-family: 'Poppins', sans-serif; font-size: 0.75rem; color: var(--gray); letter-spacing: 0.08em; margin-top: 0.125rem; }
.trust-sep { width: 1px; height: 36px; background: rgba(160, 133, 255, 0.12); }

/* ─── Pillars ────────────────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card { text-align: center; padding: 2.5rem 2rem; }
.pillar-icon { width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.pillar-icon-ai      { background: linear-gradient(135deg, rgba(160, 133, 255, 0.2), rgba(160, 133, 255, 0.06)); border: 1px solid rgba(160, 133, 255, 0.2); color: var(--blue-accent); }
.pillar-icon-connect { background: linear-gradient(135deg, rgba(255, 115, 3, 0.2), rgba(255, 115, 3, 0.06)); border: 1px solid rgba(255, 115, 3, 0.2); color: var(--orange); }
.pillar-icon-people  { background: linear-gradient(135deg, rgba(0, 201, 167, 0.2), rgba(0, 201, 167, 0.06)); border: 1px solid rgba(0, 201, 167, 0.2); color: var(--teal); }
.pillar-card h3 { margin-bottom: 0.25rem; }
.pillar-sub { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 1rem; }
.pillar-card p { font-size: 1rem; color: var(--gray); line-height: 1.7; }

/* ─── Services ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { display: flex; flex-direction: column; }
.service-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.service-sub { font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 1rem; }
.service-card p { font-size: 1rem; color: var(--gray); flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.5rem; font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--blue-bright); transition: gap 0.2s ease; }
.service-link:hover { gap: 0.6rem; }

/* ─── Steps / Approach ───────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 2.75rem; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, #6F4FF0, rgba(160, 133, 255, 0.1));
}
.step-card { text-align: center; padding-top: 1rem; }
.step-num {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: linear-gradient(135deg, #6F4FF0, #8b7cff);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Arvo', serif; font-weight: 700; font-size: 1.1rem; color: white;
  margin: 0 auto 1.5rem; box-shadow: 0 0 28px rgba(160, 133, 255, 0.35); position: relative; z-index: 1;
}
.step-card h4 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.step-card p { font-size: 1rem; color: var(--gray); }

/* ─── CTA section ────────────────────────────────────────── */
.cta-section { padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255, 115, 3, 0.07) 0%, transparent 65%); pointer-events: none; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--gray-light); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  --footer-bg-rgb: 26, 35, 51;
  background: rgba(var(--footer-bg-rgb), 1);
  border-top: 1px solid rgba(160, 133, 255, 0.1);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer.footer-dark {
  --footer-link-color: var(--white);
  --footer-text-color: rgba(255, 255, 255, 0.85);
}
.footer.footer-dark .footer-col ul li a,
.footer.footer-dark .footer-contact-item span,
.footer.footer-dark .footer-brand p {
  color: var(--footer-text-color, var(--gray));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand p { color: var(--gray); font-size: 1rem; margin-top: 1rem; max-width: 280px; line-height: 1.75; }
.footer-logo { height: 34px; width: auto; display: block; margin-bottom: 1rem; }
.footer-col h5 { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a { color: var(--gray); font-size: 0.875rem; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-contact-item .ci { width: 32px; height: 32px; border-radius: 8px; background: rgba(160, 133, 255, 0.1); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; flex-shrink: 0; color: var(--blue-accent); }
.footer-contact-item span { color: var(--gray); font-size: 0.875rem; }
.footer-bottom { border-top: 1px solid rgba(160, 133, 255, 0.08); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray); font-size: 0.8rem; transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: var(--gray-light); }

/* ─── Page hero (subpages) ───────────────────────────────── */
.page-hero { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; padding-top: 5rem; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 100% at 60% 30%, rgba(160, 133, 255, 0.2) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255, 115, 3, 0.12) 0%, transparent 50%); }
.page-hero-mesh { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(160, 133, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(160, 133, 255, 0.06) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.5; }
.page-hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero-sub { font-size: 1.1rem; color: var(--gray-light); max-width: 600px; line-height: 1.8; margin-bottom: 2rem; }
.hero-lines { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-line { position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(160, 133, 255, 0.25), transparent); animation: lineSweep 4s ease-in-out infinite; }
.hero-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.hero-line:nth-child(2) { top: 45%; animation-delay: 1.3s; background: linear-gradient(to right, transparent, rgba(255, 115, 3, 0.2), transparent); }
.hero-line:nth-child(3) { top: 70%; animation-delay: 2.6s; }

/* ─── Diensten page components ───────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.benefit-card { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; }
.benefit-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--blue-accent); }
.benefit-card h4 { margin-bottom: 0.35rem; font-size: 1.25rem; }
.benefit-card p { font-size: 1rem; color: var(--gray); line-height: 1.65; }

.for-whom-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.for-whom-list li { display: flex; align-items: center; gap: 1rem; background: var(--navy-card); border: 1px solid rgba(160, 133, 255, 0.1); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: 0.9rem; color: var(--gray-light); transition: border-color 0.3s ease; }
.for-whom-list li:hover { border-color: rgba(160, 133, 255, 0.22); }
.for-whom-list li span:first-child { font-size: 1.25rem; flex-shrink: 0; color: var(--blue-accent); }

.workshops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.workshop-card { padding: 2rem; }
.workshop-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.workshop-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600; color: var(--gray); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; padding: 0.25rem 0.625rem; }
.workshop-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.workshop-card > p { font-size: 1rem; color: var(--gray); margin-bottom: 1rem; }
.workshop-topics { list-style: none; }
.workshop-topics li { font-size: 1rem; color: var(--gray); padding: 0.3rem 0; border-bottom: 1px solid rgba(160, 133, 255, 0.06); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.6; }
.workshop-topics li:last-child { border-bottom: none; }
.workshop-topics li::before { content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 0.3rem; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/10px; border-radius: 50%; }

.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.solution-card { padding: 2rem; }
.solution-card h3 { margin: 0.75rem 0; font-size: 1.25rem; }
.solution-card > p { font-size: 1rem; color: var(--gray); margin-bottom: 1.25rem; }

.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 1.75rem; top: 2rem; bottom: 2rem; width: 1px; background: linear-gradient(to bottom, #6F4FF0, rgba(160, 133, 255, 0.1)); }
.timeline-item { display: flex; gap: 1.75rem; margin-bottom: 2.5rem; align-items: flex-start; }
.timeline-num { flex-shrink: 0; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: linear-gradient(135deg, #6F4FF0, #8b7cff); display: flex; align-items: center; justify-content: center; font-family: 'Arvo', serif; font-weight: 700; font-size: 1rem; color: white; box-shadow: 0 0 24px rgba(160, 133, 255, 0.35); z-index: 1; }
.timeline-content h4 { margin-bottom: 0.4rem; }
.timeline-content p { font-size: 1rem; color: var(--gray); }

/* ─── Over ons page ──────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { display: flex; flex-direction: column; gap: 1rem; padding: 2rem; }
.value-icon { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--blue-accent); }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--gray); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-member { text-align: center; }
.team-avatar { width: 140px; height: 140px; margin: 0 auto 1.25rem; border-radius: 50%; background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright)); display: flex; align-items: center; justify-content: center; font-size: 3rem; border: 3px solid rgba(160, 133, 255, 0.2); color: rgba(255, 255, 255, 0.9); }
.team-member h4 { margin-bottom: 0.35rem; }
.team-member p { color: var(--gray); font-size: 0.9rem; }

/* ─── Contact page ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--white); font-size: 0.9rem; }
.form-group input, .form-group textarea { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(160, 133, 255, 0.14); border-radius: 10px; padding: 0.875rem 1rem; color: var(--white); font-family: 'Poppins', sans-serif; font-size: 1rem; transition: var(--transition); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: rgba(160, 133, 255, 0.35); background: rgba(160, 133, 255, 0.08); }
.form-group input.invalid, .form-group textarea.invalid { border-color: rgba(239, 68, 68, 0.7); background: rgba(239, 68, 68, 0.05); }
.form-group textarea { resize: vertical; min-height: 120px; }
/* Foutmeldingen per veld (WCAG 3.3.1) */
.field-error { font-size: 0.8rem; color: #ef4444; min-height: 1rem; display: block; }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.info-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(160, 133, 255, 0.12); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; color: var(--blue-accent); }
.info-item h4 { margin-bottom: 0.35rem; }
.info-item p { color: var(--gray); font-size: 0.95rem; }

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes lineSweep {
  0% { opacity: 0; transform: scaleX(0.3) translateX(-20%); }
  50% { opacity: 1; transform: scaleX(1) translateX(0); }
  100% { opacity: 0; transform: scaleX(0.3) translateX(20%); }
}

/* ─── Legal pages ────────────────────────────────────────── */
.legal-content { max-width: 800px; margin: 0 auto; padding: 0; }
.legal-content h1 { margin-bottom: 0.5rem; }
.legal-content .subtitle { color: var(--gray); margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.75rem; }
.legal-content p, .legal-content li { color: var(--gray-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--orange); }
.legal-content a:hover { color: var(--orange-bright); }

/* ─── PDF embed ──────────────────────────────────────────── */
.pdf-frame {
  width: 100%; height: 80vh; min-height: 600px;
  border: 1px solid rgba(160, 133, 255, 0.15);
  border-radius: var(--radius); display: block;
  background: rgba(255, 255, 255, 0.02);
}

/* ─── Workshop card as link ──────────────────────────────── */
.workshop-card { padding: 2rem; display: flex; flex-direction: column; }
.workshop-card .workshop-topics { flex: 1; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (min-width: 1200px) {
  .page-hero { min-height: 50vh; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2col, .grid-2col-start, .grid-2col-alt, .grid-2col-wide { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .hero,
  .page-hero {
    min-height: unset;
  }
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero-content {
    padding: 2rem 0;
  }
  .page-hero {
    padding-top: 5.25rem;
    padding-bottom: 2.25rem;
  }
  .page-hero-content {
    padding: 2rem 0;
  }
  .container { padding: 0 1.25rem; }
  .section-padding { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-ham { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-ai-note { text-align: center !important; }
  .services-grid { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-sep { display: none; }
  .trust-inner { gap: 1.5rem 3rem; }
  .grid-2col, .grid-2col-start, .grid-2col-alt, .grid-2col-wide { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumb {
  padding: 0.75rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--gray);
}
.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.4rem;
  opacity: 0.4;
}
.breadcrumb-list a {
  color: var(--gray);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.breadcrumb-list a:hover { opacity: 1; }
.breadcrumb-list li[aria-current="page"] { color: var(--orange); opacity: 1; }

/* ============================================================
   Light Mode  (data-theme="light" op <html>)
   ============================================================ */
[data-theme="light"] {
  --navy:         #f8f9fc;
  --navy-mid:     #f0f2f7;
  --navy-light:   #e4e8f2;
  --navy-card:    rgba(255, 255, 255, 0.95);
  --navy-glass:   rgba(248, 249, 252, 0.97);
  --blue-dim:     rgba(107, 82, 212, 0.08);
  --teal-dim:     rgba(0, 160, 130, 0.08);
  --orange-dim:   rgba(255, 115, 3, 0.07);
  --gray-dim:     rgba(80, 95, 130, 0.1);
  --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-blue:  0 0 32px rgba(107, 82, 212, 0.18);
  --white:        #122235;
  --off-white:    #1e3050;
  --gray:         #52668a;
  --gray-light:   #34466a;
  color-scheme: light;
}
[data-theme="light"] body {
  background: var(--navy);
  color: var(--off-white);
}
[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(107, 82, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 82, 212, 0.04) 1px, transparent 1px);
}
[data-theme="light"] .nav {
  background: rgba(111, 79, 240, 0.92) !important;
  border-bottom-color: rgba(255, 255, 255, 0.18) !important;
}
[data-theme="light"] .nav.scrolled {
  background: rgba(111, 79, 240, 0.96) !important;
  border-bottom-color: rgba(255, 255, 255, 0.22) !important;
}
[data-theme="light"] .nav-drawer {
  background: #f0f2f7;
}
[data-theme="light"] .nav-links a,
[data-theme="light"] .nav-drawer a {
  color: var(--off-white);
}
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-drawer a:hover {
  color: var(--orange);
}
[data-theme="light"] .dropdown-menu {
  background: var(--navy-card);
  border-color: rgba(107, 82, 212, 0.12);
}
[data-theme="light"] .footer {
  background: var(--navy-mid);
  border-top-color: rgba(107, 82, 212, 0.1);
}
[data-theme="light"] .hero,
[data-theme="light"] .page-hero {
  background: var(--navy);
}

/* ============================================================
   Scroll-to-top button
   ============================================================ */
.scroll-top {
  /* Uitgelijnd met #a11y-toggle (52x52 op right: 1.5rem, bottom: 1.5rem).
     #a11y-widget zit op bottom: 1.5rem met een toggle van 52px hoog
     (samen ca. 76px). bottom: 5.5rem (88px) geeft net genoeg ruimte erboven. */
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 1px solid rgba(160, 133, 255, 0.2);
  color: var(--gray-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 900;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--blue-accent);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.scroll-top svg { display: block; width: 20px; height: 20px; }

/* ============================================================
   Dark/light toggle (in nav)
   ============================================================ */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(160, 133, 255, 0.2);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--blue-dim);
  color: var(--blue-accent);
  border-color: rgba(160, 133, 255, 0.4);
}
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
@media (max-width: 768px) {
  .theme-toggle { display: flex; }
  /* Op mobiel blijft de accessibility-widget op bottom: 1.5rem, right: 1.5rem
     (52x52). scroll-top staat daar netjes boven, zelfde breedte en right. */
  .scroll-top   { bottom: 5.5rem; right: 1.5rem; width: 52px; height: 52px; }
}

/* ============================================================
   Light Mode: uitgebreide overrides
   Doel: alle witte tekst, navy cards, donkere overlays en
   transparante glass-effecten leesbaar maken in light mode
   zonder dark mode aan te tasten.
   ============================================================ */

/* --- Variabel-extensies (paars iets dieper voor contrast) --- */
[data-theme="light"] {
  --blue-accent:    #6b52d4;
  --blue-bright:    #5b3fc4;
  --blue-glow:      #6b52d4;
  --teal:           #00a082;
  --green-bright:   #059669;
  --shadow-orange:  0 0 32px rgba(255, 115, 3, 0.18);
}

/* --- Typografie: alle witte koppen worden donker --- */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: #122235;
}
[data-theme="light"] p {
  color: #34466a;
}

/* --- Navigatie: witte tekst op paarse header --- */
[data-theme="light"] .nav-links a,
[data-theme="light"] .nav.scrolled-text-white .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}
[data-theme="light"] .nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}
[data-theme="light"] .nav-links a.nav-active {
  color: #ffffff;
}
[data-theme="light"] .dropdown-trigger {
  color: rgba(255, 255, 255, 0.88);
}
[data-theme="light"] .theme-toggle {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
[data-theme="light"] .nav-ham span,
[data-theme="light"] .nav.scrolled-text-white .nav-ham span {
  background: #ffffff;
}
[data-theme="light"] .nav-drawer {
  background: rgba(248, 249, 252, 0.98);
}
[data-theme="light"] .nav-drawer a {
  color: #122235;
}
[data-theme="light"] .dropdown-menu {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.18);
  box-shadow: 0 12px 32px rgba(14, 23, 40, 0.1);
}
[data-theme="light"] .dropdown-menu a {
  color: #34466a;
}
[data-theme="light"] .dropdown-menu a:hover {
  color: #122235;
  background: rgba(107, 82, 212, 0.08);
}

/* --- Body grid: paars raster iets dichter zodat het zichtbaar is --- */
[data-theme="light"] body::before {
  opacity: 0.6;
}

/* --- Buttons --- */
[data-theme="light"] .btn-primary {
  color: #ffffff;
}
[data-theme="light"] .btn-secondary {
  background: rgba(107, 82, 212, 0.1);
  color: #5b3fc4;
  border-color: rgba(107, 82, 212, 0.3);
}
[data-theme="light"] .btn-secondary:hover {
  background: rgba(107, 82, 212, 0.18);
  border-color: rgba(107, 82, 212, 0.5);
}
[data-theme="light"] .btn-ghost {
  color: #34466a;
  border-color: rgba(14, 23, 40, 0.15);
}
[data-theme="light"] .btn-ghost:hover {
  background: rgba(14, 23, 40, 0.04);
  border-color: rgba(14, 23, 40, 0.25);
  color: #122235;
}

/* --- Cards: lichte achtergrond met subtiele border --- */
[data-theme="light"] .card {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.15);
  box-shadow: 0 1px 3px rgba(14, 23, 40, 0.04);
}
[data-theme="light"] .card:hover {
  border-color: rgba(107, 82, 212, 0.35);
  box-shadow: 0 8px 24px rgba(14, 23, 40, 0.08);
}
[data-theme="light"] .card::before {
  background: linear-gradient(135deg, rgba(107, 82, 212, 0.05) 0%, transparent 60%);
}
[data-theme="light"] .card-orange {
  border-color: rgba(255, 115, 3, 0.18);
}
[data-theme="light"] .card-orange::before {
  background: linear-gradient(135deg, rgba(255, 115, 3, 0.07) 0%, transparent 60%);
}
[data-theme="light"] .card-orange:hover {
  border-color: rgba(255, 115, 3, 0.4);
}

/* --- Icon boxes: iets sterkere tint op licht --- */
[data-theme="light"] .icon-box-blue   { background: rgba(107, 82, 212, 0.12); }
[data-theme="light"] .icon-box-orange { background: rgba(255, 115, 3, 0.12); }
[data-theme="light"] .icon-box-teal   { background: rgba(0, 160, 130, 0.12); }

/* --- Tags --- */
[data-theme="light"] .tag-ai {
  background: rgba(107, 82, 212, 0.1);
  color: #5b3fc4;
  border-color: rgba(107, 82, 212, 0.25);
}
[data-theme="light"] .tag-auto {
  background: rgba(255, 115, 3, 0.08);
  color: #c75802;
  border-color: rgba(255, 115, 3, 0.25);
}
[data-theme="light"] .tag-people {
  background: rgba(0, 160, 130, 0.08);
  color: #00805e;
  border-color: rgba(0, 160, 130, 0.25);
}

/* --- Hero badge --- */
[data-theme="light"] .hero-badge {
  background: rgba(255, 115, 3, 0.08);
  border-color: rgba(255, 115, 3, 0.3);
  color: #c75802;
}

/* --- Hero subtitle en services preview --- */
[data-theme="light"] .hero-sub {
  color: #34466a;
}
[data-theme="light"] .hero-service-item {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.18);
  box-shadow: 0 1px 3px rgba(14, 23, 40, 0.04);
}
[data-theme="light"] .hero-service-item:hover {
  background: rgba(107, 82, 212, 0.06);
  border-color: rgba(107, 82, 212, 0.35);
}
[data-theme="light"] .hero-service-name {
  color: #122235;
}

/* --- Trust bar --- */
[data-theme="light"] .trust-bar {
  background: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(107, 82, 212, 0.15);
  border-bottom-color: rgba(107, 82, 212, 0.15);
}
[data-theme="light"] .trust-value {
  color: #122235;
}
[data-theme="light"] .trust-label {
  color: #52668a;
}
[data-theme="light"] .trust-sep {
  background: rgba(107, 82, 212, 0.2);
}

/* --- Page hero gradient overlay: lichter --- */
[data-theme="light"] .page-hero-gradient {
  background:
    radial-gradient(ellipse 80% 100% at 60% 30%, rgba(107, 82, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255, 115, 3, 0.08) 0%, transparent 50%);
}
[data-theme="light"] .page-hero-mesh {
  background-image:
    linear-gradient(rgba(107, 82, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 82, 212, 0.08) 1px, transparent 1px);
  opacity: 0.45;
}
[data-theme="light"] .page-hero-sub {
  color: #34466a;
}
[data-theme="light"] .hero-line {
  background: linear-gradient(to right, transparent, rgba(107, 82, 212, 0.3), transparent);
}
[data-theme="light"] .hero-line:nth-child(2) {
  background: linear-gradient(to right, transparent, rgba(255, 115, 3, 0.25), transparent);
}

/* --- Divider --- */
[data-theme="light"] .divider {
  background: linear-gradient(to right, transparent, rgba(107, 82, 212, 0.2), transparent);
}

/* --- Pillar icons --- */
[data-theme="light"] .pillar-icon-ai {
  background: linear-gradient(135deg, rgba(107, 82, 212, 0.18), rgba(107, 82, 212, 0.05));
  border-color: rgba(107, 82, 212, 0.28);
}
[data-theme="light"] .pillar-icon-connect {
  background: linear-gradient(135deg, rgba(255, 115, 3, 0.18), rgba(255, 115, 3, 0.05));
  border-color: rgba(255, 115, 3, 0.28);
}
[data-theme="light"] .pillar-icon-people {
  background: linear-gradient(135deg, rgba(0, 160, 130, 0.18), rgba(0, 160, 130, 0.05));
  border-color: rgba(0, 160, 130, 0.28);
}
[data-theme="light"] .pillar-card p,
[data-theme="light"] .service-card p,
[data-theme="light"] .step-card p,
[data-theme="light"] .benefit-card p,
[data-theme="light"] .solution-card > p,
[data-theme="light"] .timeline-content p,
[data-theme="light"] .value-card p,
[data-theme="light"] .team-member p,
[data-theme="light"] .info-item p,
[data-theme="light"] .workshop-card > p {
  color: #34466a;
}

/* --- Service link / dienst-link kleur in light --- */
[data-theme="light"] .service-link,
[data-theme="light"] .dienst-link {
  color: #5b3fc4;
}

/* --- Steps & timeline gradient connectors --- */
[data-theme="light"] .steps-grid::before {
  background: linear-gradient(to right, #6b52d4, rgba(107, 82, 212, 0.15));
}
[data-theme="light"] .step-num,
[data-theme="light"] .timeline-num {
  background: linear-gradient(135deg, #6b52d4, #8b7cff);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(107, 82, 212, 0.3);
}
[data-theme="light"] .timeline::before {
  background: linear-gradient(to bottom, #6b52d4, rgba(107, 82, 212, 0.15));
}

/* --- CTA section gradient --- */
[data-theme="light"] .cta-bg {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255, 115, 3, 0.06) 0%, transparent 65%);
}
[data-theme="light"] .cta-section p {
  color: #34466a;
}

/* --- For-whom list items (donkere navy cards) --- */
[data-theme="light"] .for-whom-list li {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.15);
  color: #34466a;
}
[data-theme="light"] .for-whom-list li:hover {
  border-color: rgba(107, 82, 212, 0.35);
}

/* --- Workshop badges / topics --- */
[data-theme="light"] .workshop-badge {
  background: rgba(14, 23, 40, 0.04);
  border-color: rgba(14, 23, 40, 0.1);
  color: #52668a;
}
[data-theme="light"] .workshop-topics li {
  color: #34466a;
  border-bottom-color: rgba(107, 82, 212, 0.1);
}

/* --- Team avatar gradient blijft helder, niets aanpassen --- */
[data-theme="light"] .team-avatar {
  border-color: rgba(107, 82, 212, 0.25);
}

/* --- Contact form --- */
[data-theme="light"] .form-group label {
  color: #122235;
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.2);
  color: #122235;
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: #6a7a9c;
}
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
  border-color: rgba(107, 82, 212, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(107, 82, 212, 0.1);
}
[data-theme="light"] .info-icon {
  background: rgba(107, 82, 212, 0.1);
}

/* --- Footer in light --- */
[data-theme="light"] .footer {
  background: rgba(111, 79, 240, 0.92);
  border-top-color: rgba(255, 255, 255, 0.18);
}
[data-theme="light"] .footer.footer-dark {
  --footer-link-color: #ffffff;
  --footer-text-color: rgba(255, 255, 255, 0.85);
}
[data-theme="light"] .footer-brand p,
[data-theme="light"] .footer-col ul li a,
[data-theme="light"] .footer-contact-item span,
[data-theme="light"] .footer-bottom p,
[data-theme="light"] .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.88);
}
[data-theme="light"] .footer-col ul li a:hover,
[data-theme="light"] .footer-bottom-links a:hover {
  color: #ffffff;
}
[data-theme="light"] .footer-contact-item .ci {
  background: rgba(255, 255, 255, 0.18);
}
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .footer h5,
[data-theme="light"] .footer-ai-note {
  color: #ffffff !important;
}

/* --- Scroll-to-top knop --- */
[data-theme="light"] .scroll-top {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.25);
  color: #34466a;
  box-shadow: 0 4px 12px rgba(14, 23, 40, 0.08);
}
[data-theme="light"] .scroll-top:hover {
  background: #6b52d4;
  color: #ffffff;
}

/* --- Theme toggle knop (op paarse nav) --- */
[data-theme="light"] .theme-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

/* --- Breadcrumb --- */
[data-theme="light"] .breadcrumb-list {
  color: #52668a;
}
[data-theme="light"] .breadcrumb-list a {
  color: #52668a;
}

/* --- Legal pages --- */
[data-theme="light"] .legal-content .subtitle {
  color: #52668a;
}
[data-theme="light"] .legal-content p,
[data-theme="light"] .legal-content li {
  color: #34466a;
}

/* --- PDF frame achtergrond --- */
[data-theme="light"] .pdf-frame {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.18);
}

/* ============================================================
   Light Mode: overrides voor inline <style> in index.html
   (specificity boost via [data-theme="light"] op html)
   ============================================================ */

/* AI Visual ringen: iets sterker zichtbaar op witte hero */
[data-theme="light"] .ai-ring-1 { border-color: rgba(107, 82, 212, 0.32); }
[data-theme="light"] .ai-ring-2 { border-color: rgba(255, 115, 3, 0.28); }
[data-theme="light"] .ai-ring-3 { border-color: rgba(0, 160, 130, 0.28); }
[data-theme="light"] .ai-core {
  background: linear-gradient(135deg, #6b52d4, #FF7303);
  box-shadow: 0 0 60px rgba(255, 115, 3, 0.25), inset 0 0 30px rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Float-cards in hero: lichte glass-look ipv donkere navy */
[data-theme="light"] .float-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(107, 82, 212, 0.22);
  color: #34466a;
  box-shadow: 0 4px 16px rgba(14, 23, 40, 0.08);
}
[data-theme="light"] .float-card:hover {
  box-shadow: 0 8px 24px rgba(107, 82, 212, 0.18);
}
[data-theme="light"] .fc-1 { border-color: rgba(107, 82, 212, 0.28); }
[data-theme="light"] .fc-1 .float-card-icon { background: rgba(107, 82, 212, 0.14); }
[data-theme="light"] .fc-2 { border-color: rgba(255, 115, 3, 0.28); }
[data-theme="light"] .fc-2 .float-card-icon { background: rgba(255, 115, 3, 0.14); }
[data-theme="light"] .fc-3 { border-color: rgba(0, 160, 130, 0.28); }
[data-theme="light"] .fc-3 .float-card-icon { background: rgba(0, 160, 130, 0.14); }

/* Dienst-card op de homepage: lichte achtergrond */
[data-theme="light"] .dienst-card {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.15);
  box-shadow: 0 1px 3px rgba(14, 23, 40, 0.04);
}
[data-theme="light"] .dienst-card:hover {
  border-color: rgba(107, 82, 212, 0.4);
  box-shadow: 0 8px 24px rgba(14, 23, 40, 0.08);
}
[data-theme="light"] .dienst-card::before {
  background: linear-gradient(135deg, rgba(107, 82, 212, 0.05) 0%, transparent 60%);
}
[data-theme="light"] .dienst-card.card-orange {
  border-color: rgba(255, 115, 3, 0.2);
}
[data-theme="light"] .dienst-card.card-orange::before {
  background: linear-gradient(135deg, rgba(255, 115, 3, 0.07) 0%, transparent 60%);
}
[data-theme="light"] .dienst-card.card-orange:hover {
  border-color: rgba(255, 115, 3, 0.45);
}
[data-theme="light"] .dienst-card h3 {
  color: #122235;
}
[data-theme="light"] .dienst-card p {
  color: #34466a;
}
[data-theme="light"] .dienst-icon-ai {
  background: linear-gradient(135deg, rgba(107, 82, 212, 0.18), rgba(107, 82, 212, 0.05));
  border-color: rgba(107, 82, 212, 0.28);
}
[data-theme="light"] .dienst-icon-orange {
  background: linear-gradient(135deg, rgba(255, 115, 3, 0.18), rgba(255, 115, 3, 0.05));
  border-color: rgba(255, 115, 3, 0.28);
}
[data-theme="light"] .dienst-icon-teal {
  background: linear-gradient(135deg, rgba(0, 160, 130, 0.18), rgba(0, 160, 130, 0.05));
  border-color: rgba(0, 160, 130, 0.28);
}
[data-theme="light"] .dienst-link {
  color: #5b3fc4;
}

/* ============================================================
   prefers-reduced-motion
   WCAG 2.3.3: animaties uitschakelen voor gebruikers die dat verkiezen
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  /* Reveal-elementen meteen zichtbaar (geen fade-in) */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Light Mode: accessibility widget overrides
   ============================================================ */
[data-theme="light"] #a11y-panel {
  background: #ffffff;
  border-color: rgba(107, 82, 212, 0.25);
  box-shadow: 0 12px 32px rgba(14, 23, 40, 0.12);
}
[data-theme="light"] .a11y-header {
  color: #34466a;
  border-bottom-color: rgba(107, 82, 212, 0.15);
}
[data-theme="light"] #a11y-reset {
  color: #52668a;
  border-color: rgba(94, 110, 142, 0.3);
}
[data-theme="light"] .a11y-btn {
  background: #f4f6fa;
  border-color: rgba(107, 82, 212, 0.15);
  color: #34466a;
}
[data-theme="light"] .a11y-btn:hover {
  background: rgba(107, 82, 212, 0.08);
  border-color: rgba(107, 82, 212, 0.35);
  color: #122235;
}
[data-theme="light"] .a11y-btn[aria-pressed="true"] {
  background: rgba(255, 115, 3, 0.12);
  border-color: var(--orange);
  color: #c75802;
}

/* ─── Phosphor icon kleuren (float-card, dienst-icon) ─────── */
.fc-1 .float-card-icon { color: var(--blue-accent); }
.fc-2 .float-card-icon { color: var(--orange); }
.fc-3 .float-card-icon { color: var(--teal); }
.dienst-icon-ai     { color: #6F4FF0; }
.dienst-icon-orange { color: var(--orange); }
.dienst-icon-teal   { color: var(--teal); }

/* ─── Downloads pagina ───────────────────────────────────── */
.downloads-hero {
  padding: 6rem 0 3.5rem;
  text-align: center;
  position: relative;
}
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.download-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background: var(--navy-card);
  border: 1px solid rgba(160, 133, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}
.download-card:hover {
  border-color: rgba(160, 133, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.download-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.download-icon-purple {
  background: linear-gradient(135deg, rgba(160, 133, 255, 0.2), rgba(160, 133, 255, 0.06));
  border: 1px solid rgba(160, 133, 255, 0.2);
  color: var(--blue-accent);
}
.download-icon-orange {
  background: linear-gradient(135deg, rgba(255, 115, 3, 0.2), rgba(255, 115, 3, 0.06));
  border: 1px solid rgba(255, 115, 3, 0.2);
  color: var(--orange);
}
.download-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.download-card p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex: 1;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(160, 133, 255, 0.12);
  border: 1px solid rgba(160, 133, 255, 0.25);
  border-radius: var(--radius-sm);
  color: var(--blue-accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.btn-download:hover {
  background: rgba(160, 133, 255, 0.22);
  border-color: rgba(160, 133, 255, 0.45);
  gap: 0.75rem;
}
.btn-download.btn-orange {
  background: rgba(255, 115, 3, 0.12);
  border-color: rgba(255, 115, 3, 0.25);
  color: var(--orange-bright);
}
.btn-download.btn-orange:hover {
  background: rgba(255, 115, 3, 0.22);
  border-color: rgba(255, 115, 3, 0.45);
}
.pdf-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ─── Email gate formulier (downloads gate) ──────────────────── */
#formResponse {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  display: none;
}
#formResponse.success {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: block;
}
#formResponse.error {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}
.form-group--checkbox {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--orange);
  cursor: pointer;
}
.checkbox-label a {
  color: var(--orange);
  text-decoration: underline;
}
