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

:root {
  --black:    #1d1d1f;
  --gray-900: #2d2d2f;
  --gray-600: #6e6e73;
  --gray-200: #d2d2d7;
  --gray-100: #f5f5f7;
  --white:    #ffffff;
  --blue:     #0071e3;
  --blue-dark:#0055b3;
  --green:    #34c759;
  --red:      #ff3b30;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-card: 0 2px 20px rgba(0,0,0,.08), 0 0 1px rgba(0,0,0,.06);
  --shadow-float: 0 8px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.08);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1100px;
  --nav-h: 116px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h4 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
p  { line-height: 1.65; }

.gradient-text {
  background: linear-gradient(135deg, #0071e3 0%, #34aadc 50%, #5ac8fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--gray { background: var(--gray-100); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub { font-size: 1.15rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 980px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: scale(1.02); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-ghost:hover { background: rgba(0,113,227,.08); transform: scale(1.02); }

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--gray-100); transform: scale(1.02); }

.btn-nav {
  background: var(--blue);
  color: var(--white);
  padding: 11px 24px;
  font-size: .95rem;
}
.btn-nav:hover { background: var(--blue-dark); }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: all .15s;
  position: relative;
  opacity: 0.55;
}
.lang-switch a:hover { opacity: 1; transform: scale(1.05); }
.lang-switch a.active { opacity: 1; border-color: var(--blue); box-shadow: 0 0 0 2px rgba(0,113,227,.15); }
.lang-switch svg { width: 100%; height: 100%; display: block; }

.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.1); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-full {
  height: 100px;
  width: auto;
  display: block;
}
/* nav-wordmark verborgen — komt al uit het logo zelf */
.nav .logo-mark { display: none; }
/* footer wordmark blijft text-based (witte tekst op zwart) */
.footer .logo-mark { display: inline; font-size: 1.2rem; font-weight: 900; letter-spacing: -0.035em; color: white; }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-900);
  transition: color .15s;
}
.nav-links a:hover { color: var(--blue); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .15s;
  transform-origin: center;
}
/* Animeer naar X wanneer menu open is */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 850;
  transform: translateY(-110%);
  transition: transform .3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu li a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(0,113,227,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(90,200,250,.07) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
}
.badge {
  display: inline-block;
  background: rgba(0,113,227,.1);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 980px;
  margin-bottom: 28px;
}
.hero-intro {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--gray-600);
  max-width: 620px;
  margin-bottom: 24px;
  line-height: 1.55;
  font-weight: 500;
}
.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-signature {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-top: 56px;
}
.hero-signature .brand-mark {
  color: var(--black);
  font-weight: 800;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gray-200));
  margin: 0 auto;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── PROPS ────────────────────────────────────────────────────── */
.props-section { padding: 0; }
.props-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: var(--black);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 0 0 0;
}
.prop { padding: 56px 48px; }
.prop ul { display: flex; flex-direction: column; gap: 20px; }
.prop ul li { font-size: 1rem; line-height: 1.5; font-weight: 500; }

.prop.no { background: var(--gray-900); }
.prop.no li { color: rgba(255,255,255,.55); padding-left: 28px; position: relative; }
.prop.no li::before {
  content: '✕';
  position: absolute; left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: .85rem;
}

.prop-divider {
  width: 1px;
  height: 180px;
  background: rgba(255,255,255,.1);
}

.prop.yes { background: var(--black); }
.prop.yes li { color: var(--white); padding-left: 28px; position: relative; }
.prop.yes li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── SERVICES ─────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-card--featured {
  background: var(--black);
  color: var(--white);
}
.service-tag {
  display: inline-block;
  background: rgba(0,113,227,.12);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 980px;
  align-self: flex-start;
}
.service-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.service-card h3 { line-height: 1.1; }
.service-card p { color: var(--gray-600); font-size: .975rem; }
.service-card--featured p { color: rgba(255,255,255,.6); }

.service-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-list li {
  font-size: .9rem;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
  color: var(--gray-900);
}
.service-card--featured .service-list li { color: rgba(255,255,255,.85); }
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.service-card--featured .service-list li::before { color: rgba(255,255,255,.4); }

.service-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.price-from { font-size: .8rem; color: var(--gray-600); }
.service-card--featured .price-from { color: rgba(255,255,255,.6); }
.service-card--featured .price { color: var(--white); }
.service-card--featured .price-incl { color: rgba(255,255,255,.45); }
.price { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--black); }
.price-incl { font-size: .8rem; color: var(--gray-600); }

