/* ============================================
   Q-TEAM - Clone of wearefirst.nl
   Primary: #053576 | Text: #F6D3D0
   h1 font: DM Serif Display (sub for Reckless Neue)
   Case titles: Barlow Condensed (sub for Tusker Grotesk)
   Body: DM Sans (sub for TT Commons Pro)
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #053576;
  --color-primary-dark: #03234e;
  --color-text-light: #F5EFE0;
  --color-white: #ffffff;
  --color-pink: #F2B8B0;
  --color-accent: #FF6B35;
  --color-accent-dark: #E5521F;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-title: 'Barlow Condensed', 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  /* Firefox themed scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #FF6B35 #053576;
}

/* Webkit (Chrome/Safari/Edge) themed scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: #053576;
}
::-webkit-scrollbar-thumb {
  background: #FF6B35;
  border-radius: 100px;
  border: 3px solid #053576;
}
::-webkit-scrollbar-thumb:hover {
  background: #E5521F;
}
::-webkit-scrollbar-corner {
  background: #053576;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-light);
  background: var(--color-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Accessibility: skip link */
.skipLink {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skipLink:focus {
  top: 16px;
}

/* Focus-visible outlines for keyboard nav */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Cursor pointer op alle klikbare elementen */
.case, .game, .member, .hero__cta, .cta__btn, .stickyBar__cta, .footer__contactMail, .footer__contactLinkedIn, .footer__partnersRow a {
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

address {
  font-style: normal;
}

.wrapper {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 860px) {
  .wrapper { padding: 0 24px; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
}

.btn--outline:hover {
  background: var(--color-text-light);
  color: var(--color-primary);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
}

.btn--outline-dark:hover {
  background: var(--color-text-light);
  color: var(--color-primary);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: var(--color-primary);
  padding: 16px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__logo {
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 2px;
}

.nav__menuToggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__menuToggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__menu {
  display: flex;
  gap: 32px;
}

.nav__menu a {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width 0.3s ease;
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__social {
  display: flex;
  gap: 16px;
}

.nav__social a {
  color: var(--color-white);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav__social a:hover {
  opacity: 1;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  text-align: center;
}

.mobile-menu li {
  margin-bottom: 24px;
}

.mobile-menu a {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--color-primary);
  color: var(--color-text-light);
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 60px;
  max-width: 600px;
  margin-left: auto;
}

.hero__header h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: var(--color-text-light);
}

.hero__content p {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero__highlight {
  font-weight: 500;
  opacity: 1 !important;
  margin-bottom: 32px !important;
}

.hero__cases {
  position: relative;
  overflow: hidden;
}

/* Video background */
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__videoOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 70, 0.3);
  z-index: 1;
}

.hero__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slideInfo {
  position: absolute;
  bottom: 80px;
  left: 40px;
  color: var(--color-white);
  z-index: 2;
}

.hero__slideBrand {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.hero__slideTitle {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 1px;
}

.hero__slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 30, 70, 0.7), transparent);
  pointer-events: none;
}

.hero__caseBtn {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 3;
}

.hero__progress {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero__progressBar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.hero__progressBar::after {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.hero__progressBar.active::after {
  width: 100%;
  transition: width 5s linear;
}

.hero__progressBar.done::after {
  width: 100%;
  transition: none;
}

/* ============================================
   CASES SECTION - dark blue bg like original
   ============================================ */

.cases {
  padding: 160px 0;
  background: var(--color-primary);
  color: var(--color-text-light);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.cases__intro {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
  padding-right: 20px;
  align-self: start;
}
.cases__all {
  grid-column: 4 / -1;
  justify-content: flex-end !important;
  align-items: center;
}

.cases__heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--color-white);
}

.cases__intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-light);
  opacity: 0.85;
}

.case {
  display: block;
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-white);
}
/* 3 cases naast intro: elk 3 cols in 12-col grid */

.case__img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
}

.case__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}

.case:hover .case__img img {
  transform: scale(1.05);
}

.case__text {
  padding: 16px 0;
}

.case__text h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-white);
}

.case__text h3 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
}

