/* =============================================
   Creation.nl — Shared Styles
   ============================================= */

:root {
  --zwart: #111111;
  --wit: #ffffff;
  --off-white: #f7f5f2;
  --lichtgrijs: #e8e5e0;
  --rood: #E41E24;
  --oranje: #F07020;
  --geel: #FDC501;
  --gradient: linear-gradient(135deg, #FDC501 0%, #F07020 50%, #E41E24 100%);
  --tekst: #3d3830;
  --muted: #9a9490;
  --donker-warm: #2a2520;
  --font-sans: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius-btn: 8px;
  --radius-card: 12px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--tekst);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; }

.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gradient);
  color: var(--wit);
  box-shadow: 0 4px 24px rgba(228, 30, 36, 0.3);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(228, 30, 36, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--wit);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover { border-color: var(--wit); background: rgba(255,255,255,0.08); }
.btn--outline {
  background: transparent;
  color: var(--zwart);
  border: 2px solid var(--zwart);
}
.btn--outline:hover { background: var(--zwart); color: var(--wit); }

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

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav:not(.scrolled) { background: var(--off-white); }
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-weight: 600; font-size: 20px; color: var(--zwart); }
.nav__logo img { height: 32px; width: auto; }
.nav__logo span { color: var(--zwart); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a { font-family: var(--font-sans); font-size: 15px; font-weight: 400; color: var(--tekst); transition: color 0.2s; }
.nav__links a:hover { color: var(--rood); }
.nav__links a.active { color: var(--rood); font-weight: 600; }
.nav__cta {
  font-size: 14px !important; font-weight: 600 !important;
  padding: 10px 20px; border-radius: var(--radius-btn);
  background: var(--gradient); color: var(--wit) !important; -webkit-text-fill-color: var(--wit);
}
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--zwart); margin: 6px 0; border-radius: 1px; }

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--off-white);
  padding: 120px 0 72px;
}
.hero .breadcrumb { margin-bottom: 40px; }
.hero__content { max-width: 720px; }
.hero .label { color: var(--rood); }
.hero h1 { margin-bottom: 28px; color: var(--zwart); }
.hero .lead { color: var(--tekst); margin-bottom: 40px; max-width: 620px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   SHOWCASE (tabs + visual)
============================================= */
.showcase {
  padding: 100px 0;
  background: var(--wit);
}
.showcase__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.showcase .label { color: var(--rood); }
.showcase__header h2 { margin-bottom: 16px; }

.showcase__visual {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
.showcase__visual-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.showcase__slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.showcase__slide--1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.showcase__slide--2 {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 50%, #0f3460 100%);
}
.showcase__slide--3 {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1b4332 100%);
}
.showcase__slide-text {
  color: var(--wit);
  text-align: center;
  z-index: 1;
  padding: 40px;
}
.showcase__slide-text h3 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  max-width: 600px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.showcase__slide-text p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}
.showcase__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase__slide--has-img .showcase__slide-text {
  position: relative;
  z-index: 2;
}
.showcase__slide--has-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.showcase__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
  background: var(--off-white);
  border-radius: 28px;
  padding: 6px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.showcase__tab {
  padding: 10px 24px;
  border: none;
  background: transparent;
  border-radius: 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--tekst);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.showcase__tab:hover { color: var(--zwart); }
.showcase__tab.active {
  background: var(--zwart);
  color: var(--wit);
  font-weight: 600;
}

.showcase__desc {
  max-width: 680px;
  margin: 36px auto 0;
  text-align: center;
  position: relative;
}
.showcase__desc-item {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.showcase__desc-item.active {
  opacity: 1;
  pointer-events: auto;
}
.showcase__desc-item p {
  line-height: 1.75;
}
.showcase__desc-item p strong {
  color: var(--zwart);
}

/* =============================================
   HORIZONTAL SCROLL CARDS
============================================= */
.hscroll-section {
  padding: 120px 0;
  background: var(--off-white);
  overflow: hidden;
}
.hscroll-section__header {
  max-width: 680px;
  margin-bottom: 56px;
  padding: 0 40px;
  max-width: calc(var(--container));
  margin-left: auto;
  margin-right: auto;
}
.hscroll-section .label { color: var(--rood); }
.hscroll-section__header h2 { margin-bottom: 20px; }
.hscroll-section__header .lead { color: var(--muted); }

.hscroll__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 calc(50vw - min(780px, 85vw) / 2) 24px;
  scrollbar-width: none;
}
.hscroll__track::-webkit-scrollbar { display: none; }