/* Delivery banner */
.delivery-banner {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.delivery-item { display: flex; align-items: center; gap: 16px; }
.delivery-icon {
  font-size: 1.8rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,113,227,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.delivery-icon svg { width: 22px; height: 22px; }
.delivery-item strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.delivery-item p { font-size: .85rem; color: var(--gray-600); margin: 0; }
.delivery-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* Andere wensen block */
.other-needs {
  margin-top: 32px;
  background: linear-gradient(135deg, #f5f7fc 0%, #eef4ff 100%);
  border-radius: var(--radius-md);
  padding: 36px 44px;
}
.other-needs-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
.other-needs h4 { font-size: 1.2rem; margin: 8px 0 8px; }
.other-needs p { color: var(--gray-600); font-size: .95rem; max-width: 640px; }
.other-needs-cta { flex-shrink: 0; }

/* ── LEGAL PLACEHOLDER PAGES ────────────────────────────────────── */
.legal-page {
  padding: calc(var(--nav-h) + 80px) 0 120px;
  min-height: 60vh;
}
.legal-page .container { max-width: 720px; }
.legal-page h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}
.legal-page .lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 32px;
}
.legal-page .legal-meta {
  font-size: .85rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
  margin-top: 48px;
}
.legal-page a { color: var(--blue); }
.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.legal-page h2:first-of-type { margin-top: 32px; }
.legal-page p { margin-bottom: 14px; line-height: 1.7; color: var(--gray-900); }
.legal-page .doc-version {
  font-size: .82rem;
  color: var(--gray-600);
  margin-top: -8px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

/* ── COOKIE BANNER ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(29, 29, 31, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-text {
  flex: 1;
  font-size: .875rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
}
.cookie-text strong { color: white; font-weight: 600; }
.cookie-text a { color: #5ac8fa; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 980px;
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .15s;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: white;
  color: var(--black);
}
.cookie-btn--accept:hover { background: var(--gray-100); }
.cookie-btn--info {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-btn--info:hover { background: rgba(255,255,255,.08); color: white; }

/* Cookie reopener (kleine knop rechtsonder na sluiten) */
.cookie-reopen {
  position: fixed;
  bottom: 16px; left: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.08);
  color: var(--gray-600);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: transform .15s, color .15s, border-color .15s;
  padding: 0;
}
.cookie-reopen:hover {
  transform: scale(1.08);
  color: var(--blue);
  border-color: rgba(0,113,227,.3);
}
.cookie-reopen.show { display: flex; }
.cookie-reopen svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ── DETAIL PAGE ────────────────────────────────────────────────── */
.detail-hero {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,113,227,.08) 0%, transparent 60%);
}
.detail-hero .container { position: relative; }
.detail-hero .badge { margin-bottom: 24px; }
.detail-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; }
.detail-hero .lead { font-size: 1.2rem; color: var(--gray-600); max-width: 640px; margin: 0 auto 36px; }
.detail-hero .hero-ctas { justify-content: center; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 28px;
}
.back-link:hover { text-decoration: underline; }

/* Deliverables grid */
.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.deliverable {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.deliverable-icon {
  width: 44px; height: 44px;
  background: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  color: var(--blue);
}
.deliverable-icon svg { width: 22px; height: 22px; }
.deliverable h4 { font-size: 1.05rem; margin-bottom: 8px; }
.deliverable p { font-size: .9rem; color: var(--gray-600); }

/* Price tables */
.price-table {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 16px;
}
.price-table--featured {
  background: var(--black);
  color: var(--white);
}
.price-table-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}
.price-table--featured .price-table-header { border-bottom-color: rgba(255,255,255,.08); }
.price-table-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.price-table-header .price-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 980px;
}
.price-tag--standard {
  background: rgba(0,113,227,.1);
  color: var(--blue);
}
.price-tag--urgent {
  background: rgba(255,149,0,.15);
  color: #cc7000;
}
.price-table--featured .price-tag--standard {
  background: rgba(0,113,227,.25);
  color: #5ac8fa;
}
.price-table--featured .price-tag--urgent {
  background: rgba(255,149,0,.2);
  color: #ffb849;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 22px 32px;
  align-items: center;
  border-top: 1px solid var(--gray-100);
}
.price-table--featured .price-row { border-top-color: rgba(255,255,255,.06); }
.price-row:first-of-type { border-top: none; }
.price-row-label { font-weight: 500; font-size: .98rem; }
.price-row-sub { display: block; font-size: .8rem; color: var(--gray-600); font-weight: 400; margin-top: 2px; }
.price-table--featured .price-row-sub { color: rgba(255,255,255,.5); }
.price-row-amount {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price-row-amount small { font-size: .7rem; color: var(--gray-600); font-weight: 500; margin-left: 4px; }
.price-table--featured .price-row-amount small { color: rgba(255,255,255,.5); }

.price-footnote {
  padding: 18px 32px;
  background: var(--gray-100);
  font-size: .85rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
}
.price-table--featured .price-footnote {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.55);
  border-top-color: rgba(255,255,255,.06);
}

.price-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

/* FAQ ticker */
.faq-ticker {
  background: var(--black);
  color: white;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.faq-ticker::before,
.faq-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.faq-ticker::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.faq-ticker::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-size: .95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
  flex-shrink: 0;
}
.ticker-item:hover {
  color: #5ac8fa;
}
.ticker-item .q {
  color: rgba(255,255,255,.45);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  transition: color .15s;
}
.ticker-item:hover .q { color: #5ac8fa; }

/* Pauzeer ticker bij hover zodat gebruiker rustig kan lezen/klikken */
.faq-ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform .2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 28px 24px; color: var(--gray-600); font-size: .95rem; line-height: 1.65; }

