/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a2535;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===========================
   CUSTOM PROPERTIES
=========================== */
:root {
  --navy: #0f1923;
  --navy-mid: #162030;
  --accent: #2B6CB0;
  --accent-light: #3d80c8;
  --white: #ffffff;
  --light: #f7f8fa;
  --text: #1a2535;
  --text-muted: #5d6c80;  /* WCAG AA op wit (5.35:1) — voorheen #6b7a8d (4.38:1, faalde) */
  --border: #e2e8f0;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
  --container: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* ─── Tijdlijn (Over mij) ─── */
  --tl-navy:        #0f1923;
  --tl-accent:      #2B6CB0;
  --tl-accent-soft: #4A90E2;
  --tl-light:       #f7f8fa;
  --tl-white:       #ffffff;
  --tl-status:      #22c55e;
  --tl-muted:       #5d6c80;
  --tl-border:      #e2e8f0;
  --tl-easing:      cubic-bezier(.2,.8,.2,1);
  --tl-line-width:  2px;
  --tl-dot-size:    14px;
  --tl-card-gap:    2.5rem;

  /* ─── Case-cards (Projecten) ─── */
  --cc-navy:        #0f1923;
  --cc-accent:      #2B6CB0;
  --cc-accent-soft: #4A90E2;
  --cc-light:       #f7f8fa;
  --cc-white:       #ffffff;
  --cc-status:      #22c55e;
  --cc-muted:       #5d6c80;
  --cc-border:      #e2e8f0;
  --cc-easing:      cubic-bezier(.2,.8,.2,1);

  /* ─── Proto-banner & gedeelde prototype-tokens ─── */
  --proto-navy:        #0f1923;
  --proto-accent:      #2B6CB0;
  --proto-accent-soft: #4A90E2;
  --proto-light:       #f7f8fa;
  --proto-muted:       #5d6c80;
  --proto-border:      #e2e8f0;
  --proto-status:      #22c55e;
  --proto-easing:      cubic-bezier(.2,.8,.2,1);

  /* ─── Gelaagde schaduwen ─── */
  --shadow-z2:    0 4px 12px rgba(0,0,0,0.08),
                  0 8px 24px rgba(0,0,0,0.06),
                  0 1px 3px rgba(0,0,0,0.04);
  --shadow-z3:    0 8px 24px rgba(0,0,0,0.10),
                  0 20px 48px rgba(0,0,0,0.08),
                  0 2px 6px rgba(0,0,0,0.05);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14),
                  0 32px 64px rgba(0,0,0,0.10),
                  0 4px 12px rgba(0,0,0,0.06);
}

/* ===========================
   CONTAINER
=========================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: #1c2f44;
  border-color: #1c2f44;
}

.btn--full { width: 100%; justify-content: center; }

/* ===========================
   FADE-UP ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   SECTION UTILITY
=========================== */
.section { padding: var(--section-pad) 0; }

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.section__sub {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  align-self: flex-end;
}

/* ===========================
   HEADER / NAV
=========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(15, 25, 35, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Pagina's zonder donkere hero (diensten, projecten):
   navbar altijd donker zodat witte tekst leesbaar blijft. */
body.has-solid-nav #header {
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
body.has-solid-nav .wid-section,
body.has-solid-nav .cc-section {
  padding-top: calc(70px + clamp(3rem, 6vw, 5rem));
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 56px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__links li a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__links li a:hover,
.nav__links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Op subpagina's: altijd donkere header, ruimte boven eerste sectie */
.section--page {
  padding-top: calc(70px + var(--section-pad));
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 0.2rem 0.3rem;
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--white);
}

.lang-divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.nav__cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  gap: 0;
  padding-top: 70px;
}