.cases__all {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============================================
   SAMENWERKEN / PARTNERS SECTION
   ============================================ */

.partners {
  padding: 100px 0;
  background: var(--color-primary);
  color: var(--color-text-light);
}

.partners__header {
  text-align: left;
  margin-bottom: 60px;
}

.partners__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.partners__sub {
  font-size: 17px;
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 239, 224, 0.06);
  border: 1px solid rgba(245, 239, 224, 0.12);
  border-radius: 4px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.partners__logo:hover {
  background: rgba(245, 239, 224, 0.1);
  border-color: rgba(245, 239, 224, 0.25);
  transform: translateY(-2px);
}

.partners__logo svg {
  width: 120px;
  height: 36px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.partners__logo:hover svg {
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__logo {
  font-family: var(--font-body);
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--color-white);
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer__col--nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col--nav a {
  font-size: 15px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer__col--nav a:hover {
  opacity: 1;
}

.footer__col--contact address {
  font-size: 15px;
  line-height: 1.7;
}

.footer__col--contact address p {
  margin-bottom: 8px;
}

.footer__col--contact a {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer__col--contact a:hover {
  opacity: 1;
}

.footer__socialLinks {
  display: flex;
  gap: 16px;
}

.footer__socialLinks a {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer__socialLinks a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  opacity: 0.85;
}

.footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__text {
    padding: 120px 40px 60px;
    max-width: 100%;
    margin-left: 0;
  }

  .hero__cases {
    height: 60vh;
    min-height: 400px;
  }

  .cases__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .cases__intro {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .case {
    grid-column: span 3;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 24px;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav.scrolled {
    padding: 16px 24px;
  }

  .nav__menu,
  .nav__social {
    display: none;
  }

  .nav__menuToggle {
    display: flex;
  }

  .hero__text {
    padding: 100px 24px 40px;
  }

  .hero__header h1 {
    font-size: 32px;
  }

  .hero__cases {
    height: 50vh;
    min-height: 350px;
  }

  .hero__slideTitle {
    font-size: 24px;
  }

  .cases {
    padding: 80px 0;
  }

  .cases__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cases__intro {
    grid-column: 1;
    grid-row: auto;
  }

  .case {
    grid-column: span 1;
  }

  .case__text h3 {
    font-size: 20px;
  }

  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners {
    padding: 60px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__header h1 {
    font-size: 28px;
  }

  .cases__grid {
    grid-template-columns: 1fr;
  }

  .case {
    grid-column: span 1;
  }
}

/* ============================================
   Q-TEAM OVERRIDES
   - Navigatie verborgen (gebruikerswens: geen menu)
   - Hero image ronder + donkerder
   ============================================ */

.nav,
.mobile-menu {
  display: none !important;
}

/* Zonder nav mag de hero tekst wat minder topruimte hebben */
.hero__text {
  padding-top: 80px;
}

/* Rounded, floating hero card */
.hero__cases {
  border-radius: 4px;
  margin: 40px 40px 40px 0;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

/* Donkerder beeld over video + carousel */
.hero__videoOverlay {
  background: rgba(0, 0, 0, 0.55);
}

.hero__slide img {
  filter: brightness(0.88) saturate(1.05) contrast(1.05);
}

/* Onder-gradient iets lichter nu het beeld meer als foto leesbaar is */
.hero__slide::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
}

@media (max-width: 960px) {
  .hero__cases {
    margin: 0 20px 20px 20px;
    border-radius: 4px;
  }
  .hero__text {
    padding-top: 60px;
  }
}

/* ============================================
   LOGO IN HERO
   ============================================ */
.hero__text {
  position: relative;
}
.hero__logo {
  position: absolute;
  top: 40px;
  left: 4vw;
  width: clamp(56px, 10vw, 160px);
  height: auto;
  display: block;
  z-index: 2;
}

/* ============================================
   QUANTUM SECTION
   ============================================ */
.quantum {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 120px 0;
}
.quantum__header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.quantum__heading {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.quantum__header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}
.quantum__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quantum__card {
  border: 1px solid rgba(5, 53, 118, 0.15);
  border-radius: 4px;
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.quantum__card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}
.quantum__num {
  display: block;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 20px;
}
.quantum__card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
}
.quantum__card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 160px 0;
}
.team__header {
  max-width: 900px;
  margin: 0 0 64px;
  text-align: left;
}
.team__heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.team__header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 211, 208, 0.2);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.team__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.team__card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 10px;
}
.team__card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ============================================
   JOBS / WERKEN BIJ SECTION
   ============================================ */
.jobs {
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 120px 0;
}
.jobs__header {
  max-width: 720px;
  margin: 0 auto 64px;
}
.jobs__heading {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.jobs__header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}
.jobs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job {
  display: block;
  border: 1px solid rgba(5, 53, 118, 0.15);
  border-radius: 4px;
  padding: 28px 32px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.job:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
}
.job__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.job__type,
.job__location {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(5, 53, 118, 0.08);
}
.job__location {
  background: transparent;
  border: 1px solid rgba(5, 53, 118, 0.2);
}
.job h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
}
.job p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.8;
  margin-bottom: 20px;
}
.job__cta {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ============================================
   RESPONSIVE: quantum / team / jobs
   ============================================ */
@media (max-width: 960px) {
  .quantum,
  .team,
  .jobs {
    padding: 80px 0;
  }
  .quantum__grid,
  .team__grid,
  .jobs__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__logo {
    width: 56px;
    margin-bottom: 24px;
  }
}

/* ============================================
   GEN Z FONT OVERRIDES
   Bolder, upright, trendier. Geen italic, geen 300.
   ============================================ */

body {
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Hero display heading: was 300 italic serif, nu 700 upright Bricolage */
.hero__header h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Alle section-headings (cases/partners/team/jobs/quantum) bolder + groter */
.cases__heading,
.partners__heading,
.quantum__heading,
.team__heading,
.jobs__heading {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: none;
}
.cases__heading {
  font-size: clamp(28px, 3vw, 48px) !important;
  line-height: 1.02;
  margin-bottom: 20px;
}

/* Case titles: grote chunky overlay text op de image */
.case__text h3 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(22px, 2.2vw, 34px) !important;
  line-height: 1.05;
}
.case__text h4 {
  font-family: var(--font-body);
  font-weight: 700;
}

/* Hero slide titles */
.hero__slideTitle {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero__slideBrand {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Card headings in new sections: no italic, heavier */
.quantum__card h3,
.team__card h3,
.job h3 {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Footer headings */
.footer h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Hero highlight sterker */
.hero__highlight {
  font-weight: 700;
}

/* Buttons bolder */
.btn {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================================
   LEFT FADE ON HERO IMAGE
   Zachte overgang van image naar blauwe tekstkolom
   ============================================ */
.hero__cases::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25%;
  background: linear-gradient(to right, var(--color-primary) 0%, rgba(5, 53, 118, 0.6) 40%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* SlideInfo moet boven de fade blijven */
.hero__slideInfo {
  z-index: 5 !important;
}

/* Hero: single column, FULL website width, massive h1 */
.hero {
  grid-template-columns: 1fr !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Hero video achtergrond */
.hero__videoBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.12;
  filter: saturate(0.3);
  pointer-events: none;
}
/* CTA avatar met foto */
.cta__avatar--photo {
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.cta__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__text {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 160px 4vw 120px;
  text-align: left;
}
.hero__header h1,
.hero__h1 {
  font-size: clamp(56px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 56px;
  display: block;
  width: 100%;
}
.hero__line {
  display: block;
  padding-bottom: 0.12em;
}
.hero__word {
  display: inline-block;
  padding-right: 0.12em;
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards;
  animation-delay: var(--d, 0s);
}
.hero__word--accent {
  color: var(--color-accent);
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero__content {
  max-width: 720px;
  opacity: 0;
  animation: heroFadeIn 0.6s ease forwards;
  animation-delay: 0.7s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 28px;
  border-radius: 4px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}
.hero__cta:hover {
  background: var(--color-text-light);
  transform: translateY(-2px);
}
.hero__cta svg {
  transition: transform 0.3s ease;
}
.hero__cta:hover svg {
  transform: translateX(4px);
}

/* Section dividers */
.games, .approach, .cases, .team, .faq, .cta {
  border-top: 1px solid rgba(245, 239, 224, 0.06);
}

/* ============================================
   FULL-WIDTH IMAGE BREAKS (storytelling)
   ============================================ */
.imageBreak {
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
  position: relative;
}
.imageBreak img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.75);
}
.imageBreak::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, transparent 20%, transparent 80%, var(--color-primary) 100%);
  pointer-events: none;
}

/* ============================================
   ONZE AANPAK — 3 stappen
   ============================================ */
.approach {
  padding: 160px 0;
}
.approach__heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-light);
  margin: 0 0 64px;
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.approach__step {
  position: relative;
}
.approach__num {
  display: block;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  opacity: 0.8;
  margin-bottom: 20px;
}
.approach__step h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-text-light);
  margin: 0 0 14px;
}
.approach__step p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}
@media (max-width: 860px) {
  .approach__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .approach {
    padding: 100px 0;
  }
}
/* Single color — alles op primary */

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  padding: 120px 0;
}
.testimonial__quote {
  max-width: 800px;
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial__quote p {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-light);
  margin: 0 0 32px;
}
.testimonial__quote p::before {
  content: '\201C';
  color: var(--color-accent);
  margin-right: 4px;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-light);
}
.testimonial__school {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 140px 0;
}
.faq__heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-light);
  margin: 0 0 56px;
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.faq__item h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.faq__item p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}
@media (max-width: 860px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   STATS STRIP — Dutch design horizontal counter band
   ============================================ */
.statsStrip {
  padding: 64px 0;
  border-top: 1px solid rgba(245, 239, 224, 0.08);
  border-bottom: 1px solid rgba(245, 239, 224, 0.08);
}
.statsStrip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.statsStrip__item {
  text-align: left;
}
.statsStrip__num {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.statsStrip__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .statsStrip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .statsStrip__num {
    font-size: 48px;
  }
}
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 224, 0.15);
  list-style: none;
  padding-left: 0;
}
.hero__stats li {
  font-family: var(--font-body);
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: -0.01em;
}
.hero__stats strong {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .hero__stats {
    gap: 20px;
  }
  .hero__stats strong {
    font-size: 24px;
  }
}
@keyframes heroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__word, .hero__content {
    animation: none;
    opacity: 1;
  }
}
.hero__content p {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  opacity: 0.85;
}
.hero__logo {
  top: 48px;
  left: 60px;

}
/* (Decoratieve giant Q verwijderd op verzoek) */
.hero__text {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO OPTION MENU
   3 pill-buttons: Quantum Game Booth / Les / Polarisatie
   ============================================ */
.hero__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.hero__option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  background: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(245, 239, 224, 0.3);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.hero__option::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
}
.hero__option:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.hero__option:hover::before {
  background: var(--color-primary-dark);
  box-shadow: none;
}

