﻿/* ============================================================
   W3B Bureau — Stylesheet
   Kleuren: Navy #0b2b5e | Oranje #f97316 | Lichtblauw #e2edf8 | Wit #fff
   Font: Plus Jakarta Sans
   ============================================================ */

/* ── Reset & Custom Properties ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       rgb(11, 43, 94);
  --orange:     rgb(249, 115, 22);
  --light-blue: rgb(226, 237, 248);
  --black:      #08090a;
  --white:      #ffffff;
  --hero-bg:    #060c15;

  --font: 'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-pill: 100px;

  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: clip; /* clip (not hidden) preserves position:sticky */
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

.section-label--muted {
  color: rgba(0, 0, 0, 0.38);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.55);
}

/* coloured words */
.accent      { color: var(--orange); }
.accent-dark { color: var(--orange); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--navy);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover {
  background: rgb(230, 97, 10);
}

.btn--outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 60px 8px rgba(0, 0, 0, 0.9);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  box-shadow: 0 8px 80px 12px rgba(0, 0, 0, 1);
}

.header--light {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}
.header--light.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

/* Nav links in light header */
.header--light .nav__link {
  color: var(--black);
}
.header--light .nav__link:hover,
.header--light .nav__link--active {
  color: var(--orange);
}

/* Logo in light header */
.header--light .logo__bureau,
.header--light .logo__w3b {
  color: var(--black);
}

/* Menu toggle in light header */
.header--light .menu-toggle span {
  background: var(--black);
}

/* Open nav altijd donker — ongeacht header kleur */
.header--light .nav.open .nav__link { color: rgba(255,255,255,0.8); }
.header--light .nav.open .nav__link--active,
.header--light .nav.open .nav__link:hover { color: var(--orange); }
.header--light .nav.open .nav__dropdown-link { color: rgba(255,255,255,0.55); }

.header__inner {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo — 2-kolom grid zodat U exact boven W staat */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.05em;
  flex-shrink: 0;
  transition: opacity var(--transition);
  text-decoration: none;
}
.logo:hover { opacity: 0.85; }

/* "BUREAU" — kleine tekst bovenaan */
.logo__bureau {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.41em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-right: -0.41em;
}

/* "W3B." — grote tekst onderaan */
.logo__w3b {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.logo__orange { color: var(--orange); }
.logo__dot    { color: var(--orange); }

/* Nav */
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover  { background: rgb(230, 97, 10); }

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

/* invisible bridge so hover stays active while moving mouse to dropdown */
.nav__item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__chevron {
  font-size: 0.6rem;
  transition: transform var(--transition);
  vertical-align: middle;
  margin-left: 0.15em;
}

.nav__item--dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 300;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown-link:hover {
  background: rgba(249,115,22,0.12);
  color: var(--orange);
}

/* Light header dropdown */
.header--light .nav__dropdown {
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.08);
}
.header--light .nav__dropdown-link {
  color: rgba(8,9,10,0.6);
}
.header--light .nav__dropdown-link:hover {
  background: rgba(249,115,22,0.08);
  color: var(--orange);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  padding-block: 150px 100px;
  overflow: hidden;
}

/* Gradient fade zodat de bovenkant altijd zwart blijft */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #000000 15%,
    rgba(0,0,0,0.85) 30%,
    var(--hero-bg) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* gradient blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(75px);
}

.blob--orange {
  width: 640px;
  height: 640px;
  background: rgba(249, 115, 22, 0.72);
  top: 200px;
  right: -80px;
}

.blob--blue {
  width: 500px;
  height: 500px;
  background: rgba(150, 195, 255, 0.42);
  bottom: -60px;
  left: -80px;
}

.blob--navy {
  width: 400px;
  height: 400px;
  background: rgba(11, 43, 94, 0.75);
  top: 50%;
  right: 22%;
  transform: translateY(-50%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  padding-inline: 4rem;
}

.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

/* Social proof */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars {
  display: flex;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--hero-bg);
  object-fit: cover;
  margin-inline-start: -9px;
}
.avatars .avatar:first-child { margin-inline-start: 0; }

.proof-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(249,115,22,0.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero__cta-btn:hover {
  background: #e05a0a;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(249,115,22,0.55);
}

.hero__cta-ghost {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.hero__cta-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.proof-text strong { color: var(--white); }

/* Rotating badge */
.hero-badge {
  position: fixed;
  bottom: 3.5rem;
  right: 3rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  cursor: pointer;
}

.hero-badge__circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}

.hero-badge__circle text {
  fill: var(--orange);
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 5px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-badge__arrow {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background var(--transition), transform var(--transition);
}
.hero-badge:hover .hero-badge__arrow {
  background: rgb(230, 97, 10);
  transform: scale(1.1);
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  background: #F5F0E8;
  padding-block: 110px 60px;
}

.philosophy__inner {
  max-width: 920px;
}

.philosophy__text {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: #0d1520;
}

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.about {
  padding-block: 60px 110px;
  background: #F5F0E8;
}

.about__inner {
  display: grid;
  grid-template-columns: 65% 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
}

.about__media {
  margin-left: 0;
}

.about__img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(11, 43, 94, 0.12);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(11, 43, 94, 0.15), 0 4px 16px rgba(11, 43, 94, 0.08);
  padding: 3.5rem 3rem;
  height: 100%;
  justify-content: center;
  margin-left: -3rem;
  position: relative;
  z-index: 1;
}

.stat__num {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 43, 94, 0.5);
  margin-top: 0.3rem;
}

/* ============================================================
   WORKS
   ============================================================ */
.works {
  padding-block: 30px 110px;
  background: #F5F0E8;
  border-top: none;
}

.works__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
  display: flex;
  flex-direction: column;
}

.works__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 4rem;
  text-align: center;
}

.works__label {
  display: block;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 3rem;
  text-align: center;
}

.services-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.services-col {
  background: #fff;
  border-radius: 50%;
  width: clamp(300px, 32vw, 440px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
  text-align: center;
  position: relative;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
}

.services-col:hover {
  transform: translateY(-14px);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.13),
    0 6px 20px rgba(0, 0, 0, 0.07);
}

.services-col__cta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 0.85rem 2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background var(--transition);
}

.services-col__cta-bar:hover {
  background: #d95f00;
}

.services-col__blob {
  display: none;
}

.services-col__title,
.services-col__text {
  position: relative;
  z-index: 1;
}

.services-col__title {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.services-col__subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.75;
  margin-bottom: 1rem;
}

.services-col__text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.55);
}

.services-col__more {
  display: inline;
  margin-top: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.services-col__more:hover {
  text-decoration: underline;
}

/* ===== WEB TYPE CARDS ===== */
.web-type-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.web-type-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition), transform var(--transition);
}

.web-type-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.web-type-card__orange {
  background: var(--orange);
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.web-type-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-family: var(--font);
}

.web-type-card__name {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.web-type-card__body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.web-type-card__subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.web-type-card__text {
  font-size: 0.95rem;
  color: rgba(8,9,10,0.52);
  line-height: 1.7;
}

.web-type-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
  margin-top: 0.4rem;
  transition: color var(--transition);
}

.web-type-card__cta:hover {
  color: var(--orange);
}

/* Soorten websites — losse oranje panelen met ronde hoeken */
.team-intro-section--web-type {
  padding-block: 2rem;
  min-height: 26rem;
}

.team-intro-section--web-type .team-intro {
  align-items: center;
}

.team-intro-section--web-type .team-intro__card-accent {
  left: 2rem;
  right: 52%;
  border-radius: 1.5rem;
  height: 20rem;
  top: 50%;
  transform: translateY(-50%);
}

.team-intro-section--web-type .team-intro__visual {
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  padding-right: 1.5rem;
}

/* Cursor glow */
#cursor-glow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, rgba(249,115,22,0.06) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 9999;
  mix-blend-mode: normal;
}

/* Number block on the orange panel (soorten websites) */
.wt-num-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: clamp(8rem, 15vw, 15rem);
  font-weight: 800;
  color: rgba(255,255,255,0.22);
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: var(--font);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  display: grid;
  grid-template-columns: 180px minmax(300px, 1100px);
  background: #f5efe6;
  overflow: visible;
  padding: 5rem 4rem;
  gap: 3rem;
  align-items: start;
  box-sizing: border-box;
  justify-content: center;
}