.hero__content {
  padding: clamp(3rem, 6vw, 5rem) 0;
  padding-right: clamp(2rem, 4vw, 4rem);
  z-index: 2;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat__num {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero__photo {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero__portrait {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__photo-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Left fade on photo */
.hero__photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ===========================
   OVER MIJ
=========================== */
.over-mij { background: var(--white); }

.over-mij__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.over-mij__visual {
  position: relative;
}

.over-mij__fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.over-mij__foto {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.over-mij__foto:first-child {
  margin-top: 2rem;
}

.over-mij__card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.over-mij__card strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.over-mij__card span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.about__li-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: color var(--transition);
  flex-shrink: 0;
}

.about__li-link:hover { color: var(--white); }

.over-mij__tekst h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.over-mij__intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.over-mij__tekst p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tag {
  background: var(--light);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.about__logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.about__logo-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.about__logo-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.org-badge {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  transition: all var(--transition);
}

.org-badge:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ===========================
   PULL / QUOTE SECTIE
=========================== */
.pull-sectie {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.pull-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.pull-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.pull-quote {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
  max-width: 860px;
  quotes: none;
}

.pull-inner cite {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===========================
   FEATURED PROJECT
=========================== */
.featured-project { background: var(--light); }

.fp-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.fp-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-thumb {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-thumb:hover img {
  transform: scale(1.03);
}

.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.video-thumb__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-thumb:hover .video-thumb__play {
  background: rgba(0,0,0,0.4);
}

.video-thumb:hover .video-thumb__circle {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}

.fp-info {
  padding-top: 0.5rem;
}

.fp-info h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.fp-info p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.fp-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fp-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.fp-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===========================
   FOTOGALERIJ CAROUSEL
=========================== */
.gallerij { background: var(--white); overflow: hidden; }

.foto-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
  cursor: grab;
}

.foto-carousel:active { cursor: grabbing; }

.foto-carousel__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.foto-carousel__item {
  flex-shrink: 0;
  width: min(480px, 75vw);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}

.foto-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
  user-select: none;
}

.foto-carousel__item:hover img {
  transform: scale(1.04);
}

/* Controls (pijlen + pauze) */
.foto-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.foto-carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.foto-carousel__btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.08);
}

.foto-carousel__btn--pause {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

/* ===========================
   DIENSTEN
=========================== */
.diensten { background: var(--light); }

.diensten__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dienst-kaart {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dienst-kaart:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dienst-kaart__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.dienst-kaart h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.dienst-kaart p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.dienst-kaart--cta {
  background: var(--navy);
  border-color: var(--navy);
  justify-content: space-between;
}

.dienst-kaart--cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dienst-kaart--cta h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.dienst-kaart--cta p {
  color: rgba(255,255,255,0.6);
}

.dienst-kaart--cta .btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ===========================
   INNOVALLY SECTION
=========================== */
.innovally-section { background: var(--white); }

.innovally-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* LEFT: context */
.innovally-context {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.innovally-context__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.innovally-context__logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.innovally-context__about {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.innovally-context__divider {
  height: 1px;
  background: var(--border);
}

.innovally-context__role {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.innovally-context__role-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.innovally-context__role h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.innovally-context__role p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.innovally-context__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.innovally-context__tags li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  background: rgba(43,108,176,0.08);
  color: var(--accent);
  border: 1px solid rgba(43,108,176,0.18);
}

/* RIGHT: project card */
.innovally-project__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.innovally-project__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.innovally-project__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.innovally-project__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.innovally-project__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.innovally-project__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.innovally-project__video {
  display: block;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.innovally-project__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innovally-project__list {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .innovally-layout {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   PROJECT CARD (lopende opdrachten)
=========================== */
.lopende-opdrachten { background: var(--white); }

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.project-card > .project-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 1;
}

.project-card__logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.project-badge::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.project-badge--actief {
  background: #d1fae5;
  color: #065f46;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.project-card__body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.project-card__info {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-right: 1px solid var(--border);
}

.project-card__info h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.project-card__org {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-card__org-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.project-card__info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}

.project-card__video .video-thumb {
  display: block;
  height: 100%;
  min-height: 280px;
  border-radius: 0;
  aspect-ratio: unset;
}

.project-card__video .video-thumb img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card__body {
    grid-template-columns: 1fr;
  }
  .project-card__info {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .project-card__video .video-thumb,
  .project-card__video .video-thumb img {
    min-height: 220px;
  }
}

/* ===========================
   OPDRACHTGEVERS (logo wall)
=========================== */
.opdrachtgevers { background: var(--light); }

.logo-wall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  flex: 1;
  min-width: 150px;
  max-width: 220px;
}

.logo-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.logo-item img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--transition), opacity var(--transition);
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-item--text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  transition: color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.logo-item--text:hover {
  color: var(--accent);
}

@media (max-width: 480px) {
  .logo-item {
    min-width: 130px;
    padding: 1.25rem 1.5rem;
  }
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--light); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-kaart {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-kaart:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-kaart__icon {
  color: var(--accent);
  opacity: 0.35;
  flex-shrink: 0;
}

.testimonial-kaart__text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial-kaart__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.testimonial-kaart__author strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-kaart__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 680px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CERTIFICATEN
=========================== */
.certificaten {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.certificaten__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.certificaten__titel {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.cert-kaart {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
}

.cert-kaart:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.cert-kaart__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EBF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.cert-kaart__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cert-kaart__info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.cert-kaart__info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.contact__info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.contact__icon {
  width: 38px;
  height: 38px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact__details li a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}

.contact__details li a:hover {
  color: var(--accent);
}

.contact__form {
  background: var(--light);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border: 1px solid var(--border);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.12);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #aab4c0;
}

.form__note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 1.25em;
  text-align: center;
}

.form__note.success {
  color: #2d7d46;
  padding: 0.85rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border-left: 3px solid #22c55e;
  border-radius: 4px;
}
.form__note.error {
  color: #c0392b;
  padding: 0.65rem 0.85rem;
  background: rgba(192, 57, 43, 0.06);
  border-left: 3px solid #c0392b;
  border-radius: 4px;
}

/* Fallback-link onder contactformulier */
.ct-form-card__fallback {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.ct-form-card__fallback a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer__logo {
  height: 28px;
  width: auto;
}

.footer__copy {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .over-mij__grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
  }

  .fp-layout {
    grid-template-columns: 1fr;
  }

  .fp-info {
    padding-top: 0;
  }

  .diensten__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 768px) {
  /* Nav mobile */
  .nav__toggle {
    display: flex;
    order: 3;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15, 25, 35, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.25rem;
    order: 4;
    margin-left: 0;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links li a {
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
  }

  .nav__right {
    margin-left: auto;
    order: 2;
  }

  .nav__cta { display: none; }

  /* Hero mobile */
  .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 100vh;
    padding-top: 70px;
  }

  .hero__content {
    order: 2;
    padding: 2rem 0 3rem;
    padding-right: 0;
  }

  .hero__photo {
    order: 1;
    height: 55vw;
    min-height: 260px;
    max-height: 360px;
  }

  .hero__portrait {
    min-height: unset;
    height: 100%;
  }

  .hero__photo::before { display: none; }

  .hero__photo-fade {
    height: 50%;
    background: linear-gradient(to top, var(--navy) 10%, transparent 100%);
  }

  /* Over mij mobile */
  .over-mij__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .over-mij__fotos {
    grid-template-columns: 1fr 1fr;
  }

  .over-mij__foto:first-child {
    margin-top: 0;
  }

  /* Diensten mobile */
  .diensten__grid {
    grid-template-columns: 1fr;
  }

  /* Contact mobile */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer mobile */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer__nav {
    gap: 1rem;
  }

  /* Pull sectie: disable parallax on mobile */
  .pull-sectie {
    background-attachment: scroll;
  }

  /* Section head mobile */
  .section__head {
    flex-direction: column;
    gap: 0.75rem;
  }

  .section__sub {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
    padding: 1rem;
  }

  .hero__stats {
    gap: 1rem;
  }

  .stat__num {
    font-size: 1.6rem;
  }

  .over-mij__fotos {
    grid-template-columns: 1fr 1fr;
  }

  .nav__logo img {
    height: 48px;
  }

  .pull-quote {
    font-size: 1.25rem;
  }

  .fp-layout {
    gap: 1.5rem;
  }

  .dienst-kaart {
    padding: 1.5rem;
  }

  .contact__grid {
    gap: 2rem;
  }

  .footer__nav {
    gap: 0.75rem;
  }
}

/* ===========================
   PAGE FADE-IN
=========================== */
body {
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.loaded {
  opacity: 1;
}

/* ===========================
   SCROLL-TO-TOP KNOP
=========================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(43,108,176,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--accent-light);
}
.scroll-top svg {
  display: block;
}

/* ===========================
   ANIMATED NAV UNDERLINE
=========================== */
.nav__links li a {
  position: relative;
}
.nav__links li a::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 2px;
  height: 2px;
  width: auto;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links li a:hover::after,
.nav__links li a.active::after {
  transform: scaleX(1);
}
.nav__links li a.active {
  color: var(--white);
  font-weight: 700;
}

/* ===========================
   CARD HOVER-LIFT
=========================== */
.dienst-kaart,
.cert-kaart,
.testimonial-kaart,
.innovally-project__card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.dienst-kaart:hover,
.cert-kaart:hover,
.testimonial-kaart:hover,
.innovally-project__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(15,25,35,0.12);
}

/* ===========================
   STATS COUNTER ANIMATIE
=========================== */
.stat__num {
  display: inline-block;
  transition: color 0.3s;
}

/* ===========================
   SECTION-MARKER COMPONENT
   Herbruikbaar op alle pagina's.
   Gebruik:
     <div class="section-marker">Label</div>
     <div class="section-marker section-marker--accent">Label</div>
     <div class="section-marker section-marker--navy">Label</div>
     <div class="section-marker section-marker--hero">Label</div>
=========================== */
.section-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(15, 25, 35, 0.65);
}
.section-marker::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, currentColor);
  opacity: 0.55;
}
.section-marker--accent { color: #2B6CB0; }
.section-marker--accent::before {
  background: linear-gradient(90deg, transparent, #4A90E2);
  opacity: 1;
}
.section-marker--navy  { color: rgba(255, 255, 255, 0.75); }
.section-marker--navy::before {
  background: linear-gradient(90deg, transparent, #4A90E2);
  opacity: 1;
}
.section-marker--hero  { color: rgba(255, 255, 255, 0.88); }
.section-marker--hero::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7));
  opacity: 1;
}

/* ===========================
   HERO V2 STYLES
   Full-bleed cinematic hero
   (index.html)
=========================== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
}
.hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('IMG_7066.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(10,17,25,0.92) 0%, rgba(10,17,25,0.78) 35%,
      rgba(10,17,25,0.50) 65%, rgba(10,17,25,0.30) 100%),
    radial-gradient(1200px 600px at 15% 80%, rgba(43,108,176,0.35), transparent 70%);
}
.hero-v2 .container { position: relative; width: 100%; }
.hero-v2__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
}
.hero-v2__marker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero-v2__marker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4A90E2);
}
.hero-v2__title {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
.hero-v2__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(.2,.8,.2,1),
    transform 0.9s cubic-bezier(.2,.8,.2,1),
    filter 0.9s cubic-bezier(.2,.8,.2,1),
    color 0.6s ease;
  color: rgba(255,255,255,0.35);
}
.hero-v2__title .word.is-in {
  opacity: 1; transform: translateY(0); filter: blur(0); color: #fff;
}
.hero-v2__title .word--accent { font-style: italic; font-weight: 700; }
.hero-v2__title .word--accent.is-in {
  color: #4A90E2;
  text-shadow: 0 0 40px rgba(74,144,226,0.35);
}
.hero-v2__sub {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
  max-width: 56ch;
  color: rgba(255,255,255,0.82);
  margin: 0 0 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 1.6s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-v2__actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center;
  opacity: 0; transform: translateY(12px);
  animation: heroFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 1.85s forwards;
}
.pill-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 1.6rem 0.95rem 1.2rem;
  background: #fff; color: #0a1119; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.pill-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
.pill-cta__dot {
  position: relative; width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(34,197,94,0);    }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);    }
}
.pill-cta__arrow { display: inline-block; transition: transform 0.25s ease; }
.pill-cta:hover .pill-cta__arrow { transform: translateX(3px); }
.pill-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.4rem; background: transparent;
  border: 1px solid rgba(255,255,255,0.28); color: #fff; border-radius: 999px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.pill-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.hero-v2__bottom {
  margin-top: 5rem;
  display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: 2rem; align-items: end;
}
.proof-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1.4rem 0.85rem 0.85rem;
  background: rgba(20,28,40,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  max-width: 520px; opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 2.1s forwards;
}
.proof-card__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: center 25%;
  border: 2px solid rgba(255,255,255,0.18); flex-shrink: 0;
}
.proof-card__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.proof-card__name {
  font-weight: 600; font-size: 0.95rem; color: #fff;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.proof-card__status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6);
}
.proof-card__role { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hero-v2__stats {
  display: flex; gap: 1.5rem; align-items: center;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 2.25s forwards;
}
.hero-v2__stat { display: flex; flex-direction: column; align-items: flex-start; min-width: 70px; }
.hero-v2__stat-num {
  font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.hero-v2__stat-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 0.45rem;
}
.hero-v2__stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.18); }
.hero-v2__scroll {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0; animation: heroFadeUp 0.9s ease 2.6s forwards;
}
.hero-v2__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.4; }
  50%       { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}
body.has-hero-v2 #header {
  background: transparent; box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.has-hero-v2 #header .nav__links a,
body.has-hero-v2 #header .nav__logo { color: #fff; }
body.has-hero-v2 #header .nav__links a { color: rgba(255,255,255,0.85); }
body.has-hero-v2 #header .lang-btn { color: rgba(255,255,255,0.7); }
body.has-hero-v2 #header .lang-btn.active { color: #fff; }
body.has-hero-v2 #header.is-scrolled {
  background: rgba(10,17,25,0.85); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@media (max-width: 768px) {
  .hero-v2 { padding: 7rem 0 4rem; min-height: 100svh; }
  .hero-v2__bottom { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
  .hero-v2__stats { flex-wrap: wrap; }
  .hero-v2__scroll { display: none; }
  .proof-card { max-width: 100%; }
  .pill-cta, .pill-secondary { flex: 1; justify-content: center; }
}

/* ===========================
   PULL-QUOTE PARALLAX
   (over-mij.html)
=========================== */
.pq-section {
  position: relative; width: 100%; min-height: 90vh;
  overflow: hidden; isolation: isolate;
  display: flex; align-items: center; justify-content: center;
  color: #fff; padding: clamp(5rem,10vw,9rem) 0;
}
.pq-parallax {
  position: absolute; top: -15%; left: 0; right: 0; height: 130%;
  z-index: -2; will-change: transform;
}
.pq-bg {
  position: absolute; inset: 0;
  background-image: url('IMG_7406.webp');
  background-size: cover; background-position: center;
  transform: scale(1.12);
  animation: pqKenBurns 22s cubic-bezier(.2,.8,.2,1) forwards;
  will-change: transform;
}
@keyframes pqKenBurns {
  from { transform: scale(1.18); }
  to   { transform: scale(1.02); }
}
.pq-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,17,25,0.70) 0%, rgba(10,17,25,0.55) 50%, rgba(10,17,25,0.78) 100%),
    radial-gradient(900px 500px at 25% 70%, rgba(43,108,176,0.28), transparent 70%);
}
.pq-content {
  position: relative; z-index: 1; width: 100%; max-width: 920px;
  margin: 0 auto; padding: 0 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.pq-marker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #fff; opacity: 0;
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1);
}
.pq-section.is-in .pq-marker { opacity: 0.85; }
.pq-marker::before, .pq-marker::after {
  content: ""; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, #4A90E2);
}
.pq-marker::after { background: linear-gradient(90deg, #4A90E2, transparent); }
.pq-quote {
  font-size: clamp(1.6rem,4.2vw,3rem); font-weight: 700; line-height: 1.35;
  letter-spacing: -0.015em; font-style: italic; color: #fff;
  margin: 0; max-width: 820px; quotes: none;
}
.pq-quote .word {
  display: inline-block; opacity: 0; transform: translateY(22px); filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(.2,.8,.2,1),
    transform 0.9s cubic-bezier(.2,.8,.2,1),
    filter 0.9s cubic-bezier(.2,.8,.2,1),
    color 0.6s ease;
  color: rgba(255,255,255,0.4); margin-right: 0.18em;
}
.pq-quote .word.is-in { opacity: 1; transform: translateY(0); filter: blur(0); color: #fff; }
.pq-quote .word--accent { color: rgba(74,144,226,0.5); }
.pq-quote .word--accent.is-in { color: #4A90E2; text-shadow: 0 0 30px rgba(74,144,226,0.45); }
.pq-quote .word--dash { color: rgba(255,255,255,0.55); }
.pq-quote .word--dash.is-in { color: rgba(255,255,255,0.85); }
.pq-cite {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  font-style: normal; font-weight: 500; letter-spacing: 0.04em;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1) 1.4s,
              transform 0.9s cubic-bezier(.2,.8,.2,1) 1.4s;
}
.pq-section.is-in .pq-cite { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) { .pq-section { min-height: 80vh; } .pq-parallax { will-change: auto; } }
@media (prefers-reduced-motion: reduce) {
  .pq-bg { animation: none; transform: scale(1.05); }
  .pq-quote .word { transition: none; opacity: 1; transform: none; filter: none; color: #fff; }
  .pq-quote .word--accent { color: #4A90E2; }
  .pq-cite { opacity: 1; transform: none; transition: none; }
  .pq-marker { opacity: 0.85; }
  .pq-parallax { transform: none !important; }
}


/* ===========================
   PROTO BANNER (prototype indicator)
=========================== */
.proto-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  background: rgba(10, 17, 25, 0.9);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* ===========================
   CONTACT PAGE (contact.html)
=========================== */
.ct-hero {
      position: relative;
      width: 100%;
      min-height: 65vh;
      overflow: hidden;
      isolation: isolate;
      color: #fff;
      padding: 9rem 0 5rem;
      display: flex;
      align-items: center;
    }

.ct-hero__bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url('portrait-moody.webp');
      background-size: cover;
      background-position: 75% 35%;
      filter: grayscale(0.15) brightness(0.75);
    }

.ct-hero__overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(110deg,
          rgba(10, 17, 25, 0.95) 0%,
          rgba(10, 17, 25, 0.85) 35%,
          rgba(10, 17, 25, 0.65) 70%,
          rgba(10, 17, 25, 0.45) 100%
        ),
        radial-gradient(1000px 500px at 20% 70%,
          rgba(43, 108, 176, 0.30),
          transparent 70%
        );
    }

.ct-hero__inner {
      position: relative;
      max-width: 720px;
    }

.ct-hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 4.4rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin: 0 0 1.2rem;
      max-width: 18ch;
      opacity: 0;
      transform: translateY(20px);
      animation: ctFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 0.3s forwards;
    }

.ct-hero h1 .accent {
      color: var(--proto-accent-soft);
      font-style: italic;
      font-weight: 700;
      text-shadow: 0 0 40px rgba(74, 144, 226, 0.35);
    }

.ct-hero p {
      font-size: clamp(1rem, 1.25vw, 1.18rem);
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.82);
      max-width: 56ch;
      margin: 0;
      opacity: 0;
      transform: translateY(12px);
      animation: ctFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 0.55s forwards;
    }

@keyframes ctFadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

body.has-ct-hero #header {
      background: transparent;
      box-shadow: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

body.has-ct-hero #header .nav__logo,
    body.has-ct-hero #header .nav__links a {
      color: #fff;
    }

body.has-ct-hero #header .nav__links a {
      color: rgba(255, 255, 255, 0.85);
    }

body.has-ct-hero #header .lang-btn {
      color: rgba(255, 255, 255, 0.7);
    }

