/* ============================================================
   STROOMLIJN — site styles
   ============================================================ */

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg-canvas); color: var(--fg-1); }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 48px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-teal); margin-bottom: 16px;
}
.sec-title {
  font-size: 44px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0 0 18px; text-wrap: balance;
}
.sec-lead { font-size: 18px; line-height: 1.65; color: var(--fg-2); margin: 0; max-width: 620px; }
.sec-head { margin-bottom: 56px; max-width: 740px; }

/* ===========================  NAV  =========================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: rgba(240, 237, 228, 0.82);
  border-bottom: 1px solid rgba(225, 222, 209, 0.55);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 32px; }
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.nav-logo img { height: 30px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
  font-size: 14.5px; font-weight: 500; color: var(--fg-1);
  cursor: pointer; transition: color 200ms var(--ease-out);
  background: none; border: none; padding: 0; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-link:hover { color: var(--brand-teal); }
.nav-link.active { color: var(--brand-teal); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ===========================  BUTTONS  ======================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--r-md);
  font: inherit; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  text-decoration: none; line-height: 1;
}
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.btn-primary { background: var(--brand-teal); color: #fff; }
.btn-primary:hover { background: var(--brand-teal-deep); }
.btn-secondary { background: #fff; color: var(--fg-1); border-color: var(--border-1); }
.btn-secondary:hover { background: var(--n-50); border-color: var(--border-2); }
.btn-ghost { background: transparent; color: var(--fg-1); }
.btn-ghost:hover { background: var(--bg-sunken); }
.btn-on-dark { background: rgba(255,255,255,0.95); color: var(--brand-navy); }
.btn-on-dark:hover { background: #fff; }
.btn-outline-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ===========================  HERO (full-bleed slider) =========== */
.hero {
  position: relative;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
/* Slightly more compact on shorter viewports so trust row + wave stay visible */
@media (max-height: 760px) {
  .hero { min-height: 600px; }
  .hero-content { padding-top: 96px !important; padding-bottom: 112px !important; }
  .hero-title { font-size: 56px !important; }
  .hero-trust { margin-top: 24px !important; }
}
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms var(--ease-out), transform 8000ms linear;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
/* Soft scrim so type stays legible over photography. The veil is sand-tinted,
   warmer than pure black, fading from left where the woman/subject sits in
   slide 2 -- still readable on slide 1 because subject is on the left. */
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(240, 237, 228, 0.94) 0%,
      rgba(240, 237, 228, 0.86) 28%,
      rgba(240, 237, 228, 0.55) 52%,
      rgba(240, 237, 228, 0.18) 78%,
      rgba(240, 237, 228, 0.05) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 140px;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-title {
  font-size: 68px; font-weight: 600; line-height: 1.02;
  letter-spacing: -0.028em; color: var(--brand-navy); margin: 0 0 22px;
  text-wrap: balance;
  max-width: 720px;
}
.hero-title em { font-style: normal; color: var(--brand-teal); }
.hero-lead {
  font-size: 19px; line-height: 1.6; color: var(--fg-2);
  max-width: 480px; margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 36px; display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--fg-3);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--brand-teal); }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 56px;
  right: 48px;
  z-index: 3;
  display: flex; gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none;
  background: rgba(26, 46, 74, 0.25);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              width var(--dur-base) var(--ease-out);
  padding: 0;
}
.hero-dot:hover { background: rgba(26, 46, 74, 0.5); }
.hero-dot.is-active { background: var(--brand-teal); width: 26px; border-radius: 999px; }

/* Wave divider that "streamlines" hero into next section */
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 56px;
  z-index: 3;
  display: block;
}

/* ===========================  TRUST BAR  ========================= */
.trust-bar {
  padding: 56px 0 64px;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  background: var(--bg-surface-alt);
}
.trust-bar-label {
  text-align: center;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 32px;
}
.trust-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px 56px; flex-wrap: wrap;
  max-width: 1080px; margin: 0 auto;
}
.trust-logo-img {
  max-height: 50px;
  width: auto;
  filter: grayscale(1) opacity(0.7);
  transition: filter var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  object-fit: contain;
}
.trust-logo-img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-1px);
}
.trust-bar-foot {
  text-align: center;
  margin: 36px auto 0;
  font-size: 14.5px;
  color: var(--fg-3);
  max-width: 640px;
  line-height: 1.6;
}
.trust-bar-foot em { font-style: normal; color: var(--brand-teal); font-weight: 600; }