.hscroll__spacer {
  display: none;
}

.hscroll__card {
  flex-shrink: 0;
  width: min(780px, 85vw);
  background: var(--wit);
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.hscroll__card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

.hscroll__card-top {
  padding: 40px 40px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hscroll__card-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: #eeebe7;
  line-height: 1;
}
.hscroll__card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hscroll__card-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--zwart);
  line-height: 1.2;
}

.hscroll__card-body {
  padding: 28px 40px 44px;
}
.hscroll__card-body p {
  color: var(--tekst);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.hscroll__card-body p:last-child { margin-bottom: 0; }
.hscroll__card-body strong { color: var(--zwart); }

.hscroll__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.hscroll__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wit);
  border-radius: 20px;
  padding: 0 16px;
  height: 40px;
}
.hscroll__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lichtgrijs);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.hscroll__dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--zwart);
}
.hscroll__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wit);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zwart);
  transition: background 0.2s;
}
.hscroll__arrow:hover { background: var(--lichtgrijs); }

/* =============================================
   DELIVERABLES
============================================= */
.deliverables {
  background: var(--zwart);
  color: var(--wit);
  padding: 120px 0;
}
.deliverables__header { max-width: 600px; margin-bottom: 64px; }
.deliverables .label { color: var(--geel); }
.deliverables h2 { color: var(--wit); margin-bottom: 20px; }
.deliverables__header .lead { color: rgba(255,255,255,0.6); }

.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 64px;
}
.deliverable {
  padding: 0;
}
.deliverable h3 { font-size: 26px; color: var(--wit); margin-bottom: 10px; }
.deliverable p { font-size: 20px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* =============================================
   HOW WE WORK
============================================= */
.werkwijze { padding: 120px 0; background: var(--off-white); }
.werkwijze__header { max-width: 600px; margin-bottom: 64px; }
.werkwijze h2 { margin-bottom: 20px; }
.werkwijze__items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px; }
.werkwijze__item {
  background: var(--wit); border-radius: var(--radius-card); padding: 32px 28px;
}
.werkwijze__icon { width: 100px; height: 100px; margin-bottom: 16px; display: block; }
.werkwijze__check { display: none; }
.werkwijze__item p { font-size: 20px; line-height: 1.65; color: var(--tekst); }
.werkwijze__item strong { color: var(--zwart); }