body.has-ct-hero #header .lang-btn.active {
      color: #fff;
    }

body.has-ct-hero #header.is-scrolled {
      background: rgba(10, 17, 25, 0.85);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

.ct-section {
      background: #f7f8fa;
      padding: clamp(4rem, 8vw, 7rem) 0;
      position: relative;
    }

.ct-grid {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 3rem;
      align-items: start;
    }

.ct-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

.ct-info h2 {
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      font-weight: 700;
      letter-spacing: -0.015em;
      color: #0f1923;
      margin: 0;
      line-height: 1.2;
    }

.ct-info__sub {
      font-size: 1rem;
      line-height: 1.65;
      color: #4a5568;
      margin: 0 0 0.5rem;
      max-width: 42ch;
    }

.ct-details {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

.ct-details li {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.9rem 1.1rem;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

.ct-details li:hover {
      border-color: var(--proto-accent-soft);
      box-shadow: 0 8px 24px rgba(15, 25, 35, 0.06);
      transform: translateY(-2px);
    }

.ct-details__icon {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(43, 108, 176, 0.08);
      color: var(--proto-accent);
      flex-shrink: 0;
    }

.ct-details a {
      color: #1a2535;
      font-weight: 500;
      font-size: 0.98rem;
      text-decoration: none;
      transition: color 0.2s ease;
    }

.ct-details a:hover {
      color: var(--proto-accent);
    }

.ct-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.95rem 1.6rem 0.95rem 1.2rem;
      background: #0f1923;
      color: #fff;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 8px 24px rgba(15, 25, 35, 0.18);
      align-self: flex-start;
      margin-top: 0.5rem;
    }

.ct-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(15, 25, 35, 0.28);
    }

