*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f8f2ea;
  --yellow: #ffbe3c;
  --navy: #1a4c8a;
  --blue: #2e83ec;
  --black: #000;
  --white: #fff;
  --max: 1440px;
  --pad: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--black);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

nav .logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

nav a {
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

nav a.muted {
  color: rgba(0, 0, 0, 0.42);
}

/* ── SHARED ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 28px;
}

.section-label img.arrow {
  height: 28px;
}

.heading-xl {
  font-weight: 900;
  font-size: 73px;
  line-height: 1.18;
}

/* ── MAIN WRAPPER ── */
.main-bg {
  background: var(--cream);
  border-radius: 25px 25px 0 0;
  margin: 0 20px;
  overflow: hidden;
}

/* ── HERO ── */
.hero {
  padding: 80px var(--pad) 0;
  display: flex;
  justify-content: center;
}

.hero img {
  max-width: 680px;
  width: 100%;
  display: block;
}

/* ── TEAM ── */
.team {
  padding: 80px var(--pad);
}

.team .intro {
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 50px;
}

.team-card {
  width: 100%;
  height: 466px;
  border-radius: 25px;
  padding: 32px 24px 0;
  position: relative;
  overflow: hidden;
}

.team-card .name {
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  line-height: 1.3;
}

.team-card .role {
  font-size: 18px;
  color: var(--white);
  margin-top: 6px;
}

.team-card .photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80%;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* ── TEAMWAARDEN ── */
.teamwaarden {
  background: var(--black);
  padding: 60px var(--pad) 70px;
  border-radius: 25px 25px 0 0;
}

.teamwaarden .section-label {
  color: var(--white);
}

.teamwaarden .subtitle {
  font-size: 22px;
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 50px;
}

.waarden-grid {
  display: flex;
  gap: 39px;
}

/* ── WAARDE CARD ── */
.waarde-card {
  background: var(--cream);
  border-radius: 25px;
  flex: 1;
  height: 466px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.wcard-face {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wcard-default {
  padding: 40px 30px 20px;
}

.wcard-default .img-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}

.wcard-default .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.wcard-expanded {
  display: none;
  padding: 40px 30px 24px;
  justify-content: space-between;
}

.wcard-expanded .waarde-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--black);
  flex: 1;
}

.wcard-expanded .card-footer {
  margin-top: 24px;
}

.card-title {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  color: var(--black);
}

.lees-meer-btn {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  font-family: inherit;
  text-align: left;
}

/* Expanded state */
.waarde-card.is-expanded .wcard-default {
  display: none;
}
.waarde-card.is-expanded .wcard-expanded {
  display: flex;
}

/* ── DE RICHTING ── */
.richting {
  background: var(--cream);
}

.richting .content {
  padding: 60px var(--pad) 60px;
}

.richting .section-label {
  color: var(--black);
}

.richting .subtitle {
  font-size: 30px;
  color: var(--black);
  max-width: 900px;
  line-height: 1.5;
  letter-spacing: -0.33px;
  margin-top: 20px;
}

/* ── ONTWERPVRAAG ── */
.ontwerpvraag-box {
  background: var(--cream);
  min-height: 447px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ontwerpvraag {
  text-align: center;
  padding: 60px 220px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.ontwerpvraag h2 {
  font-weight: 900;
  font-size: 70px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 28px;
}

.ontwerpvraag p {
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.77px;
  color: var(--black);
}

/* ── SITUATIE ── */
.situatie {
  padding: 80px var(--pad);
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.situatie-card {
  flex: 1;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  min-height: 512px;
}

.scard-face {
  border-radius: 24px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  height: 100%;
}

.scard-default {
  display: flex;
  background: #f5ece0;
  cursor: pointer;
}

.scard-expanded {
  display: none;
}

.situatie-card.is-expanded .scard-default {
  display: none;
}

.situatie-card.is-expanded .scard-expanded {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 512px;
}

.scard-default .photo-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.scard-default .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Huidige situatie */
#card-huidige .photo-wrap {
  flex: 0 0 356px;
  height: 510px;
}

#card-huidige .photo-wrap img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: scaleX(-1);
}

/* Gewenste situatie */
#card-gewenste .photo-wrap {
  flex: 0 0 356px;
  height: 510px;
}

#card-gewenste .photo-wrap img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.scard-default .info {
  padding: 24px 30px;
}

.scard-default .card-title {
  font-weight: 900;
  font-size: 36px;
  line-height: 1.2;
}

.situatie-lees-meer {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 300;
  text-decoration: underline;
  color: var(--black);
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  font-family: inherit;
}