/* ============================================
   ACCENT COLOR TOEPASSEN (Gen Z pop)
   ============================================ */

/* Hero highlight in accent mint */
.hero__highlight {
  color: var(--color-accent);
}

/* Section headings: geen decoratieve dots (op verzoek verwijderd) */
.cases__heading,
.partners__heading,
.team__heading,
.jobs__heading {
  display: inline-block;
}

/* Job CTA accent */
.job__cta {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent-dark);
  font-weight: 700;
}
.job:hover .job__cta {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ============================================
   JOBS WORD-SWAP ANIMATIE
   'Werken' / 'Studeren' wisselend boven 'in Quantum'
   ============================================ */
.jobs__swap {
  display: inline-grid;
  vertical-align: baseline;
  color: var(--color-accent-dark);
}
.jobs__swap > span {
  grid-area: 1 / 1;
  white-space: nowrap;
  animation: jobsSwap 5s ease-in-out infinite;
}
.jobs__swap > span:nth-child(2) {
  animation-delay: 2.5s;
}
@keyframes jobsSwap {
  0%, 44% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  50%, 94% {
    opacity: 0;
    transform: translateY(-40%);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .jobs__swap > span {
    animation: none;
  }
  .jobs__swap > span:nth-child(2) {
    display: none;
  }
}

/* Partners "Supported by" label */
.partners__label {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

/* ============================================
   PARTNER LOGO IMAGES (echte logo's op donkere bg)
   ============================================ */
.partners__logo {
  min-height: 100px;
}
.partners__logo img {
  max-width: 160px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* brightness(0) + invert(1) = alle logos wit op donker */
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.partners__logo:hover img {
  filter: none;
  opacity: 1;
}

/* Text fallback voor partners zonder officieel logo */
.partners__logo--text span {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.25;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.partners__logo--text:hover span {
  opacity: 1;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.cta {
  padding: 180px 0 140px;
  position: relative;
}
.cta__contact {
  margin-bottom: 36px;
}
.cta__person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid rgba(255, 107, 53, 0.4);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.cta__personInfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta__personName {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-light);
}
.cta__personRole {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}
.cta__inner {
  max-width: none;
  text-align: left;
}
.cta__eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 100px;
}
.cta__heading {
  font-family: var(--font-title);
  font-size: clamp(56px, 11vw, 180px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--color-text-light);
  margin: 0 0 40px;
}
.cta__line {
  display: block;
}
.cta__accent {
  color: var(--color-accent);
}
.cta__sub {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  max-width: 680px;
  opacity: 0.85;
  margin-bottom: 44px;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cta__btn svg {
  transition: transform 0.3s ease;
}
.cta__btn--primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.cta__btn--primary:hover {
  transform: translateY(-2px);
  background: var(--color-text-light);
}
.cta__btn--secondary {
  background: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(245, 239, 224, 0.3);
}
.cta__btn--secondary:hover {
  transform: translateY(-3px);
  background: var(--color-text-light);
  color: var(--color-primary-dark);
  border-color: var(--color-text-light);
}
.cta__btn:hover svg {
  transform: translateX(6px);
}

@media (max-width: 640px) {
  .cta {
    padding: 100px 0 80px;
  }
}

/* ============================================
   FLOATING CONTACT RAIL (vertical sidebar)
   ============================================ */
.contactRail {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 22px 12px;
  background: var(--color-primary-dark);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 100px;
  color: var(--color-text-light);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}
.contactRail__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
  animation: contactPulse 2s ease-in-out infinite;
}
@keyframes contactPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(0.85); }
}
.contactRail:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  box-shadow: 0 16px 40px -10px rgba(255, 107, 53, 0.6);
}
.contactRail:hover .contactRail__dot {
  background: var(--color-primary-dark);
  box-shadow: none;
}
@media (max-width: 860px) {
  .contactRail {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contactRail__dot {
    animation: none;
  }
}

/* ============================================
   FOOTER (3-koloms, ruimer + grotere typografie)
   ============================================ */
.footer {
  padding: 140px 0 48px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 96px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.12);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 380px;
}
.footer__logoImg {
  width: 88px;
  height: auto;
  display: block;
}
.footer__tagline {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.footer__address {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  opacity: 0.85;
}
.footer__linksTitle {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 28px;
}
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__links a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease;
  letter-spacing: -0.01em;
}
.footer__links a:hover {
  opacity: 1;
  color: var(--color-accent);
}
.footer__contactCol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer__contactMail {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.4);
  transition: border-color 0.3s ease, color 0.3s ease;
  letter-spacing: -0.01em;
}
.footer__contactMail:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.footer__contactLinkedIn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(245, 239, 224, 0.3);
  color: var(--color-text-light);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}