.ct-pill__dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--proto-status);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
      animation: ctPulseDot 2s ease-out infinite;
    }

@keyframes ctPulseDot {
      0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.55); }
      70%  { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);    }
      100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);    }
    }

.ct-pill__arrow {
      transition: transform 0.25s ease;
    }

.ct-pill:hover .ct-pill__arrow {
      transform: translateX(3px);
    }

.ct-form-card {
      position: relative;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 2.25rem;
      box-shadow:
        0 1px 2px rgba(15, 25, 35, 0.04),
        0 8px 24px rgba(15, 25, 35, 0.06),
        0 24px 48px rgba(15, 25, 35, 0.04);
    }

.ct-form-card::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 24px;
      right: 24px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--proto-accent-soft), transparent);
    }

.ct-form-card__header {
      margin-bottom: 1.75rem;
    }

.ct-form-card__marker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--proto-accent);
      margin-bottom: 0.75rem;
    }

.ct-form-card__marker::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--proto-status);
      box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    }

.ct-form-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      color: #0f1923;
      margin: 0;
      line-height: 1.3;
    }

.ct-form-card .btn--full {
      width: 100%;
      padding: 1rem 1.5rem;
      background: #0f1923;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.98rem;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
      margin-top: 0.5rem;
    }

.ct-form-card .btn--full:hover {
      background: var(--proto-accent);
      transform: translateY(-1px);
    }

@media (max-width: 900px) {
      .ct-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

@media (max-width: 768px) {
      .ct-hero {
        padding: 7rem 0 4rem;
        min-height: 50vh;
      }

      .ct-form-card {
        padding: 1.75rem;
      }

      .ct-pill {
        align-self: stretch;
        justify-content: center;
      }
    }

/* ===========================
   SERVICES PAGE (diensten.html / wat-ik-doe)
=========================== */
.wid-section {
      background: var(--proto-light);
      padding: calc(70px + clamp(4rem, 8vw, 7rem)) 0 clamp(4rem, 8vw, 7rem);
    }

.wid-inner {
      display: grid;
      grid-template-columns: 1fr 1.55fr;
      gap: 5rem;
      align-items: start;
    }

.wid-sticky {
      position: sticky;
      top: 90px;          /* clearance voor fixed header */
      padding-bottom: 2rem;
    }

.wid-sticky__pretitle {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--proto-accent);
      margin-bottom: 0.85rem;
    }

.wid-sticky__title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--proto-navy);
      margin-bottom: 1.4rem;
    }

.wid-sticky__desc {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--proto-muted);
      max-width: 36ch;
      margin-bottom: 2rem;
    }

.wid-progress {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
    }

.wid-progress__bar {
      height: 2px;
      border-radius: 999px;
      background: var(--proto-border);
      overflow: hidden;
    }

.wid-progress__fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--proto-accent), var(--proto-accent-soft));
      border-radius: 999px;
      transition: width 0.5s var(--proto-easing);
    }

.wid-progress__label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--proto-muted);
    }

.wid-sticky__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.85rem 1.5rem;
      background: var(--proto-navy);
      color: #fff;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition:
        transform 0.25s var(--proto-easing),
        background 0.25s ease;
    }

.wid-sticky__cta:hover {
      transform: translateY(-2px);
      background: var(--proto-accent);
    }

.wid-sticky__cta-dot {
      position: relative;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--proto-status);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
      animation: pulseDot 2s ease-out infinite;
      flex-shrink: 0;
    }

@keyframes pulseDot {
      0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.55); }
      70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);    }
      100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);    }
    }