.scard-expanded-inner {
  padding: 48px 42px;
  color: var(--white);
}

.scard-expanded-inner h3 {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.scard-expanded-inner p {
  font-size: 19px;
  line-height: 1.74;
}

.lees-minder-btn {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 128px;
  font-size: 17px;
  color: var(--white);
  cursor: pointer;
  padding: 10px 24px;
  margin-top: 28px;
  font-family: inherit;
  font-weight: 600;
}

/* ── DOELGROEP ── */
.doelgroep {
  background: var(--navy);
  padding: 60px 0 80px;
  border-radius: 35px 35px 0 0;
}

.doelgroep .section-label {
  color: #eeeded;
  padding: 0 var(--pad);
  margin-bottom: 40px;
}

.doelgroep-row {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding: 0 var(--pad);
  margin-bottom: 40px;
}

.doelgroep-figure {
  flex-shrink: 0;
  width: 377px;
  height: 417px;
  background: #1a69cb;
  border-radius: 200px 50px 40px 40px;
  position: relative;
  overflow: hidden;
}
.doelgroep-figure-2 {
  flex-shrink: 0;
  width: 377px;
  height: 417px;
  background: #1a69cb;
  border-radius: 50px 200px 40px 40px;
  position: relative;
  overflow: hidden;
}

.doelgroep-figure img,
.doelgroep-figure-2 img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 95%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
}

.doelgroep-info {
  background: var(--blue);
  border-radius: 24px;
  flex: 1;
  min-height: 417px;
  padding: 40px 47px 60px;
  color: var(--white);
}

.doelgroep-info h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.74;
  margin-bottom: 12px;
}

.doelgroep-info p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.74;
}

/* ── SCOPES CAROUSEL ── */
.scopes-carousel {
  position: relative;
  overflow: hidden;
}

.scopes-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.scope-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 60px var(--pad) 80px;
  position: relative;
}

.scopes-heading {
  font-weight: 900;
  font-size: 73px;
  line-height: 1.18;
  margin-bottom: 40px;
}

.scope-body {
  display: flex;
  gap: 60px;
  align-items: center;
}

.scope-img-wrap {
  flex-shrink: 0;
  width: 380px;
  display: flex;
  align-items: flex-end;
}

.scope-img-wrap img {
  width: 100%;
  display: block;
}

.scope-text {
  flex: 1;
}

.scope-text h3 {
  font-weight: 900;
  font-size: 42px;
  margin-bottom: 20px;
}

.scope-text p {
  font-size: 19px;
  line-height: 1.74;
  margin-bottom: 12px;
}

.scope-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.18);
  border: none;
  padding: 0;
  line-height: 1;
  color: var(--white);
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.scope-arrow:hover {
  background: rgba(0, 0, 0, 0.35);
}
.scope-arrow-prev {
  left: 20px;
}
.scope-arrow-next {
  right: 20px;
}

.scope-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.scope-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.scope-dot.active {
  background: rgba(0, 0, 0, 0.7);
}

/* ── SPRINT ACCORDION ── */
.sprints {
  margin-top: 2px;
}

details.sprint {
  background: var(--black);
  overflow: hidden;
}

details.sprint summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  cursor: pointer;
  list-style: none;
  height: 120px;
}

details.sprint summary::-webkit-details-marker {
  display: none;
}

.sprint-title {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sprint-title img.arrow {
  height: 28px;
}

.sprint-title span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
}

.sprint-chevron {
  font-size: 36px;
  color: var(--white);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
}

details.sprint[open] .sprint-chevron {
  transform: rotate(180deg);
}

.sprint-body {
  background: var(--cream);
  padding: 60px var(--pad);
  font-size: 19px;
  line-height: 1.74;
  color: var(--black);
}

.sprint-body p {
  max-width: 720px;
}

/* ── HACKATON SPRINT ── */
#hackaton .sprint-body {
  padding: 0;
}

#hackaton .sprint-body > p {
  max-width: none;
}

.hk-intro {
  padding: 50px var(--pad) 60px;
  background: var(--cream);
}

.hk-intro-title {
  font-weight: 700;
  font-size: 35px;
  color: var(--black);
  margin-bottom: 12px;
}

.hk-intro-text {
  font-size: 22px;
  line-height: 1.6;
  color: #757575;
  max-width: none;
}

.hk-ovraag {
  position: relative;
  background: var(--black);
  background-image: url("assets/hackaton-ovraag-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px var(--pad) 60px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hk-ovraag-label {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.hk-ovraag-label img {
  height: 28px;
}

.hk-ovraag-label span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71px;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}