.footer__contactLinkedIn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
}
.footer__partners {
  padding: 48px 0;
  border-top: 1px solid rgba(245, 239, 224, 0.08);
  border-bottom: 1px solid rgba(245, 239, 224, 0.08);
}
.footer__partnersLabel {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 24px;
}
.footer__partnersRow {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__partnersRow a {
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer__partnersRow a:hover {
  opacity: 1;
}
.footer__partnersRow img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__partnerText {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.footer__partnerText:hover {
  opacity: 1;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy,
.footer__copyRight {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: -0.005em;
}
@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-bottom: 56px;
  }
  .footer {
    padding: 96px 0 36px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer__tagline { font-size: 19px; }
  .footer__links a { font-size: 17px; }
}

/* ============================================
   CASES BUTTONS - directe CTAs onder de intro + grid
   ============================================ */
.cases__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cases__buttons .cta__btn {
  padding: 16px 24px;
  font-size: 15px;
}
.cases__buttons--bottom {
  margin-top: 0;
  justify-content: flex-start;
}

/* ============================================
   LANGUAGE TOGGLE (NL / EN, top-right)
   ============================================ */
.langToggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.langToggle__btn {
  appearance: none;
  background: transparent;
  border: none;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.25s ease;
}
.langToggle__btn:hover {
  opacity: 1;
}
.langToggle__btn--active {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  opacity: 1;
}
@media (max-width: 640px) {
  .langToggle {
    top: 16px;
    right: 16px;
  }
  .langToggle__btn {
    padding: 6px 12px;
    font-size: 10px;
  }
}

/* ============================================
   CONTACT FAB (altijd zichtbaar, bottom-right)
   ============================================ */
.contactFab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}
.contactFab:hover {
  transform: translateY(-3px);
  background: var(--color-text-light);
}
.contactFab svg {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .contactFab {
    right: 16px;
    bottom: 16px;
    padding: 12px;
  }
  .contactFab__label {
    display: none;
  }
}

/* ============================================
   FUN INVITING HOVER op case cards
   ============================================ */
.case {
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.case:hover {
  transform: translateY(-6px);
}
.case .case__img {
  overflow: hidden;
  border-radius: inherit;
}
.case .case__img img {
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.case:hover .case__img img {
  transform: scale(1.06);
}
.case:hover .case__text h3 {
  color: var(--color-accent);
  transition: color 0.3s ease;
}

/* ============================================
   FORWHO STATEMENT SUB-LINE
   ============================================ */
.forwho__sub {
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.55;
  max-width: 720px;
  margin-top: 32px;
  opacity: 0.8;
}

/* ============================================
   SCRIM: gradient overlay op case __img
   Zorgt voor tekst-leesbaarheid op elke case card
   ============================================ */
.case__img {
  position: relative;
}
.case__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(5, 53, 118, 0.55) 75%,
    rgba(3, 35, 78, 0.92) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.case__text {
  position: relative;
  z-index: 2;
}
.case__text p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--color-text-light);
}
.case:hover .case__text p {
  opacity: 0.8;
  max-height: 60px;
  margin-top: 8px;
}

/* ============================================
   TEAM HEADER FUN: speelse intro met tagline
   ============================================ */
.team__header--fun {
  max-width: 900px;
  margin: 0 0 72px;
  text-align: left;
}
.team__header--fun .team__heading {
  margin-bottom: 12px;
}
.team__tagline {
  font-family: var(--font-title);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.team__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  opacity: 0.8;
  margin: 0;
}

/* Fun hover: tilt + scale op member cards */
.member:hover {
  transform: translateY(-6px) rotate(-1.5deg) scale(1.02);
}

/* Hover glow op game cards */
.game:hover {
  box-shadow: 0 20px 50px -15px rgba(255, 107, 53, 0.2);
}

/* ============================================
   MULTI-STEP BOOKING FORM
   ============================================ */
.bookForm {
  max-width: 520px;
  margin-top: 48px;
}
.bookForm__progress {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.bookForm__step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(245, 239, 224, 0.25);
  color: var(--color-text-light);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.bookForm__step--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
  opacity: 1;
}
.bookForm__step--done {
  background: rgba(255, 107, 53, 0.3);
  border-color: var(--color-accent);
  opacity: 0.85;
}
.bookForm__stepLine {
  flex: 1;
  height: 2px;
  background: rgba(245, 239, 224, 0.15);
  margin: 0 8px;
}
.bookForm__panel {
  display: none;
}
.bookForm__panel--active {
  display: block;
  animation: formFadeIn 0.3s ease;
}
@keyframes formFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.bookForm__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-light);
  margin: 0 0 28px;
}
.bookForm__field {
  margin-bottom: 20px;
}
.bookForm__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  opacity: 0.85;
  margin-bottom: 8px;
}
.bookForm__field input,
.bookForm__field select,
.bookForm__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(245, 239, 224, 0.2);
  border-radius: 4px;
  background: rgba(245, 239, 224, 0.06);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
}
.bookForm__field input:focus,
.bookForm__field select:focus,
.bookForm__field textarea:focus {
  border-color: var(--color-accent);
  background: rgba(255, 107, 53, 0.06);
}
.bookForm__field input::placeholder,
.bookForm__field textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.4;
}
.bookForm__field select option {
  background: var(--color-primary);
  color: var(--color-text-light);
}
.bookForm__nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.bookForm__next,
.bookForm__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 4px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}
.bookForm__next:hover,
.bookForm__submit:hover {
  background: var(--color-text-light);
  transform: translateY(-1px);
}
.bookForm__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1.5px solid rgba(245, 239, 224, 0.25);
  border-radius: 4px;
  background: transparent;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.bookForm__back:hover {
  border-color: var(--color-text-light);
}
/* Social proof above form */
.bookForm__proof {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  margin: 0 0 32px;
  padding-left: 20px;
  border-left: 2px solid var(--color-accent);
}
/* Radio buttons (2.5s faster than dropdowns per field) */
.bookForm__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
.bookForm__fieldset legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  opacity: 0.85;
  margin-bottom: 10px;
}
.bookForm__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bookForm__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid rgba(245, 239, 224, 0.2);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.bookForm__radio:hover {
  border-color: rgba(245, 239, 224, 0.45);
}
.bookForm__radio:has(input:checked) {
  border-color: var(--color-accent);
  background: rgba(255, 107, 53, 0.08);
}
.bookForm__radio input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}
/* Under-button microcopy */
.bookForm__micro {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 16px;
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .bookForm { max-width: 100%; }
  .bookForm__radios { flex-direction: column; }
}

/* Sticky bar slide-in smoother */
.stickyBar {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

/* Partner logos subtle hover scale */
.partners__logo:hover {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

/* Legacy: team intro 2-col (kept for reference, unused) */
.team__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
  text-align: left;
}
.team__introImage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.team__introImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__introImage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(5, 53, 118, 0.45) 100%);
  pointer-events: none;
}
.team__intro .team__header {
  text-align: left;
  margin: 0;
  max-width: none;
}
@media (max-width: 860px) {
  .team__intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .team__introImage {
    aspect-ratio: 16 / 9;
  }
}

/* ============================================
   TEAM - 12 MEMBERS GRID (compacte placeholders)
   ============================================ */