/* Founder photo placeholders */
.founder-photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8e8ed 0%, #c8c8ce 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.04),
    0 2px 8px rgba(0,0,0,.06);
}
/* Fallback silhouette wanneer er geen foto is */
.founder-photo:empty::after {
  content: '👤';
  font-size: 2rem;
  filter: grayscale(1);
  opacity: 0.35;
}
/* Foto styling: gematchte B&W look */
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter:
    grayscale(1)
    contrast(1.05)
    brightness(1.03);
  transition: filter .5s ease;
}
.founder-card:hover .founder-photo img {
  filter:
    grayscale(0)
    contrast(1)
    brightness(1);
}
.founder-photo--db { background: linear-gradient(135deg, #cfd4dc 0%, #a8b0bc 100%); }
.founder-photo--ek { background: linear-gradient(135deg, #d4d0c8 0%, #b8b0a4 100%); }

/* ── STEPS ────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gray-200);
  line-height: 1;
}
.step h4 { font-size: 1.2rem; }
.step p { color: var(--gray-600); font-size: .95rem; }

/* ── PILLARS ──────────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.pillar-icon {
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: rgba(0,113,227,.08);
  border-radius: 12px;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h4 { font-size: 1.05rem; }
.pillar p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* ── AUDIENCE ─────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.audience-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.audience-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.audience-card h4 { font-size: 1.5rem; margin-bottom: 20px; }
.audience-card ul { display: flex; flex-direction: column; gap: 10px; }
.audience-card li {
  font-size: .975rem;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}
.audience-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--blue);
}

/* ── LAUNCHING CUSTOMERS STRIP ──────────────────────────────────── */
.customers-strip {
  padding: 64px 0 60px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.customers-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.customers-ticker {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.customers-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: customersTicker 38s linear infinite;
}
.customer-logo {
  width: 160px;
  height: 68px;
  border: 1.5px dashed var(--gray-200);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
  transition: border-color .2s, background .2s;
}
.customer-logo:hover {
  border-color: var(--blue);
  background: rgba(0,113,227,.03);
}
.customer-logo span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-200);
  user-select: none;
}
.customers-note {
  text-align: center;
  margin-top: 22px;
  font-size: .78rem;
  color: var(--gray-200);
  font-style: italic;
  letter-spacing: .01em;
}

@keyframes customersTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Audience pills (nieuwe Voor wie sectie) */
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}
.audience-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 22px 22px;
  flex: 1 1 200px;
  max-width: 240px;
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.audience-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
  border-color: var(--blue);
}
.audience-pill-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  line-height: 1;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}
.audience-pill-icon svg { width: 26px; height: 26px; }
.audience-pill strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}
.audience-pill span {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.45;
}

/* Expertise tags */
.expertise-block { text-align: center; }
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.tag {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 980px;
  padding: 9px 20px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-900);
  transition: all .2s;
}
.tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,113,227,.05);
}

.expertise-note {
  text-align: center;
  margin-top: 28px;
  font-size: .92rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.expertise-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.expertise-note a:hover { text-decoration: underline; }

/* ── FOUNDERS ─────────────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 40px;
}
.founder-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .2s, box-shadow .2s;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.founder-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-header h4 { font-size: 1.15rem; margin-bottom: 2px; }
.founder-role {
  font-size: .82rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--blue);
  color: white;
  transition: background .15s, transform .15s;
}
.founder-linkedin:hover {
  background: var(--blue-dark);
  transform: scale(1.08);
}
.founder-linkedin svg { width: 13px; height: 13px; }
.founder-bio { display: flex; flex-direction: column; gap: 12px; }
.founder-bio p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.65;
}
/* legacy avatar/firm classes — niet meer gebruikt */
.founder-avatar { display: none; }
.founder-firm { display: none; }

.clifford-badge {
  text-align: center;
  font-size: .9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.clifford-badge strong { color: var(--black); }

/* ── CTA SECTION ──────────────────────────────────────────────── */
.cta-section { background: var(--black); }
.cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-section .section-label { color: rgba(255,255,255,.5); }
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-section .btn-ghost {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
}
.cta-section .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.cta-fine { font-size: .8rem; color: rgba(255,255,255,.3); margin: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 56px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer .logo-mark { color: var(--white); font-size: 1.2rem; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 6px; letter-spacing: .04em; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.25); margin-top: 2px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-company {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .01em;
}
.footer-company strong { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color .15s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,.85); }
.footer-copyright {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}
/* Legacy class — wordt nu vervangen door footer-bottom */
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.2); }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .props-grid { grid-template-columns: 1fr; }
  .prop-divider { width: 100%; height: 1px; }
  .prop { padding: 36px 28px; }

  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-bottom: 2px solid var(--gray-100); }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; max-width: 340px; }
  .delivery-banner { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .delivery-divider { width: 80%; height: 1px; }
  .hero-ctas { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .service-card { padding: 36px 28px; }
  .other-needs { padding: 28px 24px; }
  .other-needs-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .deliverables { grid-template-columns: 1fr; }
  .price-stack { grid-template-columns: 1fr; }
  .price-table-header, .price-row, .price-footnote { padding-left: 22px; padding-right: 22px; }
}