.hk-ovraag-text {
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.77px;
  color: var(--white);
  max-width: 1050px;
}

.hk-aanpak {
  background: var(--cream);
  padding: 70px var(--pad) 80px;
}

.hk-aanpak-title {
  font-weight: 900;
  font-size: 70px;
  text-align: center;
  color: var(--black);
  margin-bottom: 50px;
}

.hk-cards {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.hk-card {
  flex: 1;
  border-radius: 25px;
  padding: 50px 28px 32px;
  position: relative;
  overflow: hidden;
  min-height: 337px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hk-card-icon {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 200px;
  opacity: 0.45;
  pointer-events: none;
}

.hk-card h4 {
  font-weight: 700;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}

.hk-card p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  max-width: none;
}

.hk-prototype {
  background: var(--black);
  padding: 60px var(--pad) 80px;
  color: var(--white);
}

.hk-proto-label {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.hk-proto-label img {
  height: 28px;
}

.hk-proto-label span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71px;
  color: var(--white);
  line-height: 1.2;
}

.hk-proto-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.hk-proto-text {
  flex: 1;
}

.hk-proto-text p {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 24px;
  max-width: none;
}

.hk-proto-phone {
  flex-shrink: 0;
  width: 360px;
}

.hk-proto-phone img,
.hk-proto-phone video {
  width: 100%;
  display: block;
  border-radius: 40px;
}

.hk-proto-phone video {
  aspect-ratio: 944 / 1856;
}

.hk-proto-features {
  display: inline-grid;
  grid-template-columns: auto auto auto auto;
  gap: 13px 42px;
  background: #c7baf6;
  border-radius: 25px;
  padding: 16px 47px;
  margin-top: 40px;
  color: var(--white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.hk-feat-num {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.5;
}

.hk-feat-label {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.5;
}

/* ── SPRINT 1 ── */
#sprint1 .sprint-body {
  padding: 0;
}
#sprint1 .sprint-body > p {
  max-width: none;
}

/* Ontwerprichtlijnen */
.s1-richtlijnen {
  background: var(--black);
  padding: 50px var(--pad) 70px;
}

.s1-richtlijnen-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
}

.s1-richtlijnen-header img {
  height: 28px;
}

.s1-richtlijnen-header span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 70px;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}