.team__grid--members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px;
  border-radius: 16px;
  background: rgba(245, 239, 224, 0.04);
  border: 1px solid rgba(245, 239, 224, 0.12);
  transition: all 0.3s ease;
}
.member:hover {
  background: rgba(245, 239, 224, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}
.member__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  border: 2px solid rgba(255, 107, 53, 0.4);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.member:hover .member__avatar {
  border-color: var(--color-accent);
  background: rgba(255, 107, 53, 0.2);
}
.member__avatar--photo {
  background: transparent;
  border-color: rgba(255, 107, 53, 0.6);
  padding: 0;
}
.member__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-light);
  margin-bottom: 4px;
  line-height: 1.25;
}
.member__role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.01em;
}
@media (max-width: 960px) {
  .team__grid--members {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .team__grid--members {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games {
  padding: 160px 0;
}
.games__header {
  max-width: 900px;
  margin: 0 0 72px;
  text-align: left;
}
.games__heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-text-light);
  margin-bottom: 20px;
}
.games__header p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  opacity: 0.8;
  max-width: 620px;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  border-radius: 4px;
  background: rgba(245, 239, 224, 0.04);
  border: 1px solid rgba(245, 239, 224, 0.14);
  color: var(--color-text-light);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.game:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: rgba(245, 239, 224, 0.07);
}
.game__num {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  opacity: 0.8;
  margin-bottom: 20px;
}
.game__body {
  flex: 1;
  margin-bottom: 24px;
}
.game h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-light);
  margin-bottom: 12px;
}
.game p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}
.game__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}
.game__cta svg {
  transition: transform 0.3s ease;
}
.game:hover .game__cta {
  color: var(--color-text-light);
  border-bottom-color: var(--color-text-light);
}
.game:hover .game__cta svg {
  transform: translate(3px, -3px);
}
@media (max-width: 960px) {
  .games__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .games {
    padding: 80px 0;
  }
}

/* ============================================
   MOBILE FONT CONSISTENCY
   Responsive clamp tweaks voor kleinere schermen
   ============================================ */
@media (max-width: 640px) {
  .hero__header h1,
  .hero__h1 {
    font-size: clamp(40px, 13vw, 72px);
  }
  .forwho__statement,
  .cases__heading,
  .cta__heading,
  .partners__heading,
  .team__heading,
  .games__heading {
    font-size: clamp(32px, 10vw, 56px);
  }
  .hero__content p,
  .cta__sub,
  .forwho__header p,
  .games__header p,
  .team__header p {
    font-size: 15px;
  }
  .hero__text {
    padding: 140px 6vw 80px;
  }
  .hero__logo {
    width: 64px;
  }
  .wrapper {
    padding: 0 24px;
  }
}

/* ============================================
   PARTNERS EYEBROW "Een initiatief van"
   ============================================ */
.partners__eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 100px;
}

/* ============================================
   MODERN POLISH
   Noise texture + hero shimmer + marquee
   ============================================ */

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.hero__scroll:hover {
  opacity: 1;
}
.hero__scrollText {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4em;
}
.hero__scrollArrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 239, 224, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scrollArrow { animation: none; }
}
@media (max-width: 640px) {
  .hero__scroll { bottom: 24px; }
}

/* ============================================
   STICKY HEADER BAR (verschijnt na hero)
   ============================================ */
.stickyBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 24px;
  background: rgba(5, 53, 118, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 239, 224, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.stickyBar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.stickyBar__inner {
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stickyBar__logo {
  display: flex;
  align-items: center;
}
.stickyBar__logo img {
  width: 28px;
  height: auto;
}
.stickyBar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.25s ease;
}
.stickyBar__cta:hover {
  background: var(--color-text-light);
}
.stickyBar__cta svg {
  transition: transform 0.25s ease;
}
.stickyBar__cta:hover svg {
  transform: translateX(3px);
}

/* (Section overlap verwijderd - clean static layout) */

/* ============================================
   FUN QUANTUM LOADER (spinning qubit + pulse text)
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader__atom {
  width: 120px;
  height: 120px;
}
.loader__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.loader__orbit {
  transform-origin: 60px 60px;
}
.loader__orbit--1 { transform: rotate(0deg); }
.loader__orbit--2 { transform: rotate(60deg); }
.loader__orbit--3 { transform: rotate(120deg); }

.loader__nucleus {
  transform-origin: 60px 60px;
  animation: nucleusPulse 1.6s ease-in-out infinite;
}
@keyframes nucleusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.85; }
}

.loader__particle {
  transform-origin: 60px 60px;
}
.loader__particle--1 {
  animation: particleOrbit1 2s linear infinite;
}
.loader__particle--2 {
  animation: particleOrbit2 2.4s linear infinite;
  animation-delay: -0.6s;
}
.loader__particle--3 {
  animation: particleOrbit3 2.8s linear infinite;
  animation-delay: -1.2s;
}
@keyframes particleOrbit1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes particleOrbit2 {
  from { transform: rotate(60deg); }
  to { transform: rotate(420deg); }
}
@keyframes particleOrbit3 {
  from { transform: rotate(120deg); }
  to { transform: rotate(480deg); }
}
.loader__text {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--color-accent);
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .loader__qubit,
  .loader__arc,
  .loader__electron,
  .loader__text {
    animation: none;
  }
}

/* (Noise grain verwijderd - clean flat surface) */

/* Reduced motion respects user preference */
@media (prefers-reduced-motion: reduce) {
  body::before {
    display: none;
  }
}

/* Partners marquee: continue horizontale scroll */
.partners__marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  margin-top: 60px;
}
.partners__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.partners__marquee:hover .partners__track {
  animation-play-state: paused;
}
.partners__track .partners__logo {
  flex: 0 0 180px;
  width: 180px;
  height: 180px;
  min-height: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  padding: 24px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
  }
}

/* ============================================
   VOOR WIE (education levels) - action cards
   ============================================ */
.forwho {
  padding: 140px 0 100px;
  position: relative;
}
/* (decoratieve 1px lijn verwijderd op verzoek) */

/* Statement variant: single big typography anchor */
.forwho--statement {
  padding: 160px 0 140px;
  position: relative;
}
.forwho--statement::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35vw;
  height: 70%;
  background: var(--color-accent);
  opacity: 0.08;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}
.forwho__statement {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-text-light);
  max-width: none;
  margin: 0;
}
.forwho__statementLine {
  display: block;
}
.forwho__statementAccent {
  color: var(--color-accent);
}
.forwho__header {
  max-width: 900px;
  margin: 0 0 72px;
  text-align: left;
}
.forwho__eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 100px;
}
.forwho__heading {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-text-light);
  margin-bottom: 20px;
}
.forwho__header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
}

.forwho__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.forwho__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 36px 36px;
  border-radius: 4px;
  background: rgba(245, 239, 224, 0.04);
  border: 1px solid rgba(245, 239, 224, 0.14);
  color: var(--color-text-light);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.35s ease,
              border-color 0.35s ease;
}
/* (gradient glow verwijderd op verzoek - geen gradients) */
.forwho__card:hover {
  transform: translateY(-6px);
  background: rgba(245, 239, 224, 0.07);
  border-color: rgba(255, 107, 53, 0.5);
}
.forwho__num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  opacity: 0.85;
}
.forwho__body {
  flex: 1;
  margin-bottom: 28px;
}
.forwho__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 18px;
}
.forwho__card h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--color-text-light);
}
.forwho__card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}
.forwho__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 22px;
  border-radius: 100px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, background 0.3s ease;
}
.forwho__cta svg {
  transition: transform 0.3s ease;
}
.forwho__card:hover .forwho__cta {
  background: var(--color-text-light);
}
.forwho__card:hover .forwho__cta svg {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .forwho {
    padding: 80px 0 60px;
  }
  .forwho__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .forwho__header {
    margin-bottom: 48px;
  }
}