/* legacy text-pill style — kept for fallback */
.trust-logo {
  font-family: "Georgia", serif;
  font-size: 18px; font-weight: 600; color: var(--fg-3); letter-spacing: -0.005em;
  font-style: italic; opacity: 0.85;
}
.trust-logo.sans { font-family: var(--font-sans); font-style: normal; letter-spacing: 0.02em; text-transform: uppercase; font-size: 15px; }

/* ===========================  WERKWIJZE  ========================= */
.werkwijze-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num {
  position: absolute; top: -18px; left: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.step-card .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  margin: 8px 0 18px;
}
.step-card h3 { font-size: 20px; font-weight: 600; margin: 0 0 8px; }
.step-card p { font-size: 15px; color: var(--fg-2); line-height: 1.6; margin: 0 0 14px; }
.step-card .meta { font-size: 13px; color: var(--fg-3); display: flex; align-items: center; gap: 6px; }

/* ===========================  AANBOD  =========================== */
.aanbod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aanbod-card {
  background: #fff; border: 1px solid var(--border-1); border-radius: var(--r-lg);
  padding: 32px; cursor: pointer;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), border-color var(--dur-base);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.aanbod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-2); }
.aanbod-card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.aanbod-card.gold .ico { background: var(--accent-gold-soft); color: var(--brand-gold); }
.aanbod-card.navy .ico { background: rgba(26,46,74,0.08); color: var(--brand-navy); }
.aanbod-card h3 { font-size: 22px; font-weight: 600; margin: 0 0 10px; }
.aanbod-card p { font-size: 15.5px; color: var(--fg-2); line-height: 1.6; margin: 0 0 18px; flex-grow: 1; }
.aanbod-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.aanbod-card li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--fg-2); }
.aanbod-card li svg { color: var(--brand-teal); flex-shrink: 0; margin-top: 2px; }
.aanbod-card .link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--brand-teal); margin-top: auto; }