.faq-section__left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 16px;
  position: sticky;
  top: 100px;
  height: 520px;
}

.faq-section__word {
  writing-mode: horizontal-tb;
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: var(--font);
  user-select: none;
  transform: rotate(-90deg);
}

.faq-section__right {
  padding: 0.5rem 4rem 3.5rem;
  max-width: 1200px;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-section--mirrored {
  grid-template-columns: 1fr min(70vw, 860px);
}

.faq-section--mirrored .faq-section__left {
  border-radius: 2rem 0 0 2rem;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 4rem;
}

.faq-tabs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--black);
}

.faq-tab {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.15);
  background: transparent;
  color: rgba(0,0,0,0.5);
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-tab:hover,
.faq-tab.faq-tab--active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-item[hidden] {
  display: none;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-item__icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-size: 0.8rem;
  opacity: 0.6;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--black);
  font-size: 0.88rem;
  line-height: 1.75;
}

.faq-item__body p {
  margin: 0;
}

.faq-item.is-open .faq-item__body {
  max-height: 400px;
  padding: 0 1.5rem 1.2rem;
}

.works__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 3rem;
}

.works__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* first card spans two rows */
.work-card--tall {
  grid-row: span 2;
}

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(0.75);
}

.work-card--tall img {
  min-height: 500px;
}

.work-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.work-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.work-card__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.work-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.works__cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: 110px;
  background: var(--navy);
}

.services__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.services__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: background var(--transition), border-color var(--transition);
}

.service-card:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.35);
}

.service-card__icon {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: #F5F0E8;
  padding-block: 110px;
}

.pricing__inner {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}

.pricing__title {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.pricing__intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.pricing__list {
  list-style: none;
  margin-block: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing__list li {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  padding-left: 1.2rem;
  position: relative;
}

.pricing__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #1e3a5f;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing__cta span {
  background: #1e3a5f;
  color: #fff;
  width: clamp(36px, 3.5vw, 44px);
  height: clamp(36px, 3.5vw, 44px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  flex-shrink: 0;
}

.pricing__slider-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.pricing__arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.pricing__arrow:hover {
  background: #e05a0a;
  transform: scale(1.08);
}

.pricing__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 680px;
}

.pricing__cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.pricing-card {
  position: absolute;
  width: 42%;
  height: 580px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.5s ease,
              background 0.5s ease,
              opacity 0.5s ease;
}

.pricing-card[data-pos="center"] {
  transform: translate(-50%, -50%) scale(1.05);
  z-index: 3;
  opacity: 1;
}

.pricing-card[data-pos="left"] {
  transform: translate(-110%, -50%) scale(0.93);
  z-index: 2;
  opacity: 1;
}

.pricing-card[data-pos="right"] {
  transform: translate(10%, -50%) scale(0.93);
  z-index: 2;
  opacity: 1;
}

.pricing-card--featured {
  background: var(--navy);
  box-shadow: 0 8px 32px rgba(80,40,200,0.18);
}

.pricing-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

.pricing-card--featured .pricing-card__name {
  color: #fff;
}

.pricing-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.55);
  flex-grow: 0;
}

.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,0.7);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-grow: 1;
}

.pricing-card__features li {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.65);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.8);
}

.pricing-card--featured .pricing-card__features li::before {
  color: var(--orange);
}

.pricing-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.pricing-card--featured .pricing-card__footer {
  border-top-color: rgba(255,255,255,0.15);
}

.pricing-card__price {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
}

.pricing-card--featured .pricing-card__price {
  color: #fff;
}

.pricing-card__tagline {
  display: block;
  font-size: 0.7rem;
  text-align: center;
  color: rgba(0,0,0,0.4);
  margin-top: 0.15rem;
}

.pricing-card--featured .pricing-card__tagline {
  color: rgba(255,255,255,0.45);
}

.pricing-card__btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 1.8vw, 1.5rem);
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--transition);
}

.pricing-card--featured .pricing-card__btn {
  background: var(--orange);
}

.pricing-card--featured .pricing-card__btn:hover {
  background: #e05a0a;
}

.pricing-card__btn:hover {
  background: #e05a0a;
}

/* CTA zichtbaarheid — mobile variant standaard verborgen */
.pricing__cta--mobile { display: none; }
.pricing__cta-mobile-wrap { display: none; }

/* Desktop: arrows-row transparant in flex layout, pijlen links/rechts van viewport */
.pricing__arrows-row { display: contents; }
.pricing__arrow--prev { order: -1; }
.pricing__viewport { order: 0; }
.pricing__arrow--next { order: 1; }

/* Desktop: arrows-row is transparant in de flex layout */
.pricing__arrows-row { display: contents; }

/* FAQ mobiele balk — standaard verborgen */
.faq-section__mobile-bar { display: none; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: #fff;
  padding-block: 180px 160px;
  overflow: hidden;
  position: relative;
}

.reviews-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.reviews-wave--top {
  top: 0;
}

.reviews-wave--bottom {
  bottom: 0;
}

.reviews-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

.reviews-inner {
  max-width: 1600px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-label {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.reviews-ticker {
  overflow: hidden;
  position: relative;
}

.reviews-ticker::before,
.reviews-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(max((100vw - 1600px) / 2, 0px) + 4rem);
  z-index: 2;
  pointer-events: none;
}

.reviews-ticker::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.reviews-ticker::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.reviews-ticker-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviews-slide 60s linear infinite;
}

.reviews-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes reviews-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: calc((min(100vw, 1600px) - 8rem) / 2.5 - 1.5rem);
  max-width: 400px;
  min-height: 380px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.review-stars {
  display: flex;
  gap: 1px;
}

.review-stars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  color: var(--orange);
  font-size: 1.4rem;
  border-radius: 0;
}

.review-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin: 0;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.55);
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}

.review-company {
  display: block;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.4);
}

.reviews-cta {
  text-align: center;
  margin-top: 4rem;
}

.tp-link {
  font-size: 1.05rem;
  font-weight: 800;
  color: #00B67A;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.tp-link:hover {
  text-decoration: underline;
}

/* ============================================================
   CTA HERO (beige)
   ============================================================ */
.cta-hero {
  background: #f5efe6;
  padding-block: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.cta-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #000;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 1px 12px rgba(255,255,255,0.5);
}

.cta-hero__sub {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.8);
  max-width: 460px;
  line-height: 1.65;
  margin: 0;
}

@keyframes cta-btn-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

@keyframes cta-btn-shine {
  0%   { left: -75%; }
  100% { left: 130%; }
}

.cta-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(249,115,22,0.35);
  position: relative;
  overflow: hidden;
  animation: cta-btn-pulse 2s ease-in-out infinite;
  transition: background var(--transition), box-shadow var(--transition);
}

.cta-hero__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0;
  transition: none;
}

.cta-hero__btn:hover {
  background: #e05a0a;
  box-shadow: 0 10px 32px rgba(249,115,22,0.5);
  animation-play-state: paused;
}

.cta-hero__btn:hover::after {
  opacity: 1;
  animation: cta-btn-shine 0.55s ease forwards;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: 130px;
  background: var(--hero-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1.1;
}

.contact__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.48);
  max-width: 440px;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #f5efe6;
  padding-block: 80px 0;
}

.footer__container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 6rem;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding-top: 0.5rem;
}

/* Logo dark variant inside footer */
.footer__logo {
  align-self: flex-start;
}
.footer__logo .logo__bureau,
.footer__logo .logo__w3b {
  color: var(--black);
}

.footer__tagline {
  font-size: 1.1rem;
  color: rgba(8, 9, 10, 0.55);
  line-height: 1.7;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: var(--black);
  font-size: 1.35rem;
  transition: background var(--transition), color var(--transition);
}
.footer__social:hover {
  background: var(--orange);
  color: var(--white);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer__col-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
}

.footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__col-links a,
.footer__col-links span {
  font-size: 1.05rem;
  color: rgba(8, 9, 10, 0.6);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__col-links a:hover { color: var(--black); }

.footer__bottom {
  padding-block: 1.5rem;
  text-align: center;
}

.footer__copy {
  font-size: 1rem;
  color: rgba(8, 9, 10, 0.4);
}

/* ============================================================
   SUBPAGES
   ============================================================ */

.page-hero {
  background: var(--hero-bg);
  padding-block: 200px 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero--black {
  background: #08090a;
}

.page-hero--philosophy {
  padding-block: 150px 100px;
  text-align: center;
  overflow-x: hidden;
}

.section-label--orange {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.philosophy__text--light {
  color: var(--white);
}

.page-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.page-hero__title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.page-hero__title span { color: var(--orange); }

.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
}

/* ── About Split (hero 2) ────────────────────────────────── */
.about-split {
  background: #f5efe6;
  padding-block: 120px;
}

.about-split__inner {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: stretch;
}

.about-split__photo {
  display: flex;
}

.about-split__photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.about-split__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.about-split__title span { color: var(--orange); }

.about-split__text {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Shared page section */
.page-section {
  padding-block: 120px;
}

.page-section--beige { background: #f5efe6; }
.page-section--dark  { background: #0d1117; }

/* ── Team intro (Maja) ───────────────────────────────────── */
.team-intro-section .container {
  max-width: 1600px;
  padding-inline: 4rem;
}

.team-intro-section {
  position: relative;
  overflow: hidden;
}

.team-intro__card-accent {
  position: absolute;
  right: 0;
  left: 55%;
  top: 50%;
  transform: translateY(-50%);
  height: 26rem;
  background: var(--orange);
  border-radius: 20px 0 0 20px;
  z-index: 0;
}

.team-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.team-intro__content {
  padding-top: 1.5rem;
}

/* Slides */
.team-intro__slides {
  display: grid;
}
.team-intro__slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.team-intro__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  animation: teamSlideIn 0.38s ease;
}
@keyframes teamSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Nav arrows */
.team-intro__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.team-intro__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--black);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.team-intro__arrow:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.team-intro__counter {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.35);
}

.team-intro__name {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.1;
    margin-bottom: 0.2rem;
}

.team-intro__role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

.team-intro__text {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.team-intro__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 3rem 0 0;
}

/* Photo stack */
.team-intro__photo-stack {
  position: relative;
  width: clamp(220px, 24vw, 320px);
}

.team-intro__photo-card {
  width: 100%;
}

.team-intro__photo-card--main {
  position: relative;
  z-index: 2;
}

.team-intro__photo-card--peek {
  position: absolute;
  top: 3rem;
  left: 3.5rem;
  z-index: 1;
  pointer-events: none;
}

.team-intro__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

/* ── Team intro reversed ─────────────────────────────────────── */
.team-intro-section--reverse .team-intro {
  grid-template-columns: 1fr 1fr;
}

.team-intro-section--reverse .team-intro__content {
  grid-column: 2;
  padding-top: 0;
}

.team-intro-section--reverse {
  padding-block-start: 30px;
  padding-block-end: 60px;
}

.team-intro-section--reverse .team-intro__card-accent {
  left: 0;
  right: 55%;
  border-radius: 0 20px 20px 0;
}

/* ✔ MAJA vergrendeld — niet aanpassen */
.team-intro-section--maja .team-intro__card-accent {
  top: 45.5%;
}

.team-intro__card-accent::after {
  content: none;
}

/* Hero 3 — oranje blok rechts, W3B iets meer naar rechts */
.team-intro-section--wat-wij-doen {
  padding-block-start: 60px;
}

.team-intro-section--wat-wij-doen .team-intro__content {
  padding-top: 3rem;
}

.team-intro-section--wat-wij-doen .team-intro__card-accent {
  top: 50%;
}

/* ✔ THORSTEN vergrendeld — niet aanpassen */
.team-intro-section--thorsten .team-intro__card-accent::after {
  content: none;
}

.team-intro-section--thorsten .team-intro__visual {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 5.5rem;
}

.team-intro-section--thorsten .team-intro__photo-stack {
  width: calc((26rem - 2rem) * 0.75);
  margin: 1rem 0 1rem 1rem;
}

.team-intro-section--reverse .team-intro__visual {
  order: -1;
  padding: 0 5.5rem 0 0;
  justify-content: flex-end;
  align-items: flex-start;
}

.team-intro-section--reverse .team-intro__photo-stack {
  width: calc((26rem - 2rem) * 0.75);
  margin: 0 1rem 1rem 0;
}

.team-intro-section--reverse .team-intro__photo-card--main {
  transform: none;
  transform-origin: top right;
}

.team-intro-section--reverse .team-intro__photo-card--peek {
  left: auto;
  right: 3.5rem;
  top: 3rem;
}

.page-section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8,9,10,0.35);
  margin-bottom: 1rem;
}
.page-section--dark .page-section__label { color: rgba(255,255,255,0.3); }

.page-section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
}
.page-section__title span { color: var(--orange); }
.page-section--dark .page-section__title { color: var(--white); }

.page-section__text {
  font-size: 1.05rem;
  color: rgba(8,9,10,0.6);
  max-width: 640px;
  line-height: 1.8;
  margin-top: 1.25rem;
}
.page-section--dark .page-section__text { color: rgba(255,255,255,0.55); }

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.feature-card {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }

.feature-card__icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.feature-card__text {
  font-size: 0.92rem;
  color: rgba(8,9,10,0.55);
  line-height: 1.7;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  counter-reset: step;
}

.process-step {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0,0,0,0.1);
}
.page-section--dark .process-step { border-top-color: rgba(255,255,255,0.1); }

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.page-section--dark .process-step__title { color: var(--white); }

.process-step__text {
  font-size: 0.92rem;
  color: rgba(8,9,10,0.55);
  line-height: 1.7;
}
.page-section--dark .process-step__text { color: rgba(255,255,255,0.5); }

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.projects-grid .project-card--wide {
  grid-column: span 2;
}

.project-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111827;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  text-decoration: none;
  transition: transform var(--transition);
}
.project-card:hover { transform: scale(1.015); }

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}

.project-card__content {
  position: relative;
  z-index: 1;
}

.project-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.35rem;
}

.project-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

/* ── Blog / Krantenstijl ─────────────────────────────────── */
.blog-section .container {
  max-width: 1600px;
  padding-inline: 4rem;
}


/* Categoriebalk */
.blog-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--black);
}
.blog-cat-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.15);
  background: transparent;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-cat-btn:hover,
.blog-cat-btn.is-active {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.blog-cat-btn--orange.is-active,
.blog-cat-btn--orange:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Krantengrid */
.newspaper-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Uitgelicht (groot) artikel */
.news-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.news-featured:hover { transform: scale(1.012); }

.news-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
  z-index: 1;
}
.news-featured__body {
  position: relative;
  z-index: 2;
  padding: 2.25rem;
}
.news-featured__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}
.news-featured__title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.news-featured__excerpt {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.news-featured__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
}
.news-featured__read-more {
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Zijkolom met gestapelde kleine artikelen */
.news-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-side-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  align-items: stretch;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex: 1;
}
.news-side-card__img {
  width: 90px;
  min-width: 90px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  align-self: flex-start;
}
.news-side-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  align-items: stretch;
}
.news-side-card__body > * {
  text-align: left;
}
.news-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}
.news-side-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.news-side-card__title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.news-side-card__date {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.35);
  font-weight: 600;
  margin-top: auto;
  padding-top: 0.4rem;
}

/* Divisor */
.news-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}
.news-divider__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  white-space: nowrap;
}
.news-divider__line {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.1);
}

/* Onderste kaarten grid */
.news-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}
.news-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.news-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card__tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.news-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
}
.news-card__read-more {
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Contact layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(8,9,10,0.65);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--black);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.5rem;
  font-family: var(--font);
}
.contact-form__submit:hover { background: #e05a0a; }

.contact-form__submit--full {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.contact-container {
  max-width: 1600px;
  padding-inline: 4rem;
}

.contact-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin: 0 0 2.5rem;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 4rem;
  max-width: 1200px;
  margin-inline: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--hero-bg);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--white);
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  font-size: 1.3rem;
  color: var(--orange);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ── Circle Gallery ────────────────────────────────────────── */