/* =============================================
   CASE
============================================= */
.case { padding: 120px 0; background: var(--wit); }
.case__inner {
  background: var(--zwart); border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.case__content { padding: 64px 56px; color: var(--wit); }
.case .label { color: var(--geel); }
.case h2 { color: var(--wit); margin-bottom: 20px; font-size: clamp(32px, 3.5vw, 44px); }
.case__stats { display: flex; gap: 40px; margin: 32px 0; }
.case__stat-number {
  font-family: var(--font-display); font-size: 40px; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.case__stat-label { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.case__quote {
  font-style: italic; color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1.65;
  border-left: 3px solid; border-image: var(--gradient) 1; padding-left: 20px; margin-top: 32px;
}
.case__quote cite { display: block; font-style: normal; font-weight: 600; color: rgba(255,255,255,0.5); margin-top: 12px; font-size: 14px; }
.case__links { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.case .btn--outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.case .btn--outline:hover { background: #fff; color: var(--zwart); border-color: #fff; }
.case__all-link { color: rgba(255,255,255,0.6); font-size: 15px; transition: color 0.2s; }
.case__all-link:hover { color: #fff; }
.case__visual {
  background: var(--donker-warm);
  display: flex; align-items: center; justify-content: center;
  min-height: 400px; color: var(--muted); font-size: 15px; text-align: center; padding: 0; overflow: hidden; border-radius: 12px;
}
.case__visual a { display: block; width: 100%; height: 100%; }
.case__visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.case__visual a:hover img { transform: scale(1.03); }

/* =============================================
   FAQ
============================================= */
.faq { padding: 120px 0; background: var(--wit); }
.faq .container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.faq__header { max-width: 400px; position: sticky; top: 120px; }
.faq h2 { margin-bottom: 16px; }
.faq__header .lead { color: var(--muted); }
.faq__list { max-width: none; }
.faq__item { border-bottom: 1px solid var(--lichtgrijs); }
.faq__question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 28px 0; font-family: var(--font-sans); font-size: 20px; font-weight: 600;
  color: var(--zwart); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; line-height: 1.4;
}
.faq__question:hover { color: var(--rood); }
.faq__icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--lichtgrijs);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, border-color 0.3s; font-size: 14px; color: var(--muted);
}
.faq__item.active .faq__icon { transform: rotate(45deg); border-color: var(--rood); color: var(--rood); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item.active .faq__answer { max-height: 300px; }
.faq__answer p { padding-bottom: 28px; color: var(--tekst); line-height: 1.75; max-width: 680px; }

/* =============================================
   CTA
============================================= */
.cta {
  background: var(--zwart); padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(240,112,32,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta .label { color: var(--geel); }
.cta h2 { color: var(--wit); margin-bottom: 20px; }
.cta .lead { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   SLIDE-IN CONTACT PANEL
============================================= */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 999;
  pointer-events: none;
  transition: background 0.4s ease;
}
.panel-overlay.open {
  background: rgba(0,0,0,0.6);
  pointer-events: auto;
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 66.666vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.6s;
}
.panel.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s 0s;
}

.panel__form {
  background: var(--wit);
  padding: 56px 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(250%);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.08s;
}
.panel.open .panel__form {
  transform: translateX(0);
  transition-delay: 0.08s;
}

.panel__info {
  transform: translateX(150%);
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
}
.panel.open .panel__info {
  transform: translateX(0);
  transition-delay: 0s;
}
.panel:not(.open) .panel__form {
  transition-delay: 0s;
}
.panel:not(.open) .panel__info {
  transition-delay: 0.1s;
}
.panel__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zwart);
  font-size: 18px;
  transition: background 0.2s;
  z-index: 10;
}
.panel__close:hover { background: var(--lichtgrijs); }

.panel__form .label { color: var(--rood); }
.panel__form h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--zwart);
  margin-bottom: 8px;
}
.panel__form-lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--zwart);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--lichtgrijs);
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--zwart);
  background: var(--wit);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rood);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group--url input {
  font-family: 'Inter', monospace;
}

.panel__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px 32px;
}
.form-success { text-align: center; padding: 40px 0; }
.form-success h3 { color: var(--zwart); margin-bottom: 8px; }
.form-success p { color: var(--muted); }
.panel__form .form-success h3 { color: var(--wit); }
.panel__form .form-success p { color: rgba(255,255,255,0.6); }