.wid-items {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

.wid-item {
      padding: 2.25rem 0;
      border-bottom: 1px solid var(--proto-border);
      display: grid;
      grid-template-columns: 3.5rem 1fr;
      gap: 1.5rem;
      align-items: start;

      /* start in-view animation state */
      opacity: 0;
      transform: translateY(28px);
      filter: blur(4px);
      transition:
        opacity 0.75s var(--proto-easing),
        transform 0.75s var(--proto-easing),
        filter 0.75s var(--proto-easing);
    }

.wid-item:first-child {
      padding-top: 0.5rem;
    }

.wid-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

.wid-item.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

.wid-item__num {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--proto-accent-soft);
      padding-top: 0.3rem;
      line-height: 1;
    }

.wid-item__body {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

.wid-item__title {
      font-size: clamp(1.15rem, 1.6vw, 1.45rem);
      font-weight: 700;
      line-height: 1.25;
      color: var(--proto-navy);
      margin-bottom: 0.6rem;
      transition: color 0.25s ease;
    }

.wid-item:hover .wid-item__title {
      color: var(--proto-accent);
    }

.wid-item__desc {
      font-size: 0.97rem;
      line-height: 1.7;
      color: var(--proto-muted);
      max-width: 60ch;
    }

.wid-item__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1rem;
    }

.wid-item__tag {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: rgba(43, 108, 176, 0.08);
      color: var(--proto-accent);
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
    }

.wid-cta-block {
      margin-top: 3rem;
      padding: 2rem;
      background: var(--proto-navy);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      gap: 1rem;

      opacity: 0;
      transform: translateY(28px);
      filter: blur(4px);
      transition:
        opacity 0.75s var(--proto-easing),
        transform 0.75s var(--proto-easing),
        filter 0.75s var(--proto-easing);
    }

.wid-cta-block.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

.wid-cta-block__title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
    }

.wid-cta-block__sub {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

.wid-cta-block__link {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.75rem 1.4rem;
      background: #fff;
      color: var(--proto-navy);
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      align-self: flex-start;
      transition: transform 0.25s var(--proto-easing), box-shadow 0.25s ease;
    }

.wid-cta-block__link:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    }

.proto-banner {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      z-index: 9999;
      background: rgba(10, 17, 25, 0.9);
      color: #fff;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      pointer-events: none;
    }

@media (max-width: 900px) {
      .wid-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .wid-sticky {
        position: static;
        padding-bottom: 0;
      }

      .wid-sticky__desc {
        max-width: 100%;
      }
    }

@media (max-width: 640px) {
      .wid-item {
        grid-template-columns: 2.5rem 1fr;
        gap: 1rem;
      }

      .wid-cta-block {
        padding: 1.5rem;
      }
    }

/* ===========================
   PROJECTS / CASES PAGE (projecten.html)
=========================== */
.cc-section {
      background: var(--cc-light);
      padding: calc(70px + clamp(4rem, 8vw, 7rem)) 0 clamp(5rem, 10vw, 8rem);
    }

.cc-head {
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

.cc-head__pretitle {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cc-accent);
      margin-bottom: 0.75rem;
    }

.cc-head__title {
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--cc-navy);
      margin-bottom: 0.85rem;
    }

.cc-head__sub {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--cc-muted);
      max-width: 60ch;
    }

.cc-featured {
      background: var(--cc-white);
      border-radius: 20px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      box-shadow: var(--shadow-z3);
      margin-bottom: 2rem;
      transition:
        transform 0.4s var(--cc-easing),
        box-shadow 0.4s var(--cc-easing);

      opacity: 0;
      transform: translateY(32px);
      filter: blur(4px);
      transition:
        opacity 0.8s var(--cc-easing),
        transform 0.8s var(--cc-easing),
        filter 0.8s var(--cc-easing);
    }

.cc-featured.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

.cc-featured.is-visible:hover {
      transform: scale(1.015) translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

.cc-featured__image {
      position: relative;
      overflow: hidden;
      min-height: 320px;
    }

.cc-featured__image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s var(--cc-easing);
    }

.cc-featured:hover .cc-featured__image img {
      transform: scale(1.04);
    }

.cc-featured__image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
        rgba(15, 25, 35, 0.55) 0%,
        rgba(15, 25, 35, 0.20) 100%
      );
    }

.cc-featured__image-logo {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      max-height: 40px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

.cc-featured__body {
      padding: 2.5rem 2.5rem 2.5rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.5rem;
    }

.cc-featured__top {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.cc-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.9rem 0.35rem 0.65rem;
      background: rgba(34, 197, 94, 0.10);
      border: 1px solid rgba(34, 197, 94, 0.22);
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: #16a34a;
      align-self: flex-start;
    }

.cc-status-badge__dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cc-status);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
      animation: pulseDot 2s ease-out infinite;
      flex-shrink: 0;
    }

@keyframes pulseDot {
      0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.55); }
      70%  { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);    }
      100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);    }
    }

.cc-status-badge--afgerond {
      background: rgba(107, 122, 141, 0.10);
      border-color: rgba(107, 122, 141, 0.22);
      color: var(--cc-muted);
    }

.cc-status-badge--afgerond .cc-status-badge__dot {
      background: var(--cc-muted);
      animation: none;
      box-shadow: none;
    }

.cc-featured__title {
      font-size: clamp(1.3rem, 2vw, 1.75rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--cc-navy);
      letter-spacing: -0.02em;
    }

.cc-featured__sub {
      font-size: 0.97rem;
      line-height: 1.65;
      color: var(--cc-muted);
    }

.cc-featured__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

.cc-tag {
      display: inline-block;
      padding: 0.28rem 0.75rem;
      background: rgba(43, 108, 176, 0.08);
      color: var(--cc-accent);
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
    }

.cc-featured__meta {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

.cc-featured__highlights {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

.cc-featured__highlight {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.87rem;
      color: var(--cc-muted);
    }

.cc-featured__highlight::before {
      content: "";
      width: 14px;
      height: 1px;
      background: var(--cc-accent-soft);
      flex-shrink: 0;
    }

.cc-featured__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.8rem 1.5rem;
      background: var(--cc-navy);
      color: #fff;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      align-self: flex-start;
      transition: transform 0.25s var(--cc-easing), background 0.25s ease;
    }

.cc-featured__cta:hover {
      transform: translateY(-2px);
      background: var(--cc-accent);
    }

.cc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

.cc-card {
      background: var(--cc-white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-z2);
      display: flex;
      flex-direction: column;

      opacity: 0;
      transform: translateY(28px);
      filter: blur(3px);
      transition:
        opacity 0.75s var(--cc-easing),
        transform 0.75s var(--cc-easing),
        filter 0.75s var(--cc-easing);
    }

.cc-card.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

.cc-card.is-visible:hover {
      transform: scale(1.02) translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

.cc-card.is-visible {
      transition:
        transform 0.35s var(--cc-easing),
        box-shadow 0.35s var(--cc-easing);
    }

.cc-card__image {
      position: relative;
      height: 160px;
      overflow: hidden;
      background: var(--cc-light);
      display: flex;
      align-items: center;
      justify-content: center;
    }

.cc-card__image img {
      max-height: 60px;
      max-width: 70%;
      object-fit: contain;
      transition: transform 0.4s var(--cc-easing);
      filter: grayscale(30%);
    }

.cc-card:hover .cc-card__image img {
      transform: scale(1.06);
      filter: grayscale(0%);
    }

.cc-card__image-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(43,108,176,0.04), rgba(74,144,226,0.06));
    }