/* ============================================
   JOBS OP DONKERE BG - card overrides
   ============================================ */
.jobs__header p {
  color: var(--color-text-light);
  opacity: 0.85;
}
.job {
  border: 1px solid rgba(245, 239, 224, 0.18);
  color: var(--color-text-light);
}
.job:hover {
  border-color: var(--color-accent);
  background: rgba(255, 107, 53, 0.04);
}
.job p {
  opacity: 0.8;
}
.job__type {
  background: rgba(255, 107, 53, 0.12);
  color: var(--color-accent);
}
.job__location {
  background: transparent;
  border: 1px solid rgba(245, 239, 224, 0.25);
  color: var(--color-text-light);
}
.job__cta {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.job:hover .job__cta {
  color: var(--color-text-light);
  border-bottom-color: var(--color-text-light);
}

/* Jobs word-swap op donker: behouden accent maar lichter */
.jobs__swap {
  color: var(--color-accent);
}

/* ============================================
   MUSEUM LAYER (2026 refresh)
   Editorial accents · serif italic · thin rules
   ============================================ */
:root {
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --rule: rgba(245, 239, 224, 0.18);
  --rule-strong: rgba(245, 239, 224, 0.32);
  --cream: #F5EFE0;
  --ink: #0a2352;
  --card-yellow: #F3C24A;
  --card-teal: #6FC3A8;
}

.serif, em.serif {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
}

/* Bolder body text globally (per user: always bold letters) */
body { font-weight: 500; }
p, li, .tag, .game p, .approach__step p, .faq__item p, .wandtekst__col p {
  font-weight: 500;
}

/* Section eyebrow */
.zaal {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 6px 0 8px;
  margin-bottom: 24px;
  border-top: 1px solid var(--rule-strong);
  position: relative;
}
.zaal::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--color-accent);
}

/* ============================================
   HERO META STRIP
   ============================================ */
.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  color: var(--cream);
}
.hero__zaal { color: var(--color-accent); }
.hero__rule {
  flex: 1;
  height: 1px;
  max-width: 220px;
  background: var(--rule-strong);
}
.hero__era { opacity: 0.7; letter-spacing: 0.25em; }

/* Hero h1 refinement */
.hero__word--italic { font-style: normal; }

/* ============================================
   APPROACH v2 — big bg numerals + tags
   ============================================ */
.approach--v2 {
  padding: 140px 0 160px;
  border-top: 1px solid var(--rule);
}
.approach--v2 .approach__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 72px;
  max-width: 18ch;
}
.approach--v2 .approach__grid {
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.approach--v2 .approach__step {
  padding: 48px 36px 44px;
  border-right: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.approach--v2 .approach__step:last-child {
  border-right: none;
}
.approach--v2 .approach__step::before {
  content: attr(data-bignum);
  position: absolute;
  top: -40px;
  right: -10px;
  font-family: var(--font-heading);
  font-size: 260px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 239, 224, 0.12);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: -1;
}
.approach--v2 .approach__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 1;
  margin-bottom: 28px;
  display: inline-block;
}
.approach--v2 .approach__step h3 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.approach__lede {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-accent);
  margin: 0 0 18px;
}
.approach--v2 .approach__step p:not(.approach__lede) {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;
  margin: 0 0 28px;
}
.approach__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--rule-strong);
  color: var(--cream);
  opacity: 0.9;
  transition: all 0.35s ease;
}
.tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
@media (max-width: 900px) {
  .approach--v2 .approach__grid {
    grid-template-columns: 1fr;
  }
  .approach--v2 .approach__step {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 40px 0;
  }
  .approach--v2 .approach__step::before {
    font-size: 200px;
    top: -30px;
  }
}

/* ============================================
   GAMES — colored card variants
   ============================================ */