.s1-richtlijnen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.s1-rl-card {
  border-radius: 25px;
  padding: 100px 28px 32px;
  position: relative;
  min-height: 269px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.s1-rl-icon-wrap {
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 79px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s1-rl-icon-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.s1-rl-card h4 {
  margin-top: 12px;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.125px;
}

.s1-rl-card p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  letter-spacing: -0.06px;
  max-width: none;
}

/* Methode photos */
.s1-methode-photos {
  display: flex;
  gap: 48px;
}

.s1-methode-card {
  flex: 1;
  border-radius: 25px;
  position: relative;
  height: 337px;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.s1-methode-card img,
.s1-methode-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s1-methode-card span {
  position: absolute;
  bottom: 22px;
  left: 30px;
  font-weight: 700;
  font-size: 25px;
  color: var(--white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

/* Concept */
.s1-concept {
  background: var(--cream);
  padding: 60px var(--pad) 70px;
}

.s1-concept-label {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.s1-concept-label img {
  height: 28px;
}

.s1-concept-label span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71px;
  color: var(--black);
  line-height: 1.2;
}

.s1-concept-title {
  font-weight: 700;
  font-size: 35px;
  color: var(--black);
  margin-bottom: 16px;
  max-width: none;
}

.s1-concept-text {
  font-size: 35px;
  line-height: 1.5;
  color: var(--black);
  max-width: none;
}

/* Inzichten */
.s1-inzichten {
  background: var(--black);
  background-image: url("assets/sprint1-dark-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0 70px;
}

.s1-inzichten-label {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  padding: 0 var(--pad);
}

.s1-inzichten-label img {
  height: 28px;
}

.s1-inzichten-label span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71px;
  color: var(--white);
  line-height: 1.2;
}

.s1-inzichten-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 var(--pad) 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.s1-inzicht-card {
  flex: 0 0 410px;
  height: 469px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.s1-inzicht-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s1-inzicht-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 32px 40px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.78));
  color: var(--white);
}

.s1-inzicht-overlay h4 {
  font-weight: 900;
  font-size: 23px;
  line-height: 1.54;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.s1-inzicht-overlay p {
  font-size: 17px;
  line-height: 1.54;
  letter-spacing: -0.4px;
  max-width: none;
}

/* Prototype 1.0 */
.s1-prototype {
  background: var(--black);
  background-image: url("assets/sprint1-dark-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px var(--pad) 80px;
  color: var(--white);
}

.s1-proto-label {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.s1-proto-label img {
  height: 28px;
}

.s1-proto-label span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71px;
  color: var(--white);
  line-height: 1.2;
}

.s1-proto-title {
  font-weight: 700;
  font-size: 35px;
  color: var(--white);
  margin-bottom: 16px;
  max-width: none;
}

.s1-proto-text {
  font-size: 35px;
  line-height: 1.5;
  color: var(--white);
  max-width: none;
}

.s1-proto-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-image: url("assets/sprint1-proto-bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0;
  position: relative;
}

/* Video overlay on prototype images */
.proto-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vervolgstappen */
.s1-vervolgstappen {
  background: var(--black);
  padding: 60px var(--pad) 80px;
  color: var(--white);
}

.s1-vervolg-label {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.s1-vervolg-label img {
  height: 28px;
}

.s1-vervolg-label span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71px;
  color: var(--white);
  line-height: 1.2;
}

.s1-vervolg-result {
  font-size: 22px;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 40px;
  max-width: none;
}

.s1-vervolg-cards {
  display: flex;
  gap: 30px;
}

.s1-vervolg-card {
  flex: 1;
  border-radius: 25px;
  padding: 51px 32px 32px;
  min-height: 269px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.s1-vervolg-card h4 {
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.125px;
}

.s1-vervolg-card p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
  letter-spacing: -0.08px;
  max-width: none;
}

/* ── SPRINT 2 ── */
#sprint2 .sprint-body {
  padding: 0;
}
#sprint2 .sprint-body > p {
  max-width: none;
}

.s2-proto-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-image: url("assets/sprint2-proto-bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.s2-aanpak {
  background: var(--cream);
  padding-bottom: 80px;
}

.s2-dome-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 40px;
}

.s2-dome-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 542px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.s2-dome-title {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  font-size: 70px;
  color: var(--black);
  white-space: nowrap;
  z-index: 1;
}

.s2-methode-photos {
  display: flex;
  gap: 48px;
  padding: 0 var(--pad);
}

/* ── SPRINT 3 ── */
#sprint3 .sprint-body {
  padding: 0;
}
#sprint3 .sprint-body > p {
  max-width: none;
}

.s3-proto-screen {
  width: 100%;
  height: 700px;
  overflow: hidden;
  line-height: 0;
}

.s3-proto-screen img,
.s3-proto-screen video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.s3-ovraag4 {
  background: var(--black);
  padding: 63px var(--pad) 47px;
  display: flex;
  flex-direction: column;
  gap: 97px;
}

.s3-ovraag4-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s3-ovraag4-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71.4px;
  color: var(--white);
  line-height: 1.21;
}

.s3-ovraag4-desc {
  font-family: "Inter", sans-serif;
  font-size: 35px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.77px;
}

.s3-ovraag4-images {
  display: flex;
  gap: 37px;
  align-items: flex-end;
}

.s3-ovraag4-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.s3-ovraag4-img img {
  position: absolute;
  max-width: none;
  display: block;
}

.s3-ovraag4-img--left {
  width: 609px;
  height: 475px;
  border-radius: 37px;
}

.s3-ovraag4-img--left img {
  width: 122.5%;
  height: 100%;
  left: -11.09%;
  top: 0;
}

.s3-ovraag4-img--right {
  width: 615px;
  height: 464px;
  border-radius: 27px;
}

.s3-ovraag4-img--right img {
  width: 100.03%;
  height: 235.34%;
  left: -0.09%;
  top: -67.6%;
}

.s3-gevolgen {
  background: var(--black);
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.s3-gevolgen img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s3-char-ai {
  background: var(--cream);
  padding: 63px var(--pad) 80px;
}

.s3-char-ai-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71.4px;
  color: var(--black);
  line-height: 1.21;
  margin-bottom: 25px;
}

.s3-char-ai-screens {
  display: flex;
  gap: 37px;
}

.s3-char-screen {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 37px;
}

.s3-char-screen img {
  position: absolute;
  max-width: none;
  display: block;
}

.s3-char-screen--left {
  width: 609px;
  height: 428px;
}

.s3-char-screen--left img {
  width: 122.17%;
  height: 100.05%;
  left: 0;
  top: -0.03%;
}

.s3-char-screen--right {
  width: 615px;
  height: 427px;
}