.cc-card__body {
      padding: 1.5rem 1.75rem 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }

.cc-card__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
    }

.cc-card__title {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--cc-navy);
    }

.cc-card__desc {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--cc-muted);
    }

.cc-card__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: auto;
      padding-top: 0.5rem;
    }

.cc-section-divider {
      margin: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
      display: flex;
      align-items: center;
      gap: 1rem;
    }

.cc-section-divider__label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cc-muted);
      white-space: nowrap;
    }

.cc-section-divider__line {
      flex: 1;
      height: 1px;
      background: var(--cc-border);
    }

.proto-banner {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      z-index: 9999;
      background: rgba(10, 17, 25, 0.9);
      color: #fff;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      pointer-events: none;
    }

@media (max-width: 900px) {
      .cc-featured {
        grid-template-columns: 1fr;
      }

      .cc-featured__image {
        min-height: 240px;
      }
    }

@media (max-width: 640px) {
      .cc-grid {
        grid-template-columns: 1fr;
      }

      .cc-featured__body {
        padding: 1.75rem;
      }
    }

/* ===========================
   ABOUT PAGE (over-mij.html)
=========================== */
body.has-om-hero #header {
  background: transparent;
  box-shadow: none;
}
body.has-om-hero #header .nav__logo,
body.has-om-hero #header .nav__links li a { color: rgba(255,255,255,0.92); }
body.has-om-hero #header .nav__links li a.active { color: #fff; }
body.has-om-hero #header .lang-btn { color: rgba(255,255,255,0.7); }
body.has-om-hero #header .lang-btn.active { color: #fff; }
body.has-om-hero #header.scrolled,
body.has-om-hero #header.is-scrolled {
  background: rgba(10, 17, 25, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.om-hero {
      background: var(--tl-navy);
      padding: calc(70px + clamp(3.5rem, 7vw, 6rem)) 0 clamp(3.5rem, 7vw, 6rem);
      position: relative;
      overflow: hidden;
    }

.om-hero__bg {
      position: absolute;
      inset: 0;
      background-image: url('IMG_8228.webp');
      background-size: cover;
      background-position: center 20%;
      opacity: 0.18;
    }

.om-hero__grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2.5rem;
      align-items: center;
      position: relative;
    }

.om-hero__portrait {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center 15%;
      border: 3px solid rgba(255,255,255,0.18);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      flex-shrink: 0;
    }

.om-hero__content {
      color: #fff;
    }

.om-hero__name {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: #fff;
      margin-bottom: 0.65rem;
    }

.om-hero__tagline {
      font-size: 1rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.68);
      max-width: 52ch;
      margin-bottom: 1.5rem;
    }

.om-hero__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

.om-hero__tag {
      display: inline-block;
      padding: 0.3rem 0.85rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.75);
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 500;
    }

.tl-section {
      background: var(--tl-light);
      padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
    }

.tl-section__head {
      margin-bottom: clamp(3rem, 6vw, 5rem);
    }

.tl-section__pretitle {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--tl-accent);
      margin-bottom: 0.75rem;
    }

.tl-section__title {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--tl-navy);
    }

.tl-wrapper {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

.tl-wrapper::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: var(--tl-line-width);
      transform: translateX(-50%);
      background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--tl-border) 5%,
        var(--tl-border) 90%,
        transparent 100%
      );
    }

.tl-item {
      display: grid;
      grid-template-columns: 1fr var(--tl-dot-size) 1fr;
      gap: 0 2rem;
      align-items: start;
      margin-bottom: var(--tl-card-gap);
    }

.tl-item:last-child { margin-bottom: 0; }

.tl-item__left  { grid-column: 1; }

.tl-item__mid {
      grid-column: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      padding-top: 1.1rem;
    }

.tl-item__right { grid-column: 3; }

.tl-item--left .tl-item__left  { grid-column: 1; }

.tl-item--left .tl-item__right { grid-column: 3; visibility: hidden; height: 0; }

.tl-item--right .tl-item__left  { grid-column: 1; visibility: hidden; height: 0; }

.tl-item--right .tl-item__right { grid-column: 3; }

.tl-dot {
      width: var(--tl-dot-size);
      height: var(--tl-dot-size);
      border-radius: 50%;
      background: var(--tl-border);
      border: 2px solid var(--tl-white);
      box-shadow: 0 0 0 2px var(--tl-border);
      flex-shrink: 0;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

.tl-item.is-visible .tl-dot {
      background: var(--tl-accent);
      box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.2);
    }

.tl-dot--active {
      background: var(--tl-status) !important;
      box-shadow: 0 0 0 0 rgba(34,197,94,0.6) !important;
      animation: pulseDot 2s ease-out infinite;
    }

@keyframes pulseDot {
      0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.55); }
      70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0);    }
      100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);    }
    }

.tl-year {
      margin-top: 0.5rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--tl-muted);
      text-transform: uppercase;
      white-space: nowrap;
    }

.tl-card {
      background: var(--tl-white);
      border-radius: 14px;
      padding: 1.5rem 1.75rem;
      box-shadow:
        0 2px 8px rgba(0,0,0,0.06),
        0 6px 20px rgba(0,0,0,0.05),
        0 1px 3px rgba(0,0,0,0.04);
      position: relative;
      transition:
        transform 0.35s var(--tl-easing),
        box-shadow 0.35s var(--tl-easing);

      /* Entrance animatie */
      opacity: 0;
      filter: blur(3px);
    }

.tl-card::before {
      content: "";
      position: absolute;
      top: 1.4rem;
      width: 10px;
      height: 10px;
      background: var(--tl-white);
      border-radius: 2px;
      transform: rotate(45deg);
      box-shadow: -2px 2px 6px rgba(0,0,0,0.05);
    }

.tl-item--left .tl-card {
      transform: translateX(-20px);
    }

.tl-item--left .tl-card::before {
      right: -5px;
      box-shadow: 2px -2px 6px rgba(0,0,0,0.05);
    }

.tl-item--right .tl-card {
      transform: translateX(20px);
    }

.tl-item--right .tl-card::before {
      left: -5px;
    }

.tl-item.is-visible .tl-card {
      opacity: 1;
      filter: blur(0);
      transform: translateX(0) !important;
      transition:
        opacity 0.75s var(--tl-easing),
        transform 0.75s var(--tl-easing),
        filter 0.75s var(--tl-easing);
    }

.tl-item.is-visible .tl-card:hover {
      transform: translateY(-3px) !important;
      box-shadow:
        0 8px 24px rgba(0,0,0,0.10),
        0 20px 40px rgba(0,0,0,0.07),
        0 2px 6px rgba(0,0,0,0.05);
      transition:
        transform 0.3s var(--tl-easing),
        box-shadow 0.3s var(--tl-easing);
    }

.tl-card__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.28rem 0.75rem 0.28rem 0.6rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      margin-bottom: 0.85rem;
      align-self: flex-start;
    }

.tl-card__badge--actief {
      background: rgba(34,197,94,0.10);
      border: 1px solid rgba(34,197,94,0.22);
      color: #16a34a;
    }

.tl-card__badge--afgerond {
      background: rgba(107,122,141,0.09);
      border: 1px solid rgba(107,122,141,0.2);
      color: var(--tl-muted);
    }