.games__header .zaal {
  margin-bottom: 20px;
}
.games__heading {
  font-family: var(--font-heading);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.games__heading em.serif {
  letter-spacing: -0.015em;
}
.games__intro {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  opacity: 0.85;
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--cream);
}
.games__grid {
  gap: 20px;
  grid-template-columns: 1.4fr 1fr 1fr !important;
  grid-auto-rows: 1fr;
}
.games__grid .game:first-child {
  grid-row: span 2;
  min-height: 100%;
}
.games__grid .game:first-child h3 {
  font-size: 36px;
}
.games__grid .game:first-child .game__icon svg {
  width: 72px;
  height: 72px;
}
.games__grid .game:first-child .game__body {
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .games__grid {
    grid-template-columns: 1fr !important;
  }
  .games__grid .game:first-child { grid-row: auto; }
  .games__grid .game:first-child h3 { font-size: 26px; }
}
.game {
  --card-bg: var(--color-accent);
  --card-ink: var(--color-primary-dark);
  background: var(--card-bg) !important;
  border: 1px solid transparent !important;
  color: var(--card-ink) !important;
  border-radius: 8px !important;
  padding: 28px 28px 26px !important;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.game--yellow { --card-bg: var(--card-yellow); }
.game--teal   { --card-bg: var(--card-teal); }
.game:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.4);
  background: var(--card-bg) !important;
  border-color: transparent !important;
}
.game__num {
  background: rgba(10, 35, 82, 0.18);
  color: var(--card-ink) !important;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 1 !important;
  align-self: flex-start;
  margin-bottom: 0;
}
.game__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 35, 82, 0.12);
  color: var(--card-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease;
}
.game:hover .game__arrow {
  transform: translate(3px, -3px);
  background: rgba(10, 35, 82, 0.22);
}
.game__icon {
  display: inline-flex;
  margin: 36px 0 28px;
  color: var(--card-ink);
}
.game h3 {
  color: var(--card-ink) !important;
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.game p {
  color: var(--card-ink) !important;
  opacity: 0.8 !important;
  font-size: 14px;
  line-height: 1.55;
}
.game__cta {
  color: var(--card-ink) !important;
  border-bottom: 1px dashed rgba(10, 35, 82, 0.45) !important;
  padding-bottom: 4px;
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: auto;
}
.game:hover .game__cta {
  color: var(--card-ink) !important;
  border-bottom-color: var(--card-ink) !important;
}
.game__cta svg { display: none; }
.game__body { margin-top: 8px; }

/* ============================================
   CASES/TEAM eyebrow spacing + refined heading
   ============================================ */
.cases__intro .zaal { margin-bottom: 20px; }
.cases__heading,
.team__heading,
.faq__heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.team__intro {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 640px;
  margin: 18px 0 0;
}

/* ============================================
   CTA heading — serif accent
   ============================================ */
.cta__accent.serif em { font-style: normal; }
.cta .zaal { margin-bottom: 24px; }

/* ============================================
   FOOTER colophon line
   ============================================ */
.footer__bottom {
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer__colophon {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  flex: 1 1 100%;
  order: 3;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  margin-top: 12px;
}

/* ============================================
   ANIMATIONS — rethought
   Softer fade+rise, custom easing, rule-draw on section tops
   ============================================ */
[data-aos="fade-up"] {
  transform: translate3d(0, 24px, 0);
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos="fade-up"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* Rule-draw: thin line extends on section eyebrow as you scroll in */
.zaal::before {
  transform: scaleX(0);
  transform-origin: left;
  animation: zaalDraw 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s both;
}
@keyframes zaalDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Hero word fade-rise (replaces cascade-zoom) */
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: heroWord 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero__line:nth-child(1) .hero__word { animation-delay: 0.10s; }
.hero__line:nth-child(2) .hero__word { animation-delay: 0.28s; }
.hero__line:nth-child(3) .hero__word { animation-delay: 0.46s; }
@keyframes heroWord {
  to { opacity: 1; transform: translateY(0); }
}

/* Meta strip fade */
.hero__meta {
  opacity: 0;
  animation: metaFade 0.9s ease 0.6s forwards;
}
@keyframes metaFade {
  to { opacity: 0.85; }
}

/* Hover micro-interaction on game cards: num bounces up */
.game:hover .game__num {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero__word, .hero__meta, .zaal::before {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   HERO LEDE + MUSEUM WANDTEKST
   Bigger + bolder editorial storytelling
   ============================================ */
.hero__lede {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 46ch;
  opacity: 0.92;
  margin: 0 0 32px;
}

.hero__h1 {
  font-weight: 800 !important;
  font-size: clamp(56px, 8vw, 128px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
}

.wandtekst {
  padding: 120px 0 40px;
  border-top: 1px solid var(--rule);
}
.wandtekst__inner {
  max-width: 1100px;
}
.wandtekst__body {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin: 0 0 24px;
  color: var(--cream);
}
.wandtekst__body em.serif {
  color: var(--color-accent);
  font-weight: 500;
}
.wandtekst__sig {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 72px;
  opacity: 0.85;
}
.wandtekst__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.wandtekst__col h4 {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 14px;
}
.wandtekst__col p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
  max-width: 34ch;
}
@media (max-width: 860px) {
  .wandtekst__meta {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .wandtekst { padding: 80px 0 20px; }
}

/* Bump all section h2 weight + size for bolder storytelling */
.games__heading,
.approach__heading,
.cases__heading,
.team__heading,
.faq__heading {
  font-weight: 800 !important;
  font-size: clamp(42px, 6vw, 96px) !important;
}

/* ============================================
   CHAT BUBBLE (replaces cta__sub + person block)
   ============================================ */
.chat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 680px;
  margin: 40px 0 48px;
}
.chat__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(245, 239, 224, 0.15);
  position: relative;
}
.chat__avatar::after { display: none; }
.chat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chat__thread {
  flex: 1;
  min-width: 0;
}
.chat__meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.chat__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
}
.chat__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  opacity: 0.6;
}
.chat__time {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #25d366;
  letter-spacing: 0.04em;
  margin-left: auto;
}
.chat__time::before {
  content: '\2022';
  margin-right: 6px;
  opacity: 0.7;
}
.chat__bubble {
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.12);
  border-radius: 4px 18px 18px 18px;
  padding: 16px 20px;
  position: relative;
}
.chat__bubble p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: var(--cream);
}
.chat__bubble p:last-child { margin-bottom: 0; }
@media (max-width: 520px) {
  .chat { gap: 12px; }
  .chat__avatar { width: 44px; height: 44px; }
  .chat__time { margin-left: 0; }
}

/* ============================================
   GALLERY (photo grid — 4 per row desktop)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 48px 0 36px;
}
.gallery__item {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-primary-dark);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gallery__item:hover { transform: translateY(-6px); }
.gallery__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gallery__item:hover .gallery__media img { transform: scale(1.06); }
.gallery__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,35,78,0.1) 40%, rgba(3,35,78,0.92) 100%);
}
.gallery__meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery__year {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-accent);
}
.gallery__item h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 2px 0 4px;
  color: var(--cream);
}
.gallery__loc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
}
@media (max-width: 960px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ============================================
   CASE LIST (editorial rows)
   ============================================ */
.caseList {
  list-style: none;
  padding: 0;
  margin: 56px 0 40px;
  border-top: 1px solid var(--rule-strong);
}
.caseList li { border-bottom: 1px solid var(--rule); }
.caseList__row {
  display: grid;
  grid-template-columns: 100px 170px 1fr auto 52px;
  align-items: center;
  gap: 24px;
  padding: 32px 4px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-body);
  transition: padding-left 0.35s ease, color 0.35s ease;
  position: relative;
}
.caseList__row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--color-accent);
  transition: width 0.35s ease;
}
.caseList__row:hover {
  padding-left: 20px;
}
.caseList__row:hover::before { width: 4px; }
.caseList__year {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--color-accent);
}
.caseList__kind {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.caseList__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.caseList__loc {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  text-align: right;
}
.caseList__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.caseList__row:hover .caseList__arrow {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  transform: translate(3px, -3px);
}
@media (max-width: 860px) {
  .caseList__row {
    grid-template-columns: 60px 1fr 40px;
    gap: 14px;
    padding: 20px 4px;
  }
  .caseList__kind, .caseList__loc { display: none; }
  .caseList__title { font-size: 20px; }
  .caseList__arrow { width: 36px; height: 36px; }
}

/* ============================================
   FAQ compact accordion
   ============================================ */
.faq--compact { padding: 100px 0 !important; }
.faq--compact .faq__grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  max-width: 820px;
}
.faq--compact .faq__item {
  border-top: 1px solid var(--rule);
  padding: 0;
}
.faq--compact .faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq--compact summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq--compact summary::-webkit-details-marker { display: none; }
.faq--compact summary h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}
.faq--compact summary::after {
  content: '+';
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq--compact .faq__item[open] summary::after { transform: rotate(45deg); }
.faq--compact .faq__item p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.82;
  max-width: 60ch;
}

/* ============================================
   Tighten overall section padding (shorter site)
   ============================================ */
.games, .approach, .cases, .team, .faq, .cta, .wandtekst {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.wandtekst { padding-bottom: 40px !important; }

/* ============================================
   KEYWORDS (replaces approach steps)
   ============================================ */
.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 40px;
}
.keyword {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  border: 1.5px solid var(--rule-strong);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-decoration: none;
  transition: all 0.35s ease;
}
.keyword::after {
  content: '\2192';
  font-family: var(--font-body);
  font-size: 0.75em;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.keyword:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}
.keyword:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================
   STICKY BAR wordmark + lang switch
   ============================================ */