.s3-char-screen--right img {
  width: 106.99%;
  height: 100.04%;
  left: -6.99%;
  top: -0.02%;
}

/* ── SPRINT 4 ── */
#sprint4 .sprint-body {
  padding: 0;
}

/* Override fixed icon dimensions so flex centering works correctly
   with Figma-exported icons that have varying canvas sizes */
#sprint4 .s1-rl-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#sprint4 .s1-rl-icon-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
}
#sprint4 .sprint-body > p {
  max-width: none;
}

.s4-methode-cards {
  display: flex;
  gap: 25px;
}

/* Ontwerpvraag 5.0 */
.s4-ovraag5 {
  background: var(--black);
  padding: 63px var(--pad) 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.s4-ovraag5-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s4-ovraag5-images {
  display: flex;
  gap: 42px;
}

.s4-ovraag5-img {
  flex: 1;
  height: 474px;
  border-radius: 35px;
  overflow: hidden;
}

.s4-ovraag5-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Character AI Bot */
.s4-char-ai {
  background: var(--black);
  padding: 63px var(--pad) 80px;
  display: flex;
  gap: 100px;
  align-items: center;
}

.s4-char-ai-info {
  flex: 1;
  color: var(--white);
}

.s4-char-ai-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71.4px;
  color: var(--white);
  line-height: 1.21;
  margin-bottom: 40px;
}

.s4-char-ai-info p {
  font-size: 22px;
  line-height: 1.5;
  max-width: none;
}

.s4-char-ai-phone {
  flex-shrink: 0;
  width: 376px;
  height: 523px;
  border-radius: 37px;
  overflow: hidden;
}

.s4-char-ai-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vervolgstappen / aanlevering */
.s4-vervolgstappen {
  background: var(--black);
  padding: 60px var(--pad) 80px;
  color: var(--white);
}

.s4-vervolg-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71.4px;
  line-height: 1.21;
  margin-bottom: 20px;
}

.s4-vervolg-desc {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 50px;
  max-width: none;
}

.s4-vervolg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 49px;
}

.s4-vervolg-card {
  border-radius: 25px;
  padding: 55px 28px 36px;
  min-height: 269px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.s4-vervolg-card h4 {
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.125px;
}

.s4-vervolg-card p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
  max-width: none;
}

/* Onze vragen aan jullie */
.s4-vragen {
  background: var(--black);
  padding: 60px var(--pad) 80px;
}

.s4-vragen-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71.4px;
  color: var(--white);
  line-height: 1.21;
  margin-bottom: 40px;
}

.s4-vragen-list {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.s4-vraag-block {
  border-radius: 25px;
  padding: 24px 56px;
  min-height: 117px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.s4-vraag-block p {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.45;
  color: var(--white);
  max-width: none;
}

.s4-vraag-block p span {
  font-weight: 400;
  font-size: 20px;
}

/* ── SPRINT 5 ── */
#sprint5 .sprint-body {
  padding: 0;
}

#sprint5 .s1-rl-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#sprint5 .s1-rl-icon-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
}

/* Ontwerpvraag 4.0 black block */
.s5-ovraag4 {
  background: var(--black);
  border-radius: 25px;
  padding: 78px var(--pad) 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
}

.s5-ovraag4-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71.4px;
  color: var(--white);
  line-height: 1.21;
}

.s5-ovraag4-desc {
  font-family: "Inter", sans-serif;
  font-size: 35px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.77px;
  max-width: none;
}

/* Ontwerpvraag 5.0 single image */
.s5-ovraag5-img {
  width: 100%;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
}

.s5-ovraag5-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nieuwe video's */
.s5-nieuwe-videos {
  background: var(--black);
  padding: 63px var(--pad) 80px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.s5-nieuwe-videos-text {
  flex: 1;
  color: var(--white);
}

.s5-nieuwe-videos-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 71.4px;
  color: var(--white);
  line-height: 1.21;
  margin-bottom: 32px;
}

.s5-nieuwe-videos-text p {
  font-size: 22px;
  line-height: 1.5;
  max-width: none;
}

.s5-nieuwe-videos-media {
  flex-shrink: 0;
  width: 550px;
  height: 406px;
  border-radius: 25px;
  overflow: hidden;
}

.s5-nieuwe-videos-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--cream);
  margin: 0 20px;
  border-radius: 0 0 25px 25px;
  display: flex;
  justify-content: center;
  padding: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