.panel__info {
  background: var(--zwart);
  color: var(--wit);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.panel__info::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228,30,36,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.panel__info-inner { position: relative; z-index: 1; }
.panel__info .label { color: var(--geel); }
.panel__info h3 {
  font-size: 28px;
  color: var(--wit);
  margin-bottom: 32px;
}

.panel__info-item {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}
.panel__info-item h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.panel__info-item p {
  font-size: 16px;
  color: var(--wit);
  line-height: 1.5;
}
.panel__info-item a {
  color: var(--wit);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.panel__info-item a:hover { text-decoration-color: var(--wit); }

body.panel-open { overflow: hidden; }

.footer {
  background: var(--zwart); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 20px; color: var(--wit);
}
.footer__logo img { height: 32px; width: auto; }
.footer__logo span { color: var(--wit); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.footer__brand p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.footer__social { display: flex; gap: 16px; margin-top: 8px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: background 0.2s, color 0.2s;
}
.footer__social a:hover { background: rgba(255,255,255,0.12); color: var(--wit); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer__col a { color: rgba(255,255,255,0.55); font-size: 15px; transition: color 0.2s; }
.footer__col a:hover { color: var(--wit); }
.footer__col p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.6; }
.footer__col p a { color: rgba(255,255,255,0.7); }
.footer__col p a:hover { color: var(--wit); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { color: var(--muted); font-size: 13px; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: var(--muted); font-size: 13px; transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }
body.menu-open { overflow: hidden; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .deliverables__grid { grid-template-columns: repeat(2, 1fr); }
  .hscroll__card { width: min(560px, 85vw); }
  .panel { width: 85vw; }
}
@media (max-width: 768px) {
  .panel {
    width: 100vw;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
  }
  .panel__form { padding: 40px 24px; }
  .panel__info { padding: 40px 24px; }
  .panel__close { top: 16px; right: 16px; }
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .showcase { padding: 80px 0; }
  .showcase__slide { aspect-ratio: 4 / 3; }
  .showcase__tabs { flex-wrap: wrap; border-radius: 16px; }
  .showcase__tab { font-size: 13px; padding: 8px 16px; }
  .hscroll-section { padding: 80px 0; }
  .hscroll-section__header { padding: 0 24px; }
  .hscroll__track { padding: 0 24px 24px; }
  .hscroll__spacer { display: none; }
  .deliverables { padding: 80px 0; }
  .deliverables__grid { grid-template-columns: 1fr; }
  .werkwijze { padding: 80px 0; }
  .werkwijze__items { grid-template-columns: 1fr; }
  .case__inner { grid-template-columns: 1fr; }
  .case__content { padding: 40px 28px; }
  .case__stats { gap: 24px; }
  .case__visual { min-height: 240px; }
  .faq { padding: 80px 0; }
  .faq .container { grid-template-columns: 1fr; }
  .faq__header { position: static; }
  .cta { padding: 80px 0; }
}

/* =============================================
   HOMEPAGE — HERO DARK VARIANT
============================================= */
.hero--dark {
  background: var(--zwart);
  padding: 120px 0 100px;
}
.hero--video {
  position: relative;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
}
.hero--video .container {
  position: relative;
  z-index: 1;
}
.hero--dark h1 { color: var(--wit); }
.hero--dark .lead { color: rgba(255,255,255,0.65); }
.hero--dark .label { color: var(--geel); }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.hero__trust-stars {
  color: var(--geel);
  letter-spacing: 2px;
}

/* =============================================
   HOMEPAGE — LOGO BAR
============================================= */
.logo-bar {
  padding: 48px 0;
  background: var(--wit);
  overflow: hidden;
}
.logo-bar__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.logo-bar__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.logo-bar__item {
  width: 132px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}
.logo-bar__item--wide {
  width: 190px;
}
.logo-bar__item img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =============================================
   HOMEPAGE — HERKENNING (pijnpunten)
============================================= */
.herkenning {
  padding: 120px 0;
  background: var(--off-white);
}
.herkenning__header {
  max-width: 600px;
  margin-bottom: 64px;
}
.herkenning .label { color: var(--rood); }
.herkenning h2 { margin-bottom: 20px; }
.herkenning__overgang {
  margin-top: 48px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--zwart);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pain-card {
  background: var(--wit);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
}
.pain-card h3 {
  font-size: 22px;
  color: var(--zwart);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pain-card p {
  color: var(--tekst);
  line-height: 1.7;
}

/* =============================================
   HOMEPAGE — OPLOSSING (donker)
============================================= */
.oplossing {
  padding: 120px 0;
  background: var(--zwart);
  color: var(--wit);
}
.oplossing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.oplossing .label { color: var(--geel); }
.oplossing h2 { color: var(--wit); margin-bottom: 24px; }
.oplossing__text { color: rgba(255,255,255,0.6); font-size: 20px; line-height: 1.7; margin-bottom: 40px; }
.oplossing__voordelen {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.voordeel {
  border-left: 3px solid;
  border-image: var(--gradient) 1;
  padding-left: 24px;
}
.voordeel h3 {
  font-size: 22px;
  color: var(--wit);
  margin-bottom: 8px;
}
.voordeel p {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  line-height: 1.6;
}

/* =============================================
   HOMEPAGE — DIENSTEN GRID
============================================= */
.diensten-home {
  padding: 120px 0;
  background: var(--wit);
}
.diensten-home__header {
  max-width: 640px;
  margin-bottom: 64px;
}
.diensten-home .label { color: var(--rood); }
.diensten-home h2 { margin-bottom: 20px; }
.diensten-home__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dienst-home-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.dienst-home-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.dienst-home-card h3 {
  font-size: 24px;
  color: var(--zwart);
  margin-bottom: 8px;
}
.dienst-home-card p {
  color: var(--tekst);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.dienst-home-card__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--rood);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.dienst-home-card:hover .dienst-home-card__link { gap: 12px; }

/* =============================================
   HOMEPAGE — CASES
============================================= */
.cases-home {
  padding: 120px 0;
  background: var(--zwart);
  color: var(--wit);
}
.cases-home__header {
  max-width: 600px;
  margin-bottom: 64px;
}
.cases-home .label { color: var(--geel); }
.cases-home h2 { color: var(--wit); margin-bottom: 20px; }
.cases-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--donker-warm);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.case-card__sector {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.case-card h3 { font-size: 22px; color: var(--wit); margin-bottom: 12px; }
.case-card__result {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.2;
}
.case-card p { color: rgba(255,255,255,0.5); line-height: 1.6; flex-grow: 1; }

/* =============================================
   HOMEPAGE — OVER JAN
============================================= */
.over-jan {
  padding: 120px 0;
  background: var(--wit);
}
.over-jan__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.over-jan .label { color: var(--rood); }
.over-jan h2 { margin-bottom: 24px; font-size: clamp(32px, 3.5vw, 48px); }
.over-jan__foto {
  background: var(--off-white);
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
}
.over-jan__tekst p {
  color: var(--tekst);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.over-jan__quote {
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: var(--zwart);
  border-left: 3px solid;
  border-image: var(--gradient) 1;
  padding-left: 24px;
  margin: 32px 0;
}
.over-jan__quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

/* =============================================
   HOMEPAGE — TESTIMONIALS
============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--off-white);
}
.testimonials__header {
  max-width: 600px;
  margin-bottom: 64px;
}
.testimonials .label { color: var(--rood); }
.testimonials h2 { margin-bottom: 20px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--wit);
  border-radius: var(--radius-card);
  padding: 40px 32px;
}
.testimonial-card blockquote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--tekst);
  margin-bottom: 24px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--zwart);
}
.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

/* =============================================
   NAVIGATION — GLOBAL LINKS
============================================= */
.nav__global-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__global-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--tekst);
  transition: color 0.3s;
}
.nav__global-links a:hover { color: var(--zwart); }

/* =============================================
   MOBILE MENU
============================================= */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--wit);
  z-index: 99;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--zwart);
  padding: 16px 0;
  border-bottom: 1px solid var(--lichtgrijs);
}
.nav__mobile-menu a.active { color: var(--rood); }
.nav__mobile-menu .nav__cta {
  margin-top: 24px;
  font-size: 18px !important;
  text-align: center;
  padding: 16px 24px;
  border: none;
}

@media (max-width: 768px) {
  .pain-cards { grid-template-columns: 1fr; }
  .oplossing__inner { grid-template-columns: 1fr; gap: 48px; }
  .diensten-home__grid { grid-template-columns: 1fr; }
  .cases-home__grid { grid-template-columns: 1fr; }
  .over-jan__inner { grid-template-columns: 1fr; gap: 40px; }
  .over-jan__foto { aspect-ratio: 16 / 9; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .herkenning { padding: 80px 0; }
  .oplossing { padding: 80px 0; }
  .diensten-home { padding: 80px 0; }
  .cases-home { padding: 80px 0; }
  .over-jan { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .hero--dark { padding: 100px 0 60px; }
  .hero__trust { flex-wrap: wrap; gap: 12px; }
  .nav__global-links { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .case__stats { flex-direction: column; gap: 16px; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .cta__buttons .btn { width: 100%; justify-content: center; }
  .case-overview-card__stats { flex-direction: column; gap: 12px; }
  .footer__top { grid-template-columns: 1fr; }
}

/* =============================================
   CASES OVERVIEW PAGE
============================================= */
/* ── Bento Cases Grid ── */
.bento-cases {
  padding: 48px 0 120px;
  background: var(--wit);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.bento-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: var(--wit);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
/* Span varianten */
.bento-card--col2 { grid-column: span 2; }
.bento-card--row2 { grid-row: span 2; }
.bento-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.05) 100%);
  transition: background 0.35s ease;
}
.bento-card:hover .bento-card__overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.1) 100%);
}
.bento-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}
.bento-card__tags {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  z-index: 3;
  max-width: 60%;
}
.bento-card__tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}
.bento-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--wit);
  margin-bottom: 16px;
}
.bento-card--col2 .bento-card__title {
  font-size: clamp(24px, 2.5vw, 36px);
}
.bento-card__sector {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.bento-card__stats {
  display: flex;
  gap: 24px;
}
.bento-card__num {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(135deg, #FDC501 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bento-card--col2 .bento-card__num {
  font-size: 18px;
}
.bento-card__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.bento-grid--4col {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
}
.bento-grid--4col .bento-card__title { font-size: 18px; }
.bento-grid--4col .bento-card__num { font-size: 22px; }
.bento-grid--4col .bento-card__stats { gap: 16px; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
  .bento-card--col2 { grid-column: span 2; }
  .bento-card--row2 { grid-row: span 1; }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .bento-card--col2 { grid-column: span 1; }
  .bento-card__content { padding: 28px 24px; }
  .bento-card__num { font-size: 24px; }
  .bento-card--col2 .bento-card__num { font-size: 26px; }
  .bento-cases { padding: 0 0 80px; }
}


/* =============================================
   CASE DETAIL PAGE
============================================= */

/* Hero */
.case-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
}
.case-hero > .container:last-of-type {
  flex: 1;
  display: flex;
  align-items: center;
}
.case-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.case-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}
.case-hero .container { position: relative; z-index: 2; width: 100%; }
.case-hero__content { max-width: 680px; }
.case-hero__breadcrumb-wrap { padding-top: 120px; }