.tl-card__badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

.tl-card__badge--actief .tl-card__badge-dot {
      background: var(--tl-status);
      box-shadow: 0 0 6px rgba(34,197,94,0.5);
      animation: pulseDot 2s ease-out infinite;
    }

.tl-card__badge--afgerond .tl-card__badge-dot {
      background: var(--tl-muted);
    }

.tl-card__org {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--tl-accent);
      margin-bottom: 0.3rem;
    }

.tl-card__title {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--tl-navy);
      margin-bottom: 0.6rem;
    }

.tl-card__desc {
      font-size: 0.9rem;
      line-height: 1.68;
      color: var(--tl-muted);
      margin-bottom: 0.85rem;
    }

.tl-card__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }

.tl-card__tag {
      display: inline-block;
      padding: 0.22rem 0.65rem;
      background: rgba(43,108,176,0.07);
      color: var(--tl-accent);
      border-radius: 999px;
      font-size: 0.69rem;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

.tl-card__quote {
      margin-top: 0.85rem;
      padding: 0.85rem 1rem;
      background: var(--tl-light);
      border-left: 2px solid var(--tl-accent-soft);
      border-radius: 0 6px 6px 0;
      font-size: 0.84rem;
      line-height: 1.6;
      color: var(--tl-muted);
      font-style: italic;
    }

.tl-card__quote cite {
      display: block;
      margin-top: 0.4rem;
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 600;
      color: var(--tl-navy);
      opacity: 0.75;
    }

.tl-cta {
      margin-top: clamp(3rem, 6vw, 5rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      text-align: center;

      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s var(--tl-easing), transform 0.7s var(--tl-easing);
    }

.tl-cta.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

.tl-cta__label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--tl-muted);
    }

.tl-cta__link {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 1.75rem;
      background: var(--tl-navy);
      color: #fff;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
      transition: transform 0.25s var(--tl-easing), background 0.25s ease;
    }

.tl-cta__link:hover {
      transform: translateY(-2px);
      background: var(--tl-accent);
    }

.tl-cta__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--tl-status);
      animation: pulseDot 2s ease-out infinite;
    }

.proto-banner {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      z-index: 9999;
      background: rgba(10,17,25,0.9);
      color: #fff;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      pointer-events: none;
    }

@media (max-width: 760px) {
      /* Mobiel: alles links uitgelijnd, lijn links */
      .tl-wrapper::before {
        left: 22px;
        transform: none;
      }

      .tl-item {
        grid-template-columns: 44px 1fr;
        gap: 0 1rem;
      }

      .tl-item--left .tl-item__left,
      .tl-item--right .tl-item__left {
        grid-column: 1;
        visibility: visible;
        height: auto;
      }

      .tl-item--left .tl-item__right,
      .tl-item--right .tl-item__right {
        display: none;
      }

      .tl-item__mid {
        grid-column: 1;
        align-items: center;
      }

      .tl-item--left .tl-item__left,
      .tl-item--right .tl-item__left {
        grid-column: 2;
      }

      .tl-item--left .tl-card,
      .tl-item--right .tl-card {
        transform: translateX(16px);
      }

      .tl-item--left .tl-card::before,
      .tl-item--right .tl-card::before {
        left: -5px;
        right: auto;
        box-shadow: -2px 2px 6px rgba(0,0,0,0.05);
      }

      .om-hero__grid {
        grid-template-columns: 1fr;
      }

      .om-hero__portrait {
        width: 80px;
        height: 80px;
      }
    }



/* ===========================
   FOTO-CARROUSEL (homepage)
   Full-bleed cross-fade carousel
=========================== */
.carousel {
  position: relative;
  width: 100%;
  height: clamp(420px, 65vh, 720px);
  overflow: hidden;
  background: #0a1119;
  isolation: isolate;
}
.carousel__track {
  position: absolute;
  inset: 0;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,17,25,0.18) 0%, rgba(10,17,25,0) 25%, rgba(10,17,25,0) 65%, rgba(10,17,25,0.55) 100%);
  pointer-events: none;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,17,25,0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  padding: 0;
}
.carousel__nav:hover {
  background: rgba(43,108,176,0.85);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-50%) scale(1.05);
}
.carousel__nav:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}
.carousel__nav--prev { left: clamp(1rem, 3vw, 2.5rem); }
.carousel__nav--next { right: clamp(1rem, 3vw, 2.5rem); }