footer img {
  height: 80px;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */

/* ── Tablet (≤1100px) ── */
@media (max-width: 1100px) {
  :root {
    --pad: 56px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .waarden-grid {
    gap: 24px;
  }
  .s1-richtlijnen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hk-proto-content {
    flex-direction: column;
    gap: 36px;
  }
  .hk-proto-phone {
    max-width: 320px;
  }
  .scope-img-wrap {
    width: 260px;
  }
  .s2-dome-title {
    font-size: 54px;
  }
  .doelgroep-figure {
    width: 300px;
    height: 340px;
  }
  .doelgroep-info {
    min-height: 340px;
  }

  /* Sprint 4 – tablet */
  .s4-vervolg-title,
  .s4-vragen-title,
  .s4-char-ai-title {
    font-size: 54px;
  }
  .s4-vervolg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s4-char-ai {
    gap: 48px;
  }
  .s4-char-ai-phone {
    width: 300px;
    height: 420px;
  }
  .s4-ovraag5-images {
    gap: 24px;
  }
  .s4-ovraag5-img {
    height: 360px;
  }

  /* Sprint 3 – tablet */
  .s3-ovraag4-title {
    font-size: 54px;
  }
  .s3-ovraag4-desc {
    font-size: 26px;
  }
  .s3-ovraag4-img--left,
  .s3-ovraag4-img--right {
    flex: 1;
    min-width: 0;
    width: auto;
  }
  .s3-char-ai-title {
    font-size: 54px;
  }
  .s3-char-screen--left,
  .s3-char-screen--right {
    flex: 1;
    min-width: 0;
    width: auto;
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  :root {
    --pad: 20px;
  }

  /* Layout */
  .main-bg {
    margin: 0 8px;
    border-radius: 16px 16px 0 0;
  }

  /* Nav */
  nav {
    gap: 18px;
    padding: 12px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  nav::-webkit-scrollbar {
    display: none;
  }
  nav .logo {
    height: 36px;
    flex-shrink: 0;
  }
  nav a {
    font-size: 13px;
    flex-shrink: 0;
  }

  /* Shared typography */
  .heading-xl {
    font-size: 38px;
  }
  .section-label {
    font-size: 36px;
    gap: 12px;
  }
  .section-label img.arrow {
    height: 18px;
  }

  /* Hero */
  .hero {
    padding: 36px 16px 0;
  }

  /* Team */
  .team {
    padding: 44px var(--pad);
  }
  .team .intro {
    font-size: 17px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-card {
    height: 360px;
  }

  /* Teamwaarden */
  .teamwaarden {
    padding: 44px 0 52px;
  }
  .teamwaarden .subtitle {
    font-size: 16px;
  }
  .waarden-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .waarde-card {
    height: 360px;
  }
  .wcard-expanded .waarde-text {
    font-size: 16px;
  }

  /* Richting */
  .richting .content {
    padding: 44px var(--pad);
  }
  .richting .subtitle {
    font-size: 18px;
  }
  .ontwerpvraag {
    padding: 44px var(--pad);
  }
  .ontwerpvraag h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .ontwerpvraag p {
    font-size: 20px;
  }

  /* Situatie */
  .situatie {
    flex-direction: column;
    padding: 44px var(--pad);
    gap: 20px;
  }
  .situatie-card {
    min-height: 340px;
  }
  .scard-expanded-inner {
    padding: 36px 28px;
  }
  .scard-expanded-inner h3 {
    font-size: 26px;
  }
  .scard-expanded-inner p {
    font-size: 16px;
  }

  /* Doelgroep */
  .doelgroep {
    padding: 44px 0 52px;
  }
  .doelgroep-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }
  .doelgroep-figure {
    width: 100%;
    height: 240px;
    border-radius: 24px;
  }
  .doelgroep-figure img,
  .doelgroep-figure-2 img {
    height: 95%;
  }
  .doelgroep-figure-2 {
    width: 100%;
    height: 240px;
    border-radius: 24px;
  }
  .doelgroep-info {
    min-height: auto;
    padding: 24px 20px 32px;
  }
  .doelgroep-info h3 {
    font-size: 18px;
  }
  .doelgroep-info p {
    font-size: 14px;
  }

  /* Scopes */
  .scope-slide {
    padding: 44px var(--pad) 68px;
  }
  .scopes-heading {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .scope-body {
    flex-direction: column;
    gap: 20px;
  }
  .scope-img-wrap {
    width: 140px;
    margin: 0 auto;
  }
  .scope-text h3 {
    font-size: 22px;
  }
  .scope-text p {
    font-size: 15px;
  }

  /* Sprint accordion */
  details.sprint summary {
    padding: 16px 20px;
    height: auto;
    min-height: 68px;
  }
  .sprint-title {
    gap: 12px;
  }
  .sprint-title img.arrow {
    height: 16px;
  }
  .sprint-title span {
    font-size: 30px;
  }
  .sprint-chevron {
    font-size: 22px;
  }

  /* ── Shared sprint section styles ── */

  /* Doel (hk-intro) */
  .hk-intro {
    padding: 32px var(--pad) 40px;
  }
  .hk-intro-title {
    font-size: 22px;
  }
  .hk-intro-text {
    font-size: 16px;
  }

  /* Ontwerpvraag sections (dark bg) */
  .hk-ovraag {
    padding: 36px var(--pad) 44px;
    min-height: 160px;
  }
  .hk-ovraag-label {
    gap: 12px;
    margin-bottom: 16px;
  }
  .hk-ovraag-label img {
    height: 18px;
  }
  .hk-ovraag-label span {
    font-size: 28px;
    white-space: normal;
  }
  .hk-ovraag-text {
    font-size: 18px;
  }

  /* Aanpak */
  .hk-aanpak {
    padding: 44px var(--pad) 52px;
  }
  .hk-aanpak-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .hk-cards {
    flex-direction: column;
    gap: 16px;
  }

  /* Prototype (hackaton) */
  .hk-prototype {
    padding: 44px var(--pad) 52px;
  }
  .hk-proto-label {
    gap: 12px;
    margin-bottom: 24px;
  }
  .hk-proto-label img {
    height: 18px;
  }
  .hk-proto-label span {
    font-size: 28px;
  }
  .hk-proto-content {
    flex-direction: column;
    gap: 24px;
  }
  .hk-proto-text p {
    font-size: 16px;
  }
  .hk-proto-phone {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
  .hk-proto-features {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 14px 20px;
  }
  .hk-feat-num {
    font-size: 20px;
  }
  .hk-feat-label {
    font-size: 14px;
  }

  /* Ontwerprichtlijnen */
  .s1-richtlijnen {
    padding: 36px var(--pad) 52px;
  }
  .s1-richtlijnen-header {
    gap: 12px;
    margin-bottom: 24px;
  }
  .s1-richtlijnen-header img {
    height: 18px;
  }
  .s1-richtlijnen-header span {
    font-size: 28px;
    white-space: normal;
  }
  .s1-richtlijnen-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .s1-rl-card {
    padding: 88px 20px 28px;
    min-height: 220px;
  }

  /* Methode photos */
  .s1-methode-photos {
    flex-direction: column;
    gap: 14px;
  }
  .s1-methode-card {
    height: 200px;
    flex: none;
  }
  .s1-methode-card span {
    font-size: 20px;
    left: 20px;
    bottom: 16px;
  }

  /* Concept */
  .s1-concept {
    padding: 44px var(--pad) 52px;
  }
  .s1-concept-label {
    gap: 12px;
    margin-bottom: 16px;
  }
  .s1-concept-label img {
    height: 18px;
  }
  .s1-concept-label span {
    font-size: 28px;
  }
  .s1-concept-title {
    font-size: 20px;
  }
  .s1-concept-text {
    font-size: 18px;
  }

  /* Inzichten */
  .s1-inzichten {
    padding: 44px 0 52px;
  }
  .s1-inzichten-label {
    gap: 12px;
    margin-bottom: 24px;
  }
  .s1-inzichten-label img {
    height: 18px;
  }
  .s1-inzichten-label span {
    font-size: 28px;
  }
  .s1-inzicht-card {
    flex: 0 0 260px;
    height: 320px;
  }
  .s1-inzicht-overlay h4 {
    font-size: 18px;
  }
  .s1-inzicht-overlay p {
    font-size: 14px;
  }

  /* Prototype label (s1) */
  .s1-prototype {
    padding: 44px var(--pad) 52px;
  }
  .s1-proto-label {
    gap: 12px;
    margin-bottom: 20px;
  }
  .s1-proto-label img {
    height: 18px;
  }
  .s1-proto-label span {
    font-size: 28px;
  }
  .s1-proto-title {
    font-size: 20px;
  }
  .s1-proto-text {
    font-size: 18px;
  }

  /* Vervolgstappen */
  .s1-vervolgstappen {
    padding: 44px var(--pad) 52px;
  }
  .s1-vervolg-label {
    gap: 12px;
    margin-bottom: 20px;
  }
  .s1-vervolg-label img {
    height: 18px;
  }
  .s1-vervolg-label span {
    font-size: 28px;
  }
  .s1-vervolg-result {
    font-size: 16px;
  }
  .s1-vervolg-cards {
    flex-direction: column;
    gap: 14px;
  }
  .s1-vervolg-card {
    padding: 32px 20px 24px;
  }
  .s1-vervolg-card h4 {
    font-size: 20px;
  }
  .s1-vervolg-card p {
    font-size: 14px;
  }

  /* Sprint 2 */
  .s2-aanpak {
    padding-bottom: 52px;
  }
  .s2-dome-wrap {
    height: auto;
    padding: 44px var(--pad) 0;
    overflow: visible;
    margin-bottom: 24px;
  }
  .s2-dome-img {
    display: none;
  }
  .s2-dome-title {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    font-size: 32px;
    white-space: normal;
    text-align: left;
    width: auto;
    padding: 0;
  }
  .s2-methode-photos {
    flex-direction: column;
    gap: 14px;
  }

  /* Sprint 4 – mobile */
  .s4-methode-cards {
    flex-direction: column;
    gap: 14px;
  }
  .s4-ovraag5 {
    gap: 36px;
    padding: 44px var(--pad) 40px;
  }
  .s4-ovraag5-images {
    flex-direction: column;
    gap: 14px;
  }
  .s4-ovraag5-img {
    height: 240px;
    border-radius: 20px;
  }
  .s4-char-ai {
    flex-direction: column;
    gap: 36px;
    padding: 44px var(--pad) 52px;
  }
  .s4-char-ai-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .s4-char-ai-info p {
    font-size: 16px;
  }
  .s4-char-ai-phone {
    width: 100%;
    max-width: 300px;
    height: 400px;
    margin: 0 auto;
  }
  .s4-vervolgstappen {
    padding: 44px var(--pad) 52px;
  }
  .s4-vervolg-title {
    font-size: 28px;
  }
  .s4-vragen-title {
    font-size: 48px;
  }
  .s4-vervolg-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .s4-vervolg-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .s4-vervolg-card {
    padding: 32px 20px 24px;
    min-height: auto;
  }
  .s4-vervolg-card h4 {
    font-size: 20px;
  }
  .s4-vervolg-card p {
    font-size: 15px;
  }
  .s4-vragen {
    padding: 44px var(--pad) 52px;
  }
  .s4-vraag-block {
    padding: 20px 24px;
    min-height: auto;
  }
  .s4-vraag-block p {
    font-size: 18px;
  }
  .s4-vraag-block p span {
    font-size: 15px;
  }

  /* Sprint 3 */
  .s3-proto-screen {
    height: 240px;
  }
  .s3-ovraag4 {
    gap: 52px;
    padding: 44px var(--pad) 40px;
  }
  .s3-ovraag4-title {
    font-size: 28px;
  }
  .s3-ovraag4-desc {
    font-size: 16px;
  }
  .s3-ovraag4-images {
    flex-direction: column;
    align-items: stretch;
  }
  .s3-ovraag4-img--left,
  .s3-ovraag4-img--right {
    flex-shrink: 1;
    width: 100%;
    height: 260px;
    border-radius: 20px;
  }
  .s3-ovraag4-img--left img,
  .s3-ovraag4-img--right img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }
  .s3-char-ai {
    padding: 44px var(--pad) 52px;
  }
  .s3-char-ai-title {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .s3-char-ai-screens {
    flex-direction: column;
    gap: 14px;
  }
  .s3-char-screen--left,
  .s3-char-screen--right {
    flex-shrink: 1;
    width: 100%;
    height: 280px;
    border-radius: 20px;
  }
  .s3-char-screen--left img,
  .s3-char-screen--right img {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    left: auto;
    top: auto;
    object-fit: cover;
  }

  /* Sprint 5 – mobile */
  .s5-ovraag4 {
    border-radius: 0;
    padding: 44px var(--pad) 40px;
    gap: 20px;
  }
  .s5-ovraag4-title {
    font-size: 28px;
  }
  .s5-ovraag4-desc {
    font-size: 18px;
  }
  .s5-ovraag5-img {
    height: 260px;
    border-radius: 20px;
  }
  .s5-nieuwe-videos {
    flex-direction: column;
    gap: 36px;
    padding: 44px var(--pad) 52px;
  }
  .s5-nieuwe-videos-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .s5-nieuwe-videos-text p {
    font-size: 16px;
  }
  .s5-nieuwe-videos-media {
    width: 100%;
    height: 260px;
    border-radius: 20px;
  }

  /* Footer */
  footer {
    margin: 0 8px;
    padding: 24px;
    border-radius: 0 0 16px 16px;
  }
  footer img {
    height: 48px;
  }
}