/* Split hero: afbeelding boven, content eronder */
.case-hero-img {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
}
.case-hero-split {
  padding: 48px 0 64px;
}
.case-hero-split .breadcrumb {
  margin-bottom: 32px;
}
.case-hero-split .breadcrumb a { color: var(--muted); }
.case-hero-split .breadcrumb a:hover { color: var(--zwart); }
.case-hero-split .breadcrumb__sep { color: var(--lichtgrijs); }
.case-hero-split .breadcrumb span:last-child { color: var(--zwart); }
.case-hero-split__content { max-width: 720px; }
.case-hero-split .case-hero__tags span {
  color: var(--zwart);
  background: var(--off-white);
  border-color: var(--lichtgrijs);
}
.case-hero-split .case-hero__sector { color: var(--muted); }
.case-hero-split h1 {
  color: var(--zwart);
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 16px;
}
.case-hero-split .case-hero__lead {
  color: var(--tekst);
}
.case-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.case-hero__back:hover { color: #fff; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--rood); }
.breadcrumb__sep { color: var(--lichtgrijs); font-size: 11px; }
.breadcrumb span:last-child { color: var(--zwart); }
/* Donkere variant voor case-hero */
.case-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.case-hero .breadcrumb a:hover { color: #fff; }
.case-hero .breadcrumb__sep { color: rgba(255,255,255,0.2); }
.case-hero .breadcrumb span:last-child { color: rgba(255,255,255,0.7); }
.case-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.case-hero__tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
}
.case-hero__sector {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.case-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.case-hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}

/* Stats strip */
.case-stats-strip {
  background: var(--zwart);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.case-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.case-stat-block__num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.case-stat-block__label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* Generic case sections */
.case-section {
  padding: 80px 0;
}
.case-section--dark {
  background: var(--zwart);
  color: var(--wit);
}
.case-section--dark h2,
.case-section--dark h3 { color: var(--wit); }
.case-section--dark p { color: rgba(255,255,255,0.7); }
.case-section--light {
  background: var(--off-white);
}
.case-section__header {
  max-width: 640px;
  margin-bottom: 48px;
}
.case-section__header h2 { margin-top: 4px; }
.case-section__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.case-section__main .label { margin-bottom: 12px; }
.case-section__main h2 { margin-bottom: 24px; }
.case-section__main p {
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--tekst);
}

/* Info card */
.case-info-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px;
  position: sticky;
  top: 100px;
}
.case-info-card h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 24px;
}
.case-info-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--lichtgrijs);
}
.case-info-card__row:last-child { border-bottom: none; }
.case-info-card__row--highlight { padding-top: 20px; }
.case-info-card__label {
  font-size: 14px;
  color: var(--muted);
}
.case-info-card__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--zwart);
  text-align: right;
}
.case-info-card__value--gradient {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Aanpak steps */
.case-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.case-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
}
.case-step__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.case-step h3 { margin-bottom: 12px; }
.case-step p { font-size: 15px; line-height: 1.7; }