/* ===========================  PLATFORM SECTION =================== */
.platform {
  background: var(--brand-navy);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.platform::before {
  content: ""; position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(72,153,167,0.35), transparent 60%);
  pointer-events: none;
}
.platform-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.platform .eyebrow { color: var(--brand-teal-soft); }
.platform h2 { font-size: 40px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 18px; color: #fff; }
.platform p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78); margin: 0 0 28px; }
.platform-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.platform-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.88); }
.platform-feat svg { color: var(--brand-gold); flex-shrink: 0; margin-top: 2px; }
.platform-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Platform mockup card on right */
.platform-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 22px;
  backdrop-filter: blur(20px);
}
.platform-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.platform-mock-title { font-size: 14px; font-weight: 600; color: #fff; }
.platform-mock-sub { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.platform-mock-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--brand-teal-soft);
}
.platform-mock-pulse::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-teal-soft);
  box-shadow: 0 0 0 0 rgba(127,182,192,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,182,192,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(127,182,192,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,182,192,0); }
}
.platform-mock-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; margin-bottom: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
}
.platform-mock-row .icn {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(72,153,167,0.18); color: var(--brand-teal-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.platform-mock-row .nm { font-size: 13.5px; font-weight: 600; color: #fff; }
.platform-mock-row .dt { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 1px; }
.platform-mock-row .ck { color: var(--brand-teal-soft); margin-left: auto; }

.platform-mock-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 14px;
  margin-top: 12px;
}
.platform-mock-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.platform-mock-stat .val { font-size: 24px; font-weight: 600; color: #fff; margin-top: 4px; }
.platform-mock-stat .delta { font-size: 12px; color: var(--success); margin-top: 2px; }

/* ===========================  EU AI ACT  ========================= */
.aiact {
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.aiact-shield {
  width: 88px; height: 88px; border-radius: 22px;
  background: linear-gradient(150deg, var(--brand-teal), var(--brand-teal-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(52, 118, 132, 0.22);
}
.aiact-stars {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.aiact-star {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-gold);
}
.aiact-eu {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-gold-deep);
}
.aiact h3 { font-size: 26px; font-weight: 600; margin: 0 0 8px; line-height: 1.2; }
.aiact p { font-size: 15.5px; color: var(--fg-2); line-height: 1.6; margin: 0; max-width: 600px; }

/* ===========================  ABOUT  ========================= */
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1fr;
  gap: 64px; align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-tag {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.96);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--brand-navy);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.about-photo-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-gold); }
.about-content h2 { font-size: 40px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 22px; }
.about-content > p { font-size: 16px; line-height: 1.7; color: var(--fg-2); margin: 0 0 16px; }
.about-content > p.about-lead { font-size: 18px; line-height: 1.6; color: var(--fg-1); margin-bottom: 22px; }
.about-content > p strong { color: var(--fg-1); font-weight: 600; }
.about-cv {
  margin-top: 28px; padding: 22px; border-radius: var(--r-lg);
  background: var(--bg-surface-alt); border: 1px solid var(--border-1);
}
.about-cv-title { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 12px; }
.about-cv ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.about-cv li { display: flex; gap: 10px; font-size: 14.5px; color: var(--fg-1); }
.about-cv li::before { content: "—"; color: var(--brand-gold); font-weight: 600; }

.about-network {
  margin-top: 40px;
  padding: 28px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(228,240,242,0.4) 100%);
  border: 1px solid rgba(72,153,167,0.18);
}
.about-network h4 { font-size: 17px; font-weight: 600; margin: 0 0 6px; color: var(--brand-navy); }
.about-network p { font-size: 14.5px; color: var(--fg-2); line-height: 1.6; margin: 0; }

/* ===========================  REVIEWS  ========================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: #fff; border: 1px solid var(--border-1); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.review-stars {
  display: flex; gap: 2px; margin-bottom: 16px;
  color: var(--brand-gold);
}
.review-stars svg { fill: var(--brand-gold); }
.review-quote {
  font-size: 16px; line-height: 1.65; color: var(--fg-1);
  margin: 0 0 22px; flex-grow: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border-1); }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-teal-soft); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.review-meta .nm { font-size: 14px; font-weight: 600; color: var(--fg-1); }
.review-meta .rl { font-size: 12.5px; color: var(--fg-3); margin-top: 1px; }

/* ===========================  FAQ  ========================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border-1);
}
.faq-item { border-bottom: 1px solid var(--border-1); }
.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 22px 4px; gap: 16px;
  background: none; border: none; cursor: pointer; font: inherit;
  font-size: 17px; font-weight: 600; color: var(--fg-1);
  text-align: left;
}
.faq-trigger:hover { color: var(--brand-teal); }
.faq-trigger svg { color: var(--brand-teal); transition: transform 200ms var(--ease-out); flex-shrink: 0; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-body {
  font-size: 15.5px; line-height: 1.65; color: var(--fg-2);
  padding: 0 4px 22px;
  display: none;
}
.faq-item.open .faq-body { display: block; }

/* ===========================  CTA BANNER  ========================= */
.ctaband {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.ctaband::before {
  content: ""; position: absolute; right: -100px; bottom: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(189,151,102,0.25), transparent 60%);
}
.ctaband h2 { font-size: 32px; font-weight: 600; margin: 0 0 6px; color: #fff; line-height: 1.2; max-width: 580px; letter-spacing: -0.01em; }
.ctaband p { font-size: 16px; color: rgba(255,255,255,0.85); margin: 0; max-width: 580px; }
.ctaband .actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===========================  CONTACT  ========================= */
.contact-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
}
.contact-form-side { padding: 48px; }
.contact-info-side {
  background: var(--brand-sand);
  padding: 48px;
  display: flex; flex-direction: column;
}
.contact-form-side h3 { font-size: 28px; font-weight: 600; margin: 0 0 8px; }
.contact-form-side > p { font-size: 15px; color: var(--fg-2); margin: 0 0 28px; line-height: 1.6; }
.contact-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.contact-field label { font-size: 13px; font-weight: 600; color: var(--fg-1); }
.contact-field input, .contact-field textarea, .contact-field select {
  padding: 12px 14px; border-radius: var(--r-md);
  border: 1px solid var(--border-1); background: #fff;
  font: inherit; font-size: 15px; color: var(--fg-1);
  transition: all var(--dur-base) var(--ease-out);
}
.contact-field input:focus, .contact-field textarea:focus, .contact-field select:focus {
  outline: none; border-color: var(--brand-teal); box-shadow: var(--shadow-focus);
}
.contact-field textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.contact-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-side h4 { font-size: 18px; font-weight: 600; margin: 0 0 22px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-row .icn {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fff; color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ttl { font-size: 13.5px; font-weight: 600; color: var(--fg-1); }
.contact-row .val { font-size: 14px; color: var(--fg-2); line-height: 1.5; margin-top: 2px; }
.contact-portrait {
  margin-top: auto;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.contact-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================  FOOTER  ========================= */
.footer {
  background: var(--brand-navy); color: rgba(255,255,255,0.78);
  padding: 64px 0 28px; margin-top: 64px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-tag { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 320px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.footer-social a:hover { background: var(--brand-teal); color: #fff; border-color: var(--brand-teal); }
.footer-col h5 { font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.65);
  margin-bottom: 10px; cursor: pointer; border-bottom: none;
  transition: color var(--dur-base) var(--ease-out);
}
.footer-col a:hover { color: var(--brand-teal-soft); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { color: rgba(255,255,255,0.5); }
.footer-bottom .legal a:hover { color: rgba(255,255,255,0.85); }

/* ===========================  RESPONSIVE  ========================= */
@media (max-width: 960px) {
  .platform-inner, .about-grid, .faq-grid, .contact-wrap { grid-template-columns: 1fr; }
  .werkwijze-grid, .aanbod-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 540px; }
  .hero-content { padding-top: 80px; padding-bottom: 100px; }
  .hero-title { font-size: 44px; }
  .hero-veil {
    background: linear-gradient(180deg,
      rgba(240, 237, 228, 0.92) 0%,
      rgba(240, 237, 228, 0.78) 60%,
      rgba(240, 237, 228, 0.5) 100%);
  }
  .hero-dots { right: 24px; bottom: 32px; }
  .sec-title, .platform h2, .about-content h2 { font-size: 32px; }
  .platform, .ctaband, .aiact, .contact-form-side, .contact-info-side { padding: 32px; }
  .aiact { grid-template-columns: 1fr; text-align: left; }
  .nav-links { display: none; }
  .media-grid { grid-template-columns: 1fr !important; }
  .media-section .sec-head { grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* ===========================  MEDIA / BLOG  ========================= */
.media-section { background: var(--bg-canvas); }
.media-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.media-featured {
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  border-bottom: none;
  text-decoration: none;
  color: inherit;
}
.media-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.media-featured-art {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.media-featured-art svg { width: 100%; height: 100%; display: block; }
.media-featured-pulse {
  position: absolute; top: 22px; left: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.95);
  font-size: 12px; font-weight: 600; color: var(--brand-navy);
  letter-spacing: 0.04em;
}
.media-featured-pulse .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 0 rgba(72,153,167,0.6);
  animation: pulse 2s infinite;
}
.media-featured-icon {
  position: absolute; right: 28px; bottom: 28px;
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.96); color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(26,46,74,0.25);
  transition: transform var(--dur-base) var(--ease-out);
}
.media-featured:hover .media-featured-icon { transform: scale(1.06); }
.media-featured-body { padding: 32px 36px 36px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.media-featured-body h3 {
  font-size: 26px; font-weight: 600; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--brand-navy); margin: 0;
}
.media-featured-body p { font-size: 15.5px; line-height: 1.65; color: var(--fg-2); margin: 0; }
.media-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: auto; padding-top: 14px;
}
.media-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--brand-teal);
}

.media-meta-row, .media-item-meta {
  display: flex; align-items: center; gap: 12px;
}
.media-kind {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.media-date { font-size: 12.5px; color: var(--fg-3); }
.media-tag {
  font-size: 12px; color: var(--fg-3);
  font-weight: 500; letter-spacing: 0.02em;
}
.media-tag::before { content: "·  "; color: var(--border-2); }

.media-list {
  display: flex; flex-direction: column; gap: 14px;
}
.media-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  border-bottom: none;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.media-item:hover {
  border-color: var(--brand-teal-soft);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.media-item h4 {
  font-size: 17px; font-weight: 600; line-height: 1.35;
  letter-spacing: -0.005em; color: var(--brand-navy); margin: 2px 0 0;
}
.media-item p { font-size: 13.5px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.media-item-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; color: var(--brand-teal);
}

.media-allposts {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-1);
}
.media-allposts-meta { font-size: 13.5px; color: var(--fg-3); }
.media-allposts-meta em { color: var(--brand-teal); font-style: normal; font-weight: 600; }