.carousel__dots {
  position: absolute;
  bottom: clamp(1rem, 3vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.carousel__dot:hover { background: rgba(255,255,255,0.7); }
.carousel__dot.is-active {
  background: #fff;
  width: 28px;
  border-radius: 999px;
}
.carousel__dot:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .carousel { height: clamp(320px, 55vh, 520px); }
  .carousel__nav { width: 40px; height: 40px; }
  .carousel__nav--prev { left: 0.75rem; }
  .carousel__nav--next { right: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__slide { transition: none; }
  .carousel__nav, .carousel__dot { transition: none; }
}

/* ===========================
   FASE 3 — MOBILE FIXES
   Touch-targets, typografie en
   iPhone SE/Pro Max veiligheden.
=========================== */

/* iPhone Pro Max (414px) en kleiner */
@media (max-width: 480px) {
  /* Hero-typografie: voorkom afgebroken/overflow op smalle schermen */
  .hero-v2__title  { font-size: clamp(2.1rem, 8vw, 3.2rem); max-width: 100%; }
  .hero-v2__sub    { font-size: 1rem; line-height: 1.6; }
  .hero-v2__marker { font-size: 0.7rem; }

  /* Pull-quote: kleinere min, meer ademruimte links/rechts */
  .pq-quote   { font-size: clamp(1.3rem, 5.5vw, 2rem); line-height: 1.4; }
  .pq-content { padding: 0 1.25rem; gap: 1rem; }
  .pq-cite    { font-size: 0.9rem; }

  /* Over-mij hero portret + tagline op één kolom */
  .om-hero__name    { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .om-hero__tagline { font-size: 0.95rem; line-height: 1.6; }

  /* Diensten "Flexibel inzetbaar" titel + items */
  .wid-sticky__title { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .wid-item__num     { font-size: 1.4rem; }
  .wid-item__title   { font-size: 1.1rem; }

  /* Projecten featured + cards */
  .cc-head__title     { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cc-featured__title { font-size: 1.2rem; line-height: 1.3; }
  .cc-featured__body  { padding: 1.5rem; }
  .cc-card__body      { padding: 1.25rem; }

  /* Tijdlijn-kaarten passend in viewport */
  .tl-section__title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .tl-card           { padding: 1.25rem 1.25rem; }
  .tl-card__title    { font-size: 1.05rem; }
}

/* iPhone SE (320-375px) — extra veiligheid */
@media (max-width: 380px) {
  .hero-v2__title { font-size: clamp(1.85rem, 9vw, 2.6rem); }
  .pq-quote       { font-size: clamp(1.15rem, 6vw, 1.7rem); }
  .om-hero__name  { font-size: 1.55rem; }
  .container      { padding-left: 1.1rem; padding-right: 1.1rem; }
}

/* TOUCH-TARGETS — minimaal 44×44px op alle interactieve elementen
   die op mobile bereikbaar zijn (WCAG 2.1 AA / Apple HIG). */
@media (max-width: 768px) {
  /* Hamburger: groter tap-vlak, maar zelfde visuele uitstraling */
  .nav__toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.7rem;
  }

  /* NL/EN buttons: tap-target uitbreiden zonder visueel groter te worden */
  .lang-btn {
    min-height: 44px;
    min-width: 32px;
    padding: 0.5rem 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .lang-divider { line-height: 44px; }

  /* Carousel nav-knoppen: 44×44 minimum */
  .carousel__nav { width: 44px; height: 44px; }

  /* Carousel dots: visueel klein, tap-vlak 44px via padding */
  .carousel__dot {
    width: 10px; height: 10px;
    padding: 17px 12px;       /* 17+10+17 = 44px hoogte, 12+10+12 = 34px breed */
    background-clip: content-box;
    -webkit-background-clip: content-box;
    box-sizing: content-box;
  }
  .carousel__dot.is-active {
    width: 28px;
    padding: 17px 8px;        /* 8+28+8 = 44px breed */
  }

  /* Form-buttons + CTA's */
  .btn, .pill-cta, .pill-secondary, .ct-pill,
  .wid-sticky__cta, .tl-cta__link, .cc-featured__cta,
  .wid-cta-block__link {
    min-height: 44px;
    align-items: center;
  }

  /* Footer-links wat ruimer voor tap */
  .footer__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.25rem 0;
  }
}

/* iOS dynamic viewport-fix — voorkomt dat hero achter Safari adresbalk valt */
@supports (height: 100svh) {
  .hero-v2  { min-height: 100svh; }
  .pq-section { min-height: 90svh; }
}

/* Voorkom horizontale scroll door image overflow op smalle schermen */
@media (max-width: 480px) {
  body { overflow-x: hidden; }
  .om-hero__bg,
  .pq-bg { background-position: center center; }
}

/* Verklein de proto-banner op mobile (en eigenlijk verbergen — staat productie in de weg)
   Voor nu: alleen visueel kleiner zodat hij niet over content valt. */
@media (max-width: 768px) {
  .proto-banner {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ===========================
   FASE 4 — ACCESSIBILITY
=========================== */

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 1rem;
}

/* Focus-visible: zichtbare focus-ring voor toetsenbordnavigatie */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Verwijder standaard outline alleen wanneer :focus-visible ondersteund wordt */
:focus:not(:focus-visible) {
  outline: none;
}

/* Knopspecifieke focus-states */
.btn:focus-visible,
.nav__cta:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
}

.scroll-top:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* prefers-reduced-motion: schakel nieuwe animaties uit */
@media (prefers-reduced-motion: reduce) {
  /* Page fade-in */
  body {
    opacity: 1 !important;
    transition: none !important;
  }

  /* Scroll-to-top knop: geen transform-animatie */
  .scroll-top {
    transition: opacity 0.15s ease !important;
    transform: none !important;
  }
  .scroll-top.visible {
    transform: none !important;
  }

  /* Stats teller: toon eindwaarde direct */
  .stat__num {
    transition: none !important;
  }

  /* Nav underline: geen transitie */
  .nav__links li a::after {
    transition: none !important;
  }

  /* Card hover-lift: geen transform */
  .dienst-kaart,
  .cert-kaart,
  .testimonial-kaart,
  .innovally-project__card {
    transition: none !important;
  }
  .dienst-kaart:hover,
  .cert-kaart:hover,
  .testimonial-kaart:hover,
  .innovally-project__card:hover {
    transform: none !important;
  }
}

/* ===========================
   PROJECTEN — HERO BLOK
=========================== */
.cc-hero {
  position: relative;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.cc-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('IMG_7066.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: -1;
}
.cc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,0.85) 0%, rgba(15,25,35,0.7) 50%, rgba(43,108,176,0.6) 100%);
  z-index: -1;
}
.cc-hero__inner {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 720px;
}
.cc-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.02em;
}
.cc-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.cc-hero .section-marker { color: rgba(255,255,255,0.9); }
.cc-hero .section-marker::before { background: rgba(255,255,255,0.6); }

/* ===========================
   REFERENTIES (homepage)
=========================== */
.testimonials-section { background: #fff; padding: clamp(4rem, 8vw, 7rem) 0; }
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.reference-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
}
.reference-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 25, 35, 0.08);
}
.reference-card__org {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.reference-card__name {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}
.reference-card__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.references-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
.references-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media (max-width: 900px) { .references-grid { grid-template-columns: 1fr; } }

/* ===========================
   CERTIFICATEN (homepage)
=========================== */
.certs-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 25, 35, 0.08);
}
.cert-card__year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.cert-card__title {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}
.cert-card__issuer {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.cert-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 0.4rem;
}
@media (max-width: 900px) { .certs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .certs-grid { grid-template-columns: 1fr; } }

/* ===========================
   OVER MIJ — NAAST WERK / INTERESSES
=========================== */
.om-extra {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.om-extra__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tl-accent);
  margin-bottom: 0.7rem;
}
.om-extra__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--tl-muted);
}
@media (max-width: 640px) {
  .om-extra { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ===========================
   FASE 4 — A11Y: FOCUS, MOTION, CONTRAST, SKIP-LINK
=========================== */

/* Skip-link voor toetsenbord-gebruikers (verschijnt op tab) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid #fff;
  outline-offset: 0;
}

/* Universele focus-ring voor toetsenbord-navigatie (focus-visible alleen) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Sterkere focus op donkere achtergronden (header, hero, carrousel) */
body.has-hero-v2 #header a:focus-visible,
body.has-ct-hero #header a:focus-visible,
body.has-om-hero #header a:focus-visible,
body.has-solid-nav #header a:focus-visible,
.carousel a:focus-visible,
.carousel button:focus-visible,
.pill-secondary:focus-visible {
  outline-color: #fff;
  outline-offset: 3px;
}

/* Specifieke focus voor pill-knoppen (rond) */
.pill-cta:focus-visible,
.pill-secondary:focus-visible,
.ct-pill:focus-visible,
.btn:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 3px;
  border-radius: 999px;
}

/* Hamburger en lang-buttons */
.nav__toggle:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
  border-radius: 4px;
}
.lang-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 3px;
}

/* Uitgebreide reduced-motion: dekt alle entrance-animaties en hover-lifts */
@media (prefers-reduced-motion: reduce) {
  /* Alle animaties uitschakelen */
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* Entrance-states direct laten verschijnen ipv fade-up */
  .hero-v2__title .word,
  .hero-v2__sub,
  .hero-v2__actions,
  .pq-quote .word,
  .pq-cite,
  .tl-card,
  .tl-item,
  .cc-card,
  .cc-featured,
  .wid-item,
  .wid-cta-block,
  .fade-up,
  .om-hero__content,
  .om-hero__portrait {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  /* Word-stagger-kleuren direct goed */
  .hero-v2__title .word { color: #fff !important; }
  .hero-v2__title .word--accent { color: #4A90E2 !important; }
  .pq-quote .word { color: #fff !important; }
  .pq-quote .word--accent { color: #4A90E2 !important; }

  /* Pulserende dots stilzetten */
  .pill-cta__dot,
  .tl-dot--active {
    animation: none !important;
  }

  /* Carrousel niet auto-advancen + transitie weg */
  .carousel__slide { transition: none !important; }
}

/* Body-class .reduce-motion (door JS gezet als alternatief) — zelfde effect */
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
}