/* Resultaten detail */
.case-results-detail {
  max-width: 720px;
}
.case-results-detail p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--tekst);
}

/* Quote */
.case-quote {
  padding: 80px 0;
  background: var(--off-white);
}
.case-quote__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.case-quote__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 0.8;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.case-quote blockquote p {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--zwart);
  font-style: italic;
  margin-bottom: 24px;
}
.case-quote cite {
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .case-stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .case-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .case-hero { min-height: 50vh; }
  .case-hero h1 { font-size: 36px; }
  .case-hero__lead { font-size: 16px; }
  .case-hero__content { padding-bottom: 48px; }
  .case-hero__breadcrumb-wrap { padding-top: 80px; }
  .case-hero__tags { margin-bottom: 20px; }
  .case-hero-img { height: 260px; }
  .case-hero-split { padding: 32px 0 48px; }
  .case-stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .case-stat-block__num { font-size: 32px; }
  .case-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .case-info-card { position: static; }
  .case-section { padding: 60px 0; }
  .case-quote { padding: 60px 0; }
}

/* Case prev/next nav */
.case-nav {
  border-top: 1px solid var(--lichtgrijs);
}
.case-nav__inner {
  display: flex;
  justify-content: space-between;
}
.case-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 40px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.case-nav__link:hover { opacity: 0.7; }
.case-nav__link--next { align-items: flex-end; margin-left: auto; }
.case-nav__dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.case-nav__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--zwart);
}
@media (max-width: 480px) {
  .case-nav__inner { flex-direction: column; gap: 0; }
  .case-nav__link--next { align-items: flex-start; border-top: 1px solid var(--lichtgrijs); }
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-hero {
  background: var(--off-white);
  padding: 120px 0 72px;
}
.contact-hero__inner { max-width: 640px; }
.contact-hero .label { color: var(--rood); }
.contact-hero h1 { margin-bottom: 20px; }
.contact-hero .lead { color: var(--tekst); }

.contact-content {
  padding: 80px 0 120px;
  background: var(--wit);
}
.contact-content__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 8px;
}
.contact-form__lead {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info__card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
}
.contact-info__card h3 {
  font-size: 22px;
  margin-bottom: 28px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}