.circle-gallery {
  background: #f5efe6;
  padding-block: 100px;
  overflow: hidden;
}

.circle-gallery--dark {
  background: #08090a;
  padding-block: 80px 140px;
  margin-top: -60px;
}

.circle-gallery--dark .circle-gallery__title {
  color: var(--white);
}

.circle-gallery--dark .circle-gallery__sub {
  color: rgba(255,255,255,0.5);
}

.circle-gallery--beige {
  background: #f5efe6;
  padding-block: 200px 60px;
  margin-top: -60px;
}

.circle-gallery__wrap {
  position: relative;
  width: 1260px;
  height: 1260px;
  margin: 0 auto;
}

.circle-gallery__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 220px;
  margin-top: -110px;
  margin-left: -85px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 6px 28px rgba(0,0,0,0.6);
  transition: filter 0.3s ease;
  z-index: 1;
}

.circle-gallery__photo:hover {
  filter: brightness(1.2) drop-shadow(0 0 16px rgba(249,115,22,0.55));
  z-index: 10;
}



/*
  16 foto's — rotate(N) translateX(R) rotate(90deg)
*/
.circle-gallery__photo:nth-child(1)  { transform: rotate(0deg)     translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(2)  { transform: rotate(22.5deg)  translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(3)  { transform: rotate(45deg)    translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(4)  { transform: rotate(67.5deg)  translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(5)  { transform: rotate(90deg)    translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(6)  { transform: rotate(112.5deg) translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(7)  { transform: rotate(135deg)   translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(8)  { transform: rotate(157.5deg) translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(9)  { transform: rotate(180deg)   translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(10) { transform: rotate(202.5deg) translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(11) { transform: rotate(225deg)   translateX(500px) rotate(90deg); }


/* ============================================================
   PROCESS SECTION — services-websites.html
   ============================================================ */

.process-section {
  background: #f5efe6;
  padding: 6rem 0;
  overflow: visible;
  position: relative;
}

.process-section .section-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding-inline: 4rem;
  position: relative;
  z-index: 1;
}

.process-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--black);
}

.process-section .section-header p {
  font-size: 1.1rem;
  color: rgba(8, 9, 10, 0.55);
}

.process-body {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Step items ── */
.process-step-item {
  padding: 2rem 0;
  border-top: 1px solid rgba(8, 9, 10, 0.12);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.process-step-item:last-child {
  border-bottom: 1px solid rgba(8, 9, 10, 0.12);
}

.process-step-item.is-active {
  opacity: 1;
}

.process-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.process-step-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.65rem;
}

.process-step-card p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: rgba(8, 9, 10, 0.62);
}

/* ── Mockup column ── */
.process-mockup-col {
  align-self: stretch;
}

.process-mockup-sticky {
  position: sticky;
  top: 120px;
}

.site-mockup {
  background: #1c1c1e;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

.mockup-chrome {
  background: #2c2c2e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mockup-dots { display: flex; gap: 6px; }

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-urlbar {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: monospace;
  text-align: center;
}

.mockup-content {
  position: relative;
  min-height: 440px;
  background: #fff;
  overflow: hidden;
}

/* ── Mockup layers ── */
.mockup-layer {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mockup-layer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav */
.ml-nav {
  top: 0;
  height: 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 5;
}

.mn-logo { width: 60px; height: 10px; background: var(--black); border-radius: 3px; }
.mn-links { display: flex; gap: 8px; margin-left: auto; }
.mn-link  { width: 30px; height: 6px; background: #ddd; border-radius: 3px; }

/* Hero layer */
.ml-hero {
  top: 40px;
  height: 150px;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.ml-hero-text { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mh-h1 { width: 80%; height: 14px; background: rgba(255,255,255,0.9); border-radius: 3px; }
.mh-h2 { width: 55%; height: 10px; background: rgba(255,255,255,0.35); border-radius: 3px; }

.mh-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 4px;
  letter-spacing: 0.05em;
  width: fit-content;
}

.ml-hero-img {
  width: 100px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Cards layer */
.ml-cards {
  top: 190px;
  padding: 16px;
  display: flex;
  gap: 8px;
}

.ml-card {
  flex: 1;
  background: #f8f8f8;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #eee;
}

.mc-icon  { width: 20px; height: 20px; background: var(--orange); border-radius: 4px; margin-bottom: 6px; opacity: 0.85; }
.mc-line1 { width: 70%; height: 7px; background: #ccc; border-radius: 3px; margin-bottom: 4px; }
.mc-line2 { width: 50%; height: 6px; background: #e5e5e5; border-radius: 3px; }

/* Feature layer */
.ml-feat {
  top: 310px;
  height: 80px;
  background: #fff;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #f0f0f0;
}

.ml-feat-img { width: 80px; height: 56px; background: #e8e8e8; border-radius: 6px; flex-shrink: 0; }
.ml-feat-text { display: flex; flex-direction: column; gap: 6px; }
.mf-l1 { width: 120px; height: 8px; background: #ccc; border-radius: 3px; }
.mf-l2 { width: 90px; height: 6px; background: #e5e5e5; border-radius: 3px; }

/* Footer layer */
.ml-footer {
  top: 390px;
  height: 50px;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}

.mfoot-brand { width: 50px; height: 8px; background: rgba(255,255,255,0.7); border-radius: 3px; }
.mfoot-links { display: flex; gap: 8px; margin-left: auto; }
.mfoot-link  { width: 28px; height: 5px; background: rgba(255,255,255,0.3); border-radius: 3px; }

/* Badge */
.mockup-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
}

.mockup-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Deco rings */
.hero-deco-clip {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.deco { position: absolute; border-radius: 50%; }

.deco-proc-ring-1 {
  display: none;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  top: -120px;
  right: -100px;
}

.deco-proc-blob-1 {
  display: none;
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.08);
  bottom: 40px;
  left: -60px;
}
.circle-gallery__photo:nth-child(12) { transform: rotate(247.5deg) translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(13) { transform: rotate(270deg)   translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(14) { transform: rotate(292.5deg) translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(15) { transform: rotate(315deg)   translateX(500px) rotate(90deg); }
.circle-gallery__photo:nth-child(16) { transform: rotate(337.5deg) translateX(500px) rotate(90deg); }

.circle-gallery__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: max-content;
  z-index: 5;
  pointer-events: none;
}

.circle-gallery__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.circle-gallery__title span {
  color: var(--orange);
}

.circle-gallery__sub {
  font-size: 0.88rem;
  color: rgba(8,9,10,0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.circle-gallery__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease;
  pointer-events: auto;
}

.circle-gallery__cta:hover { background: #e05a0a; }

/* Mobiele strip — standaard verborgen op desktop */
.circle-gallery__mobile-view { display: none; }

/* Strip layout */
.circle-gallery__mobile-text {
  text-align: center;
  padding: 3.5rem 1.5rem 1.5rem;
}
.circle-gallery__mobile-text .circle-gallery__title {
  font-size: 1.6rem;
  white-space: normal;
}
.circle-gallery__strip-wrap {
  overflow: hidden;
  width: 100%;
}
.circle-gallery__strip {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: strip-slide 42s linear infinite;
}
.circle-gallery__strip img {
  width: 130px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
@keyframes strip-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Beige CTA hero variant */
.cta-hero--beige {
  background: #f5efe6;
}
.cta-hero--beige .cta-hero__title {
  color: var(--black);
}
.cta-hero--beige .section-label--muted {
  color: rgba(8,9,10,0.4);
}
.cta-hero--beige .cta-hero__sub {
  color: rgba(8,9,10,0.55);
}

/* ── Brand Intro (foto + tekst) ──────────────────────────────── */
.brand-intro {
  background: #f5efe6;
  padding-block: 100px;
}

.brand-intro__container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.brand-intro__image-wrap {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: unset;
  box-shadow: none;
}

/* ── Moodboard grid ─── */
.brand-moodboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.brand-moodboard--single {
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
}

.brand-moodboard--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1.25rem;
}

.brand-moodboard__item {
  overflow: hidden;
  position: relative;
}

.brand-moodboard__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.brand-moodboard__item:hover img {
  transform: scale(1.06);
}

.brand-moodboard__item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}

.brand-moodboard__item:nth-child(2) {
  aspect-ratio: 4 / 3;
}

.brand-moodboard__item:nth-child(3),
.brand-moodboard__item:nth-child(4),
.brand-moodboard__item:nth-child(5) {
  aspect-ratio: 1 / 1;
}

/* ── Moodboard carousel ─── */
.moodboard-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.moodboard-carousel__viewport {
  overflow: visible;
  width: 100%;
}

.moodboard-carousel__track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.moodboard-carousel__slide {
  flex: 0 0 88%;
}

.moodboard-carousel__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(8,9,10,0.4);
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.moodboard-carousel__arrow {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--black);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.moodboard-carousel__arrow--prev { }
.moodboard-carousel__arrow--next { }

.moodboard-carousel__arrow:hover {
  background: var(--orange);
}

.moodboard-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.moodboard-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.moodboard-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(8,9,10,0.18);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.moodboard-carousel__dot.is-active {
  background: var(--orange);
  transform: scale(1.3);
}

.brand-intro__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.brand-intro__title span { color: var(--orange); }

.brand-intro__body {
  font-size: 0.97rem;
  color: rgba(8,9,10,0.55);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.brand-intro__body--accent {
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(8,9,10,0.7);
  margin-bottom: 2rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--orange);
}

.brand-intro__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brand-intro__list li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-intro__list li i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.brand-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.brand-intro__cta:hover {
  background: #e05a0a;
  transform: translateY(-2px);
}

/* ── Brand Steps ─────────────────────────────────────────────── */
/* ===== BRAND PROCESS ===== */
.home-blog {
  background: #F5F0E8;
  padding-block: 40px 80px;
}

.home-blog .container {
  max-width: 1600px;
  padding-inline: 4rem;
}

.home-blog .news-featured {
  min-height: 720px;
}

.home-blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
}

.home-blog__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0.4rem 0 0;
}

.home-blog__all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding-bottom: 0.2rem;
  transition: gap var(--transition);
}
.home-blog__all:hover { gap: 0.7rem; }

/* ── Lighthouse Scores (SEO page) ───────────────────────────── */
.lh-section {
  background: #f5efe6;
  padding-block: 100px;
}

/* Section layout — mirrors .pricing__inner */
.lh-section__inner {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}

.lh-section__left {
  text-align: left;
}

/* lh arrows row — verborgen op desktop */
.lh-arrows-row { display: none; }

.lh-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lh-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.lh-arrow:hover {
  background: #e05a0a;
  transform: scale(1.08);
}

.lh-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 500px;
}

.lh-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Stacked peeking carousel cards */
.lh-ccard {
  position: absolute;
  width: 64%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(8,9,10,0.09);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.5s ease,
              opacity 0.5s ease;
}

.lh-ccard[data-pos="center"] {
  transform: translate(-50%, -50%) scale(1.05);
  z-index: 3;
  opacity: 1;
}

.lh-ccard[data-pos="left"] {
  transform: translate(-110%, -50%) scale(0.93);
  z-index: 2;
  opacity: 1;
}

.lh-ccard[data-pos="right"] {
  transform: translate(10%, -50%) scale(0.93);
  z-index: 2;
  opacity: 1;
}

/* Client card labels */
.lh-client-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(8,9,10,0.35);
  margin: 0 0 0.25rem;
}

.lh-client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 1.5rem;
}

.lh-ccard__scores {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.lh-ccard .lh-score__label {
  font-size: 0.68rem;
  white-space: nowrap;
}

.lh-ccard .lh-circle {
  width: 50px;
  height: 50px;
  font-size: 0.9rem;
  border-width: 3px;
}

.lh-ccard__divider {
  height: 1px;
  background: rgba(8,9,10,0.07);
  margin: 1.5rem 0;
}

.lh-ccard__big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lh-ccard .lh-big-circle {
  width: 110px;
  height: 110px;
  font-size: 2.2rem;
  border-width: 6px;
}

.lh-ccard__big-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(8,9,10,0.45);
}

.lh-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.lh-intro__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0.5rem 0 1rem;
}
.lh-intro__title span { color: var(--orange); }

.lh-intro__text {
  font-size: 1rem;
  color: rgba(8,9,10,0.5);
  line-height: 1.7;
}

.lh-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(8,9,10,0.09);
  padding: 3rem;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.lh-scores-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(8,9,10,0.07);
  margin-bottom: 2.5rem;
}

.lh-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.lh-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid #0cce6b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0cce6b;
  font-family: var(--font);
}

.lh-score__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(8,9,10,0.5);
  font-family: var(--font);
}

.lh-detail {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
}

.lh-detail__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lh-big-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 8px solid #0cce6b;
  background: rgba(12,206,107,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #0cce6b;
  font-family: var(--font);
}

.lh-big-circle__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(8,9,10,0.6);
}

.lh-detail__note {
  font-size: 0.75rem;
  color: rgba(8,9,10,0.35);
  line-height: 1.6;
  text-align: center;
  max-width: 240px;
  margin: 0;
}

.lh-legend {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.lh-legend__item {
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(8,9,10,0.5);
}
.lh-legend__item::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lh-legend__item--red::before    { background: #ff4e42; }
.lh-legend__item--orange::before { background: #ffa400; }
.lh-legend__item--green::before  { background: #0cce6b; }

.lh-preview__img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(8,9,10,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: block;
}

/* ── SEO Types — klassieke SEO vs AI-SEO (GEO) ───────────────── */
.seo-types {
  background: #F5F0E8;
  padding-block: 100px 80px;
}

.seo-types__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 4rem;
  gap: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.13);
}

.seo-types__card {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.seo-types__card--classic {
  background: var(--black);
  color: #fff;
}

.seo-types__card--ai {
  background: var(--orange);
  color: #fff;
}

.seo-types__icon {
  font-size: 2rem;
  opacity: 0.7;
}

.seo-types__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.seo-types__title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.seo-types__text {
  font-size: 0.93rem;
  line-height: 1.75;
  opacity: 0.8;
  margin: 0;
}

.seo-types__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.seo-types__list li {
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  opacity: 0.9;
}

.seo-types__list .bi-check-circle-fill {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.seo-types__footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(8,9,10,0.45);
  padding-inline: 4rem;
}

.brand-process {
  background: #f5efe6;
  padding-block: 100px;
}

.brand-process__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.brand-process__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
}

.brand-process__title span { color: var(--orange); }

.brand-process__intro {
  font-size: 1rem;
  color: rgba(8,9,10,0.45);
  line-height: 1.65;
}

.brand-process__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.brand-process__track--3col {
  grid-template-columns: repeat(3, 1fr);
}

#projects.brand-process {
  padding-block-start: 20px;
}

.brand-process__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: gap var(--transition);
}
.brand-process__more:hover { gap: 0.65rem; }

.brand-process .container {
  max-width: 1540px;
}

.brand-process__phase {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(8,9,10,0.09);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition), box-shadow var(--transition);
  background: #ffffff;
  overflow: hidden;
}

.brand-process__phase:last-child {
  border-right: none;
}

.brand-process__phase:hover {
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(8,9,10,0.09);
}

.brand-process__top {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(8,9,10,0.08);
}

.brand-process__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-family: var(--font);
}

.brand-process__phase-name {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.brand-process__phase-desc {
  font-size: 0.95rem;
  color: rgba(8,9,10,0.5);
  line-height: 1.7;
  flex: 1;
}

.brand-process__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(8,9,10,0.07);
}

.brand-process__list li {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(249,115,22,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.brand-process__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  opacity: 0.65;
}

/* ===== TEAM CARDS ===== */
.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  max-width: 1200px;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__info {
  margin-top: 1.25rem;
}

.team-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
}

.team-card__role {
  font-size: 0.88rem;
  color: rgba(8,9,10,0.45);
  font-weight: 500;
  margin: 0 0 1rem;
}

.team-card__desc {
  font-size: 1rem;
  color: rgba(8,9,10,0.55);
  line-height: 1.8;
  margin: 0;
}

/* Subpage responsive */
@media (max-width: 768px) {
  .page-hero { padding-block: 140px 80px; }
  .about-split__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split__photo img { height: 320px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid .project-card--wide { grid-column: span 1; }
  .contact-form { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-steps__grid { grid-template-columns: 1fr; }
  .brand-steps__grid .brand-step:nth-child(4),
  .brand-steps__grid .brand-step:nth-child(5) { grid-column: span 1; }
  .brand-process__track { grid-template-columns: 1fr 1fr; }
  .circle-gallery { padding-block: 60px 0; overflow: visible; }
  .circle-gallery__wrap {
    left: calc(50% - 630px);
    margin: 0;
    transform: scale(0.55);
    transform-origin: center top;
    margin-bottom: -368px;
  }
}

@media (max-width: 480px) {
  .circle-gallery { padding-block: 40px 0; overflow: visible; }
  .circle-gallery__wrap {
    left: calc(50% - 630px);
    margin: 0;
    transform: scale(0.38);
    transform-origin: center top;
    margin-bottom: -508px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-process__track {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-process__phase {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .brand-process__phase:nth-child(3n) {
    border-right: none;
  }
  .brand-process__phase:nth-child(4),
  .brand-process__phase:nth-child(5) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  /* Header mobile */
  .nav {
    position: fixed;
    inset-block-start: 72px;
    inset-inline: 0;
    background: #0a0a0b;
    padding: 1.5rem 1.5rem 2rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav__list > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav__list > li:last-child { border-bottom: none; margin-top: 1.25rem; }
  .nav__link {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    padding: 1rem 0;
    width: 100%;
  }
  .nav__link--cta {
    font-size: 0.88rem;
    padding: 0.75rem 1.75rem;
    display: inline-flex;
  }
  /* Process deco verbergen op mobiel */
  .deco-proc-ring-1,
  .deco-proc-blob-1 { display: none; }

  /* Nav link underline uitschakelen op mobiel */
  .nav__link::after,
  .nav__link--active::after,
  .nav__link:hover::after { width: 0 !important; display: none; }

  .nav__dropdown {
    position: static;
    left: auto;
    translate: none;
    background: transparent;
    box-shadow: none;
    border: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    padding: 0 0 0.75rem 1rem;
    display: none;
    flex-direction: column;
  }
  .nav__item--dropdown.is-open .nav__dropdown { display: block; }
  .nav__item--dropdown.is-open .nav__dropdown li { display: block; width: 100%; }
  .header--light .nav__dropdown {
    background: transparent !important;
    border: none !important;
    transition: none;
  }
  .header--light .nav__dropdown-link,
  .nav__dropdown-link {
    color: #ffffff !important;
    background: none !important;
    font-size: 0.85rem;
    padding: 0.75rem 0;
  }
  .header--light .nav__dropdown-link:hover,
  .nav__dropdown-link:hover { color: var(--orange) !important; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero { padding-block: 100px 80px; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .blob--orange { width: 340px; height: 340px; right: -120px; }
  .blob--navy   { display: none; }
  .hero-badge   { bottom: 2rem; right: 1.5rem; width: 110px; height: 110px; }
  .hero-badge__circle text { font-size: 18px; }
  .hero-badge__arrow { width: 42px; height: 42px; font-size: 1.2rem; }

  /* Circle gallery — mobiel: cirkel weg, strip tonen */
  .circle-gallery { padding-block: 2.5rem 0; overflow: hidden; }
  .circle-gallery__wrap { display: none; }
  .circle-gallery__mobile-view { display: block; }

  /* Cursor glow verbergen op mobiel */
  #cursor-glow { display: none !important; }

  /* Pricing titel groter op mobiel */
  .pricing__title { font-size: 2rem; }
  .pricing__title br { display: none; }

  /* Blog pagina */
  .blog-section .container { padding-inline: 1.25rem; }
  .blog-categories { margin-top: 1.5rem; }
  .news-bottom-grid { grid-template-columns: 1fr; }

  /* About — Wat wij doen */
  .wwd-grid { grid-template-columns: 1fr !important; gap: 0.5rem !important; }
  .wwd-label-col { display: none !important; }
  .wwd-label--mobile { display: block !important; margin-bottom: 0.75rem; text-align: left !important; }
  .team-intro-section .container { padding-inline: 1.25rem; }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__img { height: 280px; }

  /* Works */
  .works__grid {
    grid-template-columns: 1fr;
  }
  .work-card--tall { grid-row: span 1; }
  .work-card--tall img { min-height: 280px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact { padding-block: 90px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__container { padding-inline: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__container { padding-inline: 1.25rem; }
}


/* ============================================================
   WEBSITE TYPE MODALS — services-websites.html
   ============================================================ */

/* Button reset for cta-bar */
.services-col__cta-bar {
  border: none;
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
}

/* Backdrop */
.wm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wm-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Modal container */
.wm {
  position: fixed;
  inset: 0;
  z-index: 901;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.wm.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Card */
.wm__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  position: relative;
  max-height: 90vh;
}

/* Visual panel (dark left side) */
.wm__visual {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  gap: 1.25rem;
}

/* Content panel (white right side) */
.wm__content {
  padding: 3rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
}

/* Close button */
.wm__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
  font-family: var(--font);
}

.wm__close:hover { background: rgba(255, 255, 255, 0.32); }

/* Content typography */
.wm__content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}

.wm__content h2 span { color: var(--orange); }

.wm__intro {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(8, 9, 10, 0.62);
}

.wm__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wm__checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
}

.wm__checklist li i {
  color: var(--orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.wm__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: background var(--transition);
}

.wm__cta-btn:hover { background: #d95f00; }

/* ── Mini browser wrapper ── */
.wm-browser {
  width: 230px;
  background: #1c1c1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.wm-browser__chrome {
  background: #2c2c2e;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.wm-dot { width: 9px; height: 9px; border-radius: 50%; }
.wm-dot:nth-child(1) { background: #ff5f57; }
.wm-dot:nth-child(2) { background: #febc2e; }
.wm-dot:nth-child(3) { background: #28c840; }

.wm-browser__url {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
  text-align: center;
}

/* Shared line helpers */
.wm-line { height: 6px; border-radius: 3px; }
.wm-line--w90 { width: 90%; }
.wm-line--w80 { width: 80%; }
.wm-line--w75 { width: 75%; }
.wm-line--w70 { width: 70%; }
.wm-line--w60 { width: 60%; }
.wm-line--w55 { width: 55%; }
.wm-line--w50 { width: 50%; }
.wm-line--w40 { width: 40%; }
.wm-line--white     { background: rgba(255, 255, 255, 0.9); }
.wm-line--white-dim { background: rgba(255, 255, 255, 0.35); }
.wm-line--dark      { background: rgba(8, 9, 10, 0.7); }
.wm-line--dark-dim  { background: rgba(8, 9, 10, 0.2); }

.wm-btn { width: 52px; height: 18px; background: var(--orange); border-radius: 4px; margin-top: 8px; }
.wm-btn--white { background: #fff; }

/* Scroll hint text */
.wm-scroll-hint {
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  letter-spacing: 0.08em;
}

/* ── One-pager sections ── */
.wm-op-nav {
  height: 28px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.wm-op-nav::before {
  content: '';
  display: block;
  width: 36px;
  height: 7px;
  background: var(--black);
  border-radius: 3px;
  margin: 10px 0 0 12px;
}

.wm-op-hero { background: var(--black); padding: 18px 14px; }
.wm-op-cards { background: #fff; padding: 10px 8px; display: flex; gap: 6px; }
.wm-op-about { background: #f5efe6; padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.wm-op-cta { background: var(--orange); padding: 14px; display: flex; flex-direction: column; }
.wm-op-footer { background: var(--black); padding: 10px 14px; }

.wm-mini-card { flex: 1; height: 45px; background: #f8f8f8; border-radius: 5px; border: 1px solid #eee; }

/* ── Business website sections ── */
.wm-bw-nav {
  background: var(--black);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wm-bw-logo { width: 36px; height: 7px; background: #fff; border-radius: 3px; }
.wm-bw-navlinks { display: flex; gap: 5px; margin-left: auto; }
.wm-bw-navlink { width: 22px; height: 5px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.wm-bw-navlink--active { background: var(--orange); }

.wm-bw-hero { background: #f5efe6; padding: 18px 14px; display: flex; flex-direction: column; }

.wm-bw-pages { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 8px; background: #e8e0d8; }
.wm-bw-page { background: #fff; border-radius: 5px; padding: 7px 8px; display: flex; flex-direction: column; gap: 5px; }
.wm-bw-page-label { font-size: 0.45rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Blog sections ── */
.wm-blog-featured { background: var(--black); padding: 16px 14px; display: flex; flex-direction: column; gap: 5px; }
.wm-blog-tag { width: 36px; height: 10px; background: var(--orange); border-radius: 3px; margin-bottom: 4px; }

.wm-blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 8px; background: #fff; }
.wm-blog-card { background: #f8f8f8; border-radius: 5px; overflow: hidden; }
.wm-blog-card-img { height: 40px; background: #e0d8cc; }
.wm-blog-card-img--alt { background: #d0ccc0; }
.wm-blog-card-body { padding: 6px 7px; display: flex; flex-direction: column; gap: 4px; }

/* ============================================================
   RESPONSIVE — LAPTOP / TABLET / MOBILE
   Breakpoints: 1280px | 1024px | 768px | 480px
   ============================================================ */

/* Globale overflow fix — voorkomt horizontale scroll op alle schermen */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* ── 1280px — Laptop ────────────────────────────────────────── */
@media (max-width: 1280px) {
  .nav__list { gap: 2rem; }
  .hero { padding-inline: 2.5rem; }
  .about__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about__img { height: 520px; }
  .pricing__inner { gap: 3rem; padding-inline: 2.5rem; }
  .pricing-card__btn { font-size: clamp(0.65rem, 1vw, 0.8rem); padding: clamp(0.45rem, 0.9vw, 0.68rem) clamp(0.88rem, 1.6vw, 1.3rem); }
  .footer__grid { gap: 3rem; }
  .footer__container { padding-inline: 2.5rem; }
  .brand-process .container { padding-inline: 2.5rem; }
  .about-split__inner { gap: 3rem; padding-inline: 2.5rem; }
  .team-intro { gap: 3rem; }
  .team-cards { gap: 4rem; }
  .newspaper-grid { gap: 1.5rem; }
  .faq-section { grid-template-columns: min(55vw, 860px) 1fr; }
  .brand-intro__container { gap: 3rem; padding-inline: 2.5rem; }
  .process-body { gap: 3rem; padding-inline: 2.5rem; }
  .lh-section__inner { gap: 3rem; padding-inline: 2.5rem; }
  .compare-section { padding-inline: 1.5rem; }
}

/* ── 1024px — Tablet landscape ──────────────────────────────── */
@media (max-width: 1024px) {
  .nav__list { gap: 1.5rem; }
  .nav__link { font-size: 0.82rem; }
  .hero__title { font-size: clamp(2rem, 6vw, 3rem); }

  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__img { height: 380px; }
  .about__content { margin-left: 0; padding: 2rem; }

  .pricing__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 2rem; }
  .pricing__viewport { height: 520px; }
  .pricing-card__btn { font-size: clamp(0.62rem, 1vw, 0.75rem); padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(0.75rem, 1.4vw, 1.1rem); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
  .footer__container { padding-inline: 2rem; }

  .brand-process__track--3col { grid-template-columns: repeat(2, 1fr); }

  .services-cols { grid-template-columns: repeat(2, 1fr); }
  .services-col {
    width: clamp(260px, 44vw, 440px);
    border-radius: 1.5rem;
    aspect-ratio: unset;
    padding: 2.5rem 2rem;
  }

  .about-split__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 2rem; }

  .team-intro { gap: 2.5rem; }
  .team-intro__card-accent { display: none; }
  .team-cards { gap: 3rem; max-width: 100%; }

  .circle-gallery__wrap {
    transform: scale(0.7);
    transform-origin: center top;
    margin-bottom: -260px;
  }

  .faq-section { grid-template-columns: 1fr; padding-block: 3rem; }
  .faq-section__left { padding: 1.5rem 2rem; justify-content: flex-start; min-height: unset; position: static; }
  .faq-section__word { font-size: clamp(3rem, 10vw, 5rem); }
  .faq-section__right { padding: 0 2rem 3rem; height: auto; overflow: visible; }
  .faq-tabs { padding-bottom: 0.5rem; }

  .newspaper-grid { grid-template-columns: 1fr; }
  .news-featured { min-height: 360px; }
  .home-blog .news-featured { min-height: 360px; }

  .brand-intro__container { grid-template-columns: 1fr; gap: 2.5rem; padding-inline: 2rem; }

  .process-body { grid-template-columns: 1fr; gap: 2rem; padding-inline: 2rem; }
  .process-mockup-col { display: none; }

  .lh-section__inner { grid-template-columns: 1fr; gap: 2rem; padding-inline: 2rem; }
  .lh-viewport { height: 320px; }

  .brand-process .container { padding-inline: 2rem; }

  .compare-section { padding-inline: 1rem; font-size: 0.85rem; overflow-x: auto; }
  .compare-table { min-width: 700px; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.5rem; }
}

/* ── 768px — Tablet staand & grote telefoon ──────────────────── */
@media (max-width: 768px) {

  /* Blog container volle breedte op mobiel */
  .home-blog .container { padding-inline: 1.25rem; }
  .news-side { width: 100%; }
  .news-side-card { width: 100%; }

  /* Blobs knippen zodat ze niet buiten het scherm steken */
  .blob { max-width: 100vw; overflow: hidden; }
  .blob--orange { width: 300px; height: 300px; right: -60px; }
  .blob--navy, .blob--blue { display: none; }

  /* Hero */
  .hero { padding-inline: 1.25rem; }
  .hero__inner { padding-inline: 0; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* Alle containers geen padding overflow */
  .container { padding-inline: 1.25rem; }

  /* FAQ */
  .faq-section__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    background: var(--orange);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0.75rem 0.75rem 0;
    margin-bottom: 0.5rem;
    margin-left: -0.75rem;
    align-self: flex-start;
    padding-left: 1rem;
  }
  .faq-section__right { height: auto !important; overflow: visible; padding: 0; }
  .faq-section__left { display: none; }
  .faq-section { grid-template-columns: 1fr; padding: 2.5rem 0.75rem 3.5rem; }
  .faq-tabs { flex-wrap: wrap; gap: 0.4rem; justify-content: center; }

  /* Brand process — alles 1 kolom */
  .brand-process__track { grid-template-columns: 1fr !important; }
  .brand-process__track--3col { grid-template-columns: 1fr !important; }
  .brand-process .container { padding-inline: 1.25rem; }
  .brand-process__phase { padding: 1.5rem 1.25rem; }

  /* Services cols */
  .services-cols { grid-template-columns: 1fr; }
  .services-col {
    width: 100%;
    max-width: 100%;
    border-radius: 1.25rem;
    aspect-ratio: unset;
    padding: 2rem 1.5rem;
  }

  /* Footer */
  .footer__brand { grid-column: span 1; padding-top: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__container { padding-inline: 1.25rem; }

  /* Pricing — mobiel */
  .pricing__inner { display: block !important; padding-inline: 0; }
  .pricing__left { padding-inline: 1.25rem; }
  .pricing__cta--desktop { display: none; }
  .pricing__cta-mobile-wrap { display: block; text-align: center; margin-bottom: 1.25rem; }
  .pricing__cta--mobile { display: inline-flex; font-size: 1.1rem; }
  .pricing__cta--mobile span { width: 48px; height: 48px; font-size: 1.3rem; }
  .pricing__slider-wrap { display: block; width: 100%; }
  .pricing__viewport { overflow-x: auto; padding: 1.5rem 0; height: auto; width: 100%; box-sizing: border-box; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .pricing__cards {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 2.5rem;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .pricing__cards::-webkit-scrollbar { display: none; }
  .pricing-card {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    width: calc(100vw - 5rem) !important;
    min-width: calc(100vw - 5rem) !important;
    max-width: calc(100vw - 5rem) !important;
    height: auto !important;
    min-height: unset !important;
    flex-shrink: 0;
    scroll-snap-align: center;
    margin-right: 1rem;
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0,0.09);
  }
  .pricing-card:last-child { margin-right: 0; }
  .pricing-card[data-pos="center"],
  .pricing-card[data-pos="left"],
  .pricing-card[data-pos="right"] {
    transform: none !important;
    opacity: 1 !important;
  }
  .pricing__arrows-row {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    padding: 0 0 1.25rem;
  }
  .pricing__arrow { display: flex; width: 48px; height: 48px; font-size: 1.1rem; }
  .pricing-card__btn { padding: 0.5rem 1rem; font-size: 0.78rem; }

  /* Reviews — full-width auto-loop op mobiel */
  .reviews-ticker::before,
  .reviews-ticker::after { display: none; }
  .reviews-section { padding-block: 80px 60px; }
  .reviews-ticker-track {
    animation: reviews-slide 35s linear infinite;
    gap: 1rem;
  }
  .review-card {
    width: calc(100vw - 3rem) !important;
    min-width: calc(100vw - 3rem) !important;
    max-width: calc(100vw - 3rem) !important;
    min-height: unset;
  }
  .about__content { padding: 1.5rem; margin-left: 0; }

 /* About split */
  .about-split { overflow: hidden; }
  .about-split__inner { grid-template-columns: 1fr; gap: 2rem; padding-inline: 1.25rem; }
  .about-split__photo { overflow: hidden; max-width: 100%; order: 1; }
  .about-split__photo img { min-height: 260px; width: 100%; max-width: 100%; }
  .about-split__photo img { height: 320px; }

  /* Team */
  .team-cards { gap: 2rem; grid-template-columns: 1fr; }
  .team-intro { grid-template-columns: 1fr; gap: 2rem; }
  .team-intro__card-accent { display: none; }

  /* Process section websites */
  .process-section { padding-inline: 0; }
  .section-header { padding: 3rem 1.25rem 2rem; }
  .process-body { grid-template-columns: 1fr; gap: 2rem; padding-inline: 1.25rem; }
  .process-mockup-col { display: none; }

  /* Brand intro */
  .brand-intro__container { grid-template-columns: 1fr; gap: 2rem; padding-inline: 1.25rem; }
  .brand-intro__text { order: -1; }
  .brand-intro__image-wrap { order: 1; display: none; }

  /* LH section SEO */
  .lh-section { overflow-x: hidden; }
  .lh-section__inner { display: block !important; padding-inline: 1.25rem; }
  .lh-section__left { margin-bottom: 2rem; }
  .lh-slider-wrap { display: flex; flex-direction: column; gap: 0; width: 100%; }
  .lh-arrow--desktop-only { display: none; }
  .lh-viewport { overflow: hidden; width: 100%; height: auto; padding: 1rem 0; }
  .lh-cards {
    position: static;
    display: flex;
    flex-direction: row;
    height: auto;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1.25rem;
  }
  .lh-cards::-webkit-scrollbar { display: none; }
  .lh-ccard {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    top: auto !important;
    left: auto !important;
    width: calc(100vw - 4rem) !important;
    min-width: calc(100vw - 4rem) !important;
    height: auto !important;
    flex-shrink: 0;
    scroll-snap-align: center;
    margin-right: 1rem;
  }
  .lh-ccard:last-child { margin-right: 0; }
  .lh-ccard[data-pos="left"],
  .lh-ccard[data-pos="right"],
  .lh-ccard[data-pos="center"] {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .lh-arrows-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0 1rem;
  }

  /* Newspaper */
  .newspaper-grid { grid-template-columns: 1fr; }
  .news-featured { min-height: 300px; }
  .home-blog .news-featured { min-height: 300px; }

  /* Subpage grids */
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid .project-card--wide { grid-column: span 1; }
  .contact-form { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-steps__grid { grid-template-columns: 1fr; }
  .brand-steps__grid .brand-step:nth-child(4),
  .brand-steps__grid .brand-step:nth-child(5) { grid-column: span 1; }

  /* Page hero */
  .page-hero { padding-block: 140px 80px; }
  .page-hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Compare table */
  .compare-section { overflow-x: auto; padding-inline: 0; }
  .compare-table { min-width: 700px; }

  /* Moodboard */
  .moodboard-carousel__viewport { border-radius: 1rem; }

  /* Websites page — SCHONE CODE stack op mobiel */
  .page-section.brand-process .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .page-section.brand-process .container > div[style*="grid-template-columns: 1fr 1fr"] .about-split__photo {
    order: 1;
  }

  /* Stedenpagina's — LOKAAL & ONZE USP onder elkaar op mobiel */
  .page-section.page-section--beige .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ── 480px — Kleine telefoon ─────────────────────────────────── */
@media (max-width: 480px) {

  /* Blobs */
  .blob--orange { width: 200px; height: 200px; right: -40px; top: 100px; }

  /* Container */
  .container { padding-inline: 1rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__container { padding-inline: 1rem; }

  /* Pricing */
  .pricing__viewport { height: 520px; }
  .pricing__arrow { width: 38px; height: 38px; font-size: 1rem; }
  .pricing__inner { padding-inline: 1rem; }

  /* Brand process */
  .brand-process__track { grid-template-columns: 1fr !important; }
  .brand-process__phase { padding: 1.25rem 1rem; }
  .brand-process .container { padding-inline: 1rem; }

  /* FAQ tabs */
  .faq-tab { padding: 0.4rem 0.9rem; font-size: 0.72rem; }

  /* Headings */
  .page-section__title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Compare table */
  .compare-section { overflow-x: auto; }
  .compare-table { min-width: 600px; font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 0.5rem 0.4rem; }

  /* Hero badge */
  .hero-badge { display: none; }

  /* Team cards */
  .team-cards { grid-template-columns: 1fr; }

  /* Hero proof */
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ============================================================
   BLOG ARTIKEL PAGINA
   ============================================================ */

.article-hero {
  background: var(--black);
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.article-hero__back:hover { color: var(--orange); }

.article-hero__tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.article-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.article-hero__meta {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-hero__cover {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: 14px;
}

.article-cover-wrap {
  background: var(--black);
  padding: 0 2rem 4rem;
  display: flex;
  justify-content: center;
}

/* Article body */
.article-body {
  background: #fff;
  padding: 5rem 2rem;
}

.article-body__inner {
  max-width: 740px;
  margin: 0 auto;
}

.article-body__inner h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--black);
  margin: 2.5rem 0 0.85rem;
  line-height: 1.2;
}

.article-body__inner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin: 2rem 0 0.65rem;
}

.article-body__inner p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(8,9,10,0.75);
  margin-bottom: 1.25rem;
}

.article-body__inner ul,
.article-body__inner ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-body__inner li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(8,9,10,0.75);
  margin-bottom: 0.4rem;
}

.article-body__inner strong {
  color: var(--black);
  font-weight: 700;
}

.article-pullquote {
  border-left: 4px solid var(--orange);
  padding: 1rem 1.5rem;
  margin: 2.5rem 0;
  background: #fdf8f3;
  border-radius: 0 8px 8px 0;
}

.article-pullquote p {
  font-size: 1.15rem !important;
  font-weight: 600;
  font-style: italic;
  color: var(--black) !important;
  margin: 0 !important;
}

.article-divider {
  border: none;
  border-top: 1px solid rgba(8,9,10,0.1);
  margin: 3rem 0;
}

/* More articles */
.article-more {
  background: #f5efe6;
  padding: 5rem 2rem;
  text-align: center;
}

.article-more__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2.5rem;
}

.article-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.article-more__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.article-more__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

.article-more__card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-more__card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-more__card-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.article-more__card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  flex: 1;
}

@media (max-width: 768px) {
  .article-hero { padding: 7rem 1.25rem 3rem; }
  .article-cover-wrap { padding: 0 1.25rem 2.5rem; }
  .article-body { padding: 3rem 1.25rem; }
  .article-more { padding: 3rem 1.25rem; }
  .article-more__grid { grid-template-columns: 1fr; max-width: 400px; }
  .article-hero__meta { flex-direction: column; gap: 0.4rem; }
}