.stickyBar__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.stickyBar__logo img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.stickyBar__wordmark {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.stickyBar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.langSwitch { position: relative; }
.langSwitch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(245, 239, 224, 0.2);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.langSwitch__toggle:hover {
  border-color: var(--color-accent);
  background: rgba(255, 107, 53, 0.1);
}
.langSwitch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--color-primary-dark);
  border: 1px solid rgba(245, 239, 224, 0.14);
  border-radius: 10px;
  min-width: 180px;
  box-shadow: 0 18px 44px -14px rgba(0,0,0,0.55);
  z-index: 100;
}
.langSwitch__menu[hidden] { display: none; }
.langSwitch__menu li { margin: 0; }
.langSwitch__menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.langSwitch__menu button:hover { background: rgba(245,239,224,0.08); }
.langSwitch__menu button[aria-selected="true"] {
  background: rgba(255, 107, 53, 0.15);
  color: var(--color-accent);
}

/* ============================================
   CASES WIDER (one-line heading + tag below)
   ============================================ */
.cases__grid .cases__intro { max-width: none !important; grid-column: 1 / -1 !important; }
.cases__heading--oneline {
  white-space: nowrap !important;
  max-width: none !important;
  font-size: clamp(36px, 5.5vw, 88px) !important;
}
.cases__tag {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  opacity: 0.75;
  margin: 14px 0 0 !important;
  max-width: none !important;
}
.cases { padding-bottom: 100px !important; }

/* ============================================
   HERO MARK (big Q-Team logo next to heading)
   ============================================ */
.hero { position: relative; overflow: hidden; }
.hero__mark {
  display: block;
  width: clamp(88px, 10vw, 130px);
  height: auto;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(-12px);
  animation: heroMarkIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s forwards;
}
@keyframes heroMarkIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 960px) {
  .hero__mark { display: none; }
}

/* ============================================
   HERO TYPEWRITER
   ============================================ */
.hero__h1 {
  position: relative;
  z-index: 1;
}
.hero__line {
  display: block;
  min-height: 1em;
}
@keyframes caretBlink {
  50% { opacity: 0; }
}

/* ============================================
   WIDER TEXT BLOCKS (use more width)
   ============================================ */
.wandtekst__body {
  max-width: none !important;
  font-size: clamp(32px, 4vw, 64px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
}
.cases__intro {
  max-width: none;
}
.cases__intro p { max-width: 60ch; }
.approach__heading,
.cases__heading,
.team__heading,
.faq__heading {
  max-width: none !important;
}

/* ============================================
   HOWTO STEPS (compact)
   ============================================ */
.howto { padding: 80px 0 !important; }
.steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.steps li {
  padding: 28px 24px 26px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: rgba(245, 239, 224, 0.03);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.steps li:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.steps__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.steps__body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--cream);
}
.steps__body p {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.8;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================
   OFFERS (unused — replaced)
   ============================================ */
.offers { padding: 80px 0 !important; }
.offers__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule-strong);
}
.offers__list li { border-bottom: 1px solid var(--rule); }
.offer {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 44px 4px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-body);
  position: relative;
  transition: padding-left 0.35s ease;
}
.offer::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--color-accent);
  transition: width 0.35s ease;
}
.offer:hover { padding-left: 20px; }
.offer:hover::before { width: 4px; }
.offer__num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.offer__body h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--cream);
}
.offer__body p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0;
  max-width: 58ch;
  font-weight: 500;
}
.offer__arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.35s ease;
}
.offer:hover .offer__arrow {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  transform: translate(3px, -3px);
}
@media (max-width: 720px) {
  .offer {
    grid-template-columns: 60px 1fr 44px;
    gap: 16px;
    padding: 28px 4px;
  }
  .offer__num { font-size: 32px; }
  .offer__body h3 { font-size: 22px; }
  .offer__arrow { width: 44px; height: 44px; }
}

/* ============================================
   HERO TOP-ALIGNMENT + logo higher
   ============================================ */
.hero {
  min-height: auto !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  align-items: flex-start !important;
}
.hero__text {
  justify-content: flex-start !important;
  padding-top: 0 !important;
}
.hero__logo {
  top: 24px !important;
  left: 48px !important;
  width: 88px !important;
  height: 88px !important;
}

/* Section padding compact */
.games, .approach, .cases, .team, .faq, .cta, .wandtekst {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.wandtekst { padding-bottom: 32px !important; }

/* Kill any residual list bullets on our sections */
.caseList, .hero__text ul, .wandtekst ul { list-style: none !important; padding-left: 0 !important; }

/* ============================================
   STAGGER REVEAL (dynamic, no library)
   ============================================ */
@keyframes reveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Game card stagger on view */
.games__grid .game {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.games__grid .game:nth-child(1) { animation-delay: 0.1s; }
.games__grid .game:nth-child(2) { animation-delay: 0.22s; }
.games__grid .game:nth-child(3) { animation-delay: 0.34s; }

/* ============================================
   FLOATING CHAT WIDGET (bottom-right)
   ============================================ */
.floatChat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: var(--font-body);
}
.floatChat__toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--color-accent);
  background: var(--color-primary-dark);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.55);
  transition: transform 0.3s ease;
}
.floatChat__toggle:hover { transform: scale(1.06); }
.floatChat__toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.floatChat__dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-primary-dark);
  animation: chatPulse 2s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(255,107,53,0); }
}
.floatChat__panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  background: var(--color-primary-dark);
  border: 1px solid rgba(245,239,224,0.14);
  border-radius: 14px;
  box-shadow: 0 22px 60px -12px rgba(0,0,0,0.6);
  padding: 20px;
  animation: chatOpen 0.24s cubic-bezier(0.22,0.61,0.36,1);
  transform-origin: bottom right;
}
.floatChat__msgs { flex: 1; }
.floatChat__cta { margin-top: auto; }
.floatChat__panel[hidden] { display: none; }
@keyframes chatOpen {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.floatChat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245,239,224,0.1);
  margin-bottom: 14px;
}
.floatChat__head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.floatChat__who {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.floatChat__who strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
}
.floatChat__who span {
  font-size: 12px;
  opacity: 0.6;
  color: var(--cream);
}
.floatChat__close {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0.7;
}
.floatChat__close:hover { opacity: 1; background: rgba(245,239,224,0.08); }
.floatChat__msgs p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 10px;
  background: rgba(245,239,224,0.06);
  border-radius: 4px 14px 14px 14px;
  padding: 10px 14px;
  min-height: 18px;
}
.floatChat__msgs p.typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--color-accent);
  vertical-align: -0.1em;
  margin-left: 2px;
  animation: caretBlink 0.9s steps(2) infinite;
}
.floatChat__msgs p:last-child { margin-bottom: 14px; }
.floatChat__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.floatChat__cta:hover { background: var(--cream); }
@media (max-width: 520px) {
  .floatChat { bottom: 16px; right: 16px; }
  .floatChat__panel { width: calc(100vw - 32px); right: 0; bottom: 78px; }
}