.contact-info__item:last-child { margin-bottom: 0; }
.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wit);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rood);
}
.contact-info__item h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 18px;
  font-weight: 500;
  color: var(--zwart);
  line-height: 1.5;
}
a.contact-info__value:hover { color: var(--rood); }

.contact-info__jan {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.contact-info__jan-foto {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--donker-warm);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-info__quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.contact-info__quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-top: 12px;
}

.contact-map {
  background: var(--off-white);
  line-height: 0;
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s ease;
}
.contact-map:hover iframe {
  filter: grayscale(0%) contrast(1);
}

@media (max-width: 768px) {
  .contact-hero { padding: 100px 0 48px; }
  .contact-content { padding: 60px 0 80px; }
  .contact-content__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-map iframe { height: 260px; }
}

/* =============================================
   CREATION (OVER) PAGE
============================================= */
.about-hero {
  background: var(--off-white);
  padding: 120px 0 72px;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-hero .label { color: var(--rood); }
.about-hero h1 { margin-bottom: 24px; }
.about-hero .lead { color: var(--tekst); max-width: 520px; }
.about-hero__foto {
  background: var(--lichtgrijs);
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
}

.fact-bar {
  background: var(--zwart);
  padding: 56px 0;
}
.fact-bar__inner {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.fact-bar__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact-bar__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.fact-bar__label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.about-story {
  padding: 120px 0;
  background: var(--wit);
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.about-story .label { color: var(--rood); }
.about-story h2 { margin-bottom: 24px; }
.about-story p {
  color: var(--tekst);
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-story__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--zwart);
  border-left: 3px solid;
  border-image: var(--gradient) 1;
  padding-left: 24px;
  margin-bottom: 32px;
}

.about-approach {
  padding: 120px 0;
  background: var(--off-white);
}
.about-approach__header {
  max-width: 600px;
  margin-bottom: 64px;
}
.about-approach .label { color: var(--rood); }
.about-approach h2 { margin-bottom: 20px; }
.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.about-approach__item {
  background: var(--wit);
  border-radius: var(--radius-card);
  padding: 36px 28px;
}
.about-approach__item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.about-approach__item p {
  color: var(--tekst);
  font-size: 18px;
  line-height: 1.7;
}

.about-clients {
  padding: 120px 0;
  background: var(--wit);
}
.about-clients__header {
  max-width: 600px;
  margin-bottom: 56px;
}
.about-clients .label { color: var(--rood); }
.about-clients h2 { margin-bottom: 16px; }
.about-clients .lead { color: var(--muted); }
.about-clients__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.about-clients__logo {
  width: 132px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}
.about-clients__logo--wide { width: 190px; }
.about-clients__logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-hero { padding: 100px 0 48px; }
  .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero__foto { aspect-ratio: 16 / 9; }
  .about-story { padding: 80px 0; }
  .about-story__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-approach { padding: 80px 0; }
  .about-approach__grid { grid-template-columns: 1fr; }
  .about-clients { padding: 80px 0; }
  .fact-bar__inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
}

/* ─── Gevulde fotokaders (portret Jan) ─── */
.over-jan__foto--filled,
.about-hero__foto--filled { overflow: hidden; padding: 0; border-radius: var(--radius-card); background: none; }
.over-jan__foto--filled picture,
.about-hero__foto--filled picture { width: 100%; height: 100%; display: block; }
.over-jan__foto--filled img,
.about-hero__foto--filled img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; border-radius: var(--radius-card); }

/* ─── Contact-hero met foto (zelfde grid als contact-content eronder) ─── */
.contact-hero__inner--met-foto {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-hero__foto { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 5 / 4; }
.contact-hero__foto picture { display: block; width: 100%; height: 100%; }
.contact-hero__foto img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; border-radius: var(--radius-card); }
@media (max-width: 768px) {
  .contact-hero__inner--met-foto { grid-template-columns: 1fr; gap: 32px; }
  .contact-hero__foto { max-width: 280px; aspect-ratio: 4 / 5; }
}
