/* ============================
   Fonts
============================ */
@font-face {
  font-family: 'Brockmann';
  src: url('../fonts/brockmann-medium-webfont.woff2') format('woff2'),
       url('../fonts/brockmann-medium-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Only one static weight is available; force the browser to synthesize
   a heavier weight whenever font-weight:700 is requested. */
html { font-synthesis: weight; }

/* ============================
   Tokens
============================ */
:root {
  --purple: #6655f9;
  --purple-hover: #5644e8;
  --indigo-dark: #332b7d;
  --lavender: #eaecfe;
  --offwhite: #f5f5f5;
  --black: #000000;
  --near-black: #212124;
  --white: #ffffff;

  --purple-accent: #c18cfb;
  --purple-accent-light: #e1c8fb;

  --orange-accent: #f2a12e;
  --orange-accent-light: #f7cf8a;

  --teal-accent: #5dd3a4;
  --teal-accent-light: #9eead3;

  --yellow-soft: #f7e58a;
  --coral: #b8351c;

  --text-body: #212124;
  --text-muted: #575757;

  --max-width: 1180px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Brockmann', -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  color: var(--text-body);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 96px 0; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

p { line-height: 1.6; margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

/* ============================
   Announcement bar
============================ */
.announcement {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
}
.announcement a { color: var(--white); text-decoration: none; }

/* ============================
   Header / Nav
============================ */
header.site-header {
  background: var(--lavender);
}
.offwhite-header header.site-header { background: var(--offwhite); }
.offwhite-header .hero-over { background: var(--offwhite); }
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 38px; width: auto; display: block; }

.dark-header .site-header { background: var(--near-black); }
.dark-header .logo { color: var(--white); }

nav.main-nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
nav.main-nav a {
  font-size: 17px;
  font-weight: 400;
  color: var(--near-black);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.dark-header nav.main-nav a { color: var(--white); font-weight: 700; }

nav.main-nav a.active { border-bottom-color: var(--purple); }
nav.main-nav a.active.accent-purple { border-bottom-color: var(--purple-accent); }
nav.main-nav a.active.accent-orange { border-bottom-color: var(--orange-accent); }
nav.main-nav a.active.accent-teal { border-bottom-color: var(--teal-accent); }

nav.main-nav a.nav-purple:hover { color: var(--purple); border-bottom-color: var(--purple); }
nav.main-nav a.nav-orange:hover { color: var(--orange-accent); border-bottom-color: var(--orange-accent); }
nav.main-nav a.nav-teal:hover { color: var(--teal-accent); border-bottom-color: var(--teal-accent); }
.dark-header nav.main-nav a.nav-purple:hover { color: var(--purple-accent); border-bottom-color: var(--purple-accent); }
.dark-header nav.main-nav a.nav-orange:hover { color: var(--orange-accent); border-bottom-color: var(--orange-accent); }
.dark-header nav.main-nav a.nav-teal:hover { color: var(--teal-accent); border-bottom-color: var(--teal-accent); }

.nav-toggle { display: none; }

/* ============================
   Buttons
============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover { background: var(--purple-hover); }

.btn-outline {
  background: transparent;
  border-color: var(--purple-hover);
  color: var(--purple-hover);
}
.btn-outline:hover { background: var(--purple-hover); color: var(--white); }

.btn-outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--near-black); }

.btn-white {
  background: var(--white);
  border-color: var(--near-black);
  color: var(--near-black);
}
.btn-white:hover { background: var(--near-black); color: var(--white); border-color: var(--near-black); }

.btn-wide { padding-left: 56px; padding-right: 56px; }

.btn-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.link-plain {
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================
   Hero (home)
============================ */
.hero-home {
  background: var(--lavender);
  text-align: center;
  padding-bottom: 120px;
}
.hero-home .eyebrow {
  color: var(--indigo-dark);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-home h1 {
  color: var(--indigo-dark);
  font-size: 56px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.hero-home .btn-row { justify-content: center; }

/* ============================
   Hero (subpages, dark)
============================ */
.hero-sub {
  background: var(--near-black);
  color: var(--white);
  padding: 72px 0;
}
.hero-sub .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-sub h1 {
  font-size: 62px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-sub p {
  color: var(--white);
  font-size: 19px;
  max-width: 580px;
}
.hero-shapes { display: flex; justify-content: center; }

/* ============================
   Over page hero (light)
============================ */
.hero-over {
  background: var(--lavender);
}
.hero-over h1 {
  color: var(--purple);
  font-size: 52px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================
   Intro / about split section
============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split .photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
}
.split h2 { margin-bottom: 4px; }
.split .body-copy p { font-size: 18px; color: var(--text-body); }
.split .body-copy { margin-bottom: 28px; }
.split.home-about { grid-template-columns: 0.85fr 1.15fr; }
.split.home-about .body-copy p { font-size: 20px; }

/* ============================
   Photo placeholders (dummy content)
============================ */
.photo-placeholder {
  background: repeating-linear-gradient(
    135deg,
    #e2e2e2,
    #e2e2e2 12px,
    #d6d6d6 12px,
    #d6d6d6 24px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}
.photo-placeholder span {
  background: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.photo-round {
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.photo-real {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.photo-real.photo-round { border-radius: 50%; }

/* ============================
   Diensten (services) section
============================ */
.section-offwhite { background: var(--offwhite); }
.section-lavender { background: var(--lavender); }
.section-dark { background: var(--near-black); color: var(--white); }
.section-indigo { background: var(--indigo-dark); color: var(--white); }

h2.section-title {
  color: var(--indigo-dark);
  font-size: 44px;
  margin-bottom: 40px;
}
.section-dark h2.section-title,
.hero-sub h2.section-title { color: var(--white); }

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 640px;
}
.service-card .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 32px;
}
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { font-size: 16px; color: var(--white); margin-bottom: 20px; }
.service-card .card-link {
  font-weight: 700;
  color: var(--white);
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
}
.service-card.accent-purple .card-link { border-bottom-color: var(--purple-accent); }
.service-card.accent-orange .card-link { border-bottom-color: var(--orange-accent); }
.service-card.accent-teal .card-link { border-bottom-color: var(--teal-accent); }

/* Decorative shape icons (css-drawn, standing in for the illustration groups) */
.shape-icon { width: 180px; height: 180px; position: relative; }
.shape-blob {
  position: absolute;
  border-radius: 60px;
}

/* Tech consultancy: capsule + arrows */
.shapes-tech { width: 210px; }
.shapes-tech .capsule {
  width: 140px; height: 90px;
  background: var(--purple-accent-light);
  border-radius: 45px;
}
.shapes-tech .row { display: flex; align-items: center; gap: 6px; }
.shapes-tech .row1 { justify-content: flex-end; margin-bottom: 8px; }
.shapes-tech .row2 { justify-content: flex-start; }
.shapes-tech .arrow { font-size: 40px; color: var(--purple-accent); line-height: 1; }

/* Project management: gear + shapes */
.shapes-pm { width: 190px; height: 190px; position: relative; }
.shapes-pm .semi {
  position: absolute; top: 0; left: 30px;
  width: 130px; height: 65px;
  background: var(--orange-accent-light);
  border-radius: 65px 65px 0 0;
}
.shapes-pm .gear {
  position: absolute; top: 45px; left: 10px;
  width: 140px; height: 140px;
  color: var(--orange-accent);
  font-size: 140px;
  line-height: 1;
}
.shapes-pm .dot {
  position: absolute; bottom: 0; left: 0;
  width: 60px; height: 60px;
  background: var(--orange-accent-light);
  border-radius: 50%;
}

/* Web: stacked half-ovals */
.shapes-web { width: 180px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.shapes-web .half { width: 160px; height: 60px; background: var(--teal-accent-light); border-radius: 999px 999px 0 0; }
.shapes-web .half.dark { background: var(--teal-accent); width: 120px; transform: rotate(-8deg); }

/* Generic pill decoration used on tech-consultancy / project-management hero */
.hero-shape-group { position: relative; width: 320px; height: 260px; }
.hero-shape-group.tech .capsule {
  width: 220px; height: 130px;
  background: var(--purple-accent-light);
  border-radius: 65px;
  position: absolute;
}
.hero-shape-group.tech .capsule.c1 { top: 0; right: 20px; }
.hero-shape-group.tech .capsule.c2 { bottom: 0; left: 40px; }
.hero-shape-group.tech .arrow { position: absolute; font-size: 64px; color: var(--purple-accent); }
.hero-shape-group.tech .arrow.a1 { top: 40px; right: -10px; }
.hero-shape-group.tech .arrow.a2 { bottom: 40px; left: -20px; }

.hero-shape-group.pm .semi {
  position: absolute; top: 0; left: 90px;
  width: 190px; height: 95px;
  background: var(--orange-accent-light);
  border-radius: 95px 95px 0 0;
}
.hero-shape-group.pm .gear {
  position: absolute; top: 60px; left: 40px;
  font-size: 190px; color: var(--orange-accent); line-height: 1;
}
.hero-shape-group.pm .dot {
  position: absolute; bottom: 10px; left: 0;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--orange-accent-light);
}

.hero-shape-group.web { flex-direction: column; align-items: center; display: flex; gap: 14px; width: 260px; height: auto; }
.hero-shape-group.web .half { width: 220px; height: 90px; background: var(--teal-accent-light); border-radius: 999px 999px 0 0; }
.hero-shape-group.web .half.mid { width: 160px; height: 70px; background: var(--teal-accent); transform: rotate(-10deg); }

/* ============================
   CTA banner (dark, with round photo)
============================ */
.cta-banner {
  background: var(--black);
  color: var(--white);
}
.cta-banner .cta-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 640px);
  gap: 80px;
  align-items: center;
}
.cta-banner h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.cta-banner .photo-round { width: 260px; height: 260px; }
.cta-banner-home h2 { font-weight: 400; line-height: 1.5; }
.cta-banner-home .link-plain { text-decoration: none; }
.link-plain.no-underline { text-decoration: none; }

/* ============================
   Logos row
============================ */
.logos-section { background: var(--lavender); text-align: center; }
.logos-section h2.section-title { text-align: center; }
.logo-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logo-scroll 32s linear infinite;
}
.logo-slider:hover .logo-track { animation-play-state: paused; }
.logo-track img {
  height: 72px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.logo-track a:hover img { opacity: 1; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* ============================
   Testimonial
============================ */
.testimonial-section { padding-top: 56px; }
.testimonial {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
}
.testimonial .photo-round { width: 220px; height: 220px; }
.testimonial blockquote {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.4;
}
.testimonial cite {
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
}

/* ============================
   Footer
============================ */
footer.site-footer {
  background: var(--indigo-dark);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 100px;
  max-width: 760px;
  margin-bottom: 56px;
}
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-col h3 a { color: inherit; font-size: inherit; font-weight: inherit; }
.footer-col .footer-block { margin-bottom: 28px; }
.footer-col a, .footer-col p {
  color: var(--white);
  font-size: 19px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col h3 a,
.footer-col ul a,
.footer-bottom a {
  border-bottom: 3px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}
.footer-col h3 a:hover,
.footer-col ul a:hover,
.footer-bottom a:hover {
  text-decoration: none;
  border-color: currentColor;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--white);
}
.footer-bottom a { color: var(--white); }

/* ============================
   Case study blocks (tech consultancy / project management / web)
============================ */
.case-block { padding: 0; }
.case-block .case-top { background: var(--offwhite); padding: 56px 0; }
.case-block .case-bottom { background: var(--lavender); padding: 56px 0; }
.case-tag {
  display: inline-block;
  border: 1.5px solid var(--purple);
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.case-block h3.case-title {
  color: var(--indigo-dark);
  font-size: 36px;
  margin-bottom: 24px;
}
.case-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}
.case-top-grid p { font-size: 18px; }
.case-top-grid ul { }
.case-top-grid ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 18px;
}
.case-top-grid ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
}
.case-vraag-resultaat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.case-vraag-resultaat h4 {
  color: var(--purple);
  font-size: 26px;
  margin-bottom: 16px;
}
.case-vraag-resultaat p { font-size: 18px; max-width: 460px; }

.case-web-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.case-web-grid .laptop-mock .screen {
  aspect-ratio: 620/370;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.16));
}
.case-web-tag { margin-bottom: 20px; }
.case-web-copy h3.case-title { color: var(--indigo-dark); font-size: 40px; margin-bottom: 20px; }
.case-web-copy p { font-size: 19px; margin-bottom: 32px; }

/* ============================
   Simple two-col intro (tech consultancy / pm hero content)
============================ */
.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 8px;
}
.intro-columns li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 19px;
}
.intro-columns li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 9px; height: 9px;
  border-radius: 50%;
}
.hero-sub.accent-purple .intro-columns li::before { background: var(--purple-accent); }
.hero-sub.accent-orange .intro-columns li::before { background: var(--orange-accent); }
.intro-columns a { text-decoration: underline; }
.hero-sub.accent-purple .intro-columns a { color: var(--purple-accent); }
.hero-sub.accent-orange .intro-columns a { color: var(--orange-accent); }

/* ============================
   En meer (link list)
============================ */
.link-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}
.link-columns a {
  display: block;
  padding-bottom: 3px;
  margin-bottom: 14px;
  border-bottom: 3px solid currentColor;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.15s ease;
}
.link-columns a:hover { color: var(--teal-accent); }

/* ============================
   Over page: mission banner + eerlijke wereld/campagnes
============================ */
.mission-banner {
  background: var(--purple);
  color: var(--white);
  text-align: center;
}
.mission-banner h2 { font-size: 40px; margin-bottom: 24px; }
.mission-banner p { font-size: 22px; font-weight: 700; max-width: 780px; margin: 0 auto; }

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.two-col-text h3 { color: var(--purple); font-size: 30px; margin-bottom: 20px; }
.two-col-text p { font-size: 17px; }

.samenwerkingen h2.section-title { color: var(--white); }
.samenwerkingen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.samenwerkingen-grid h4 {
  color: var(--purple-accent);
  font-size: 20px;
  margin-bottom: 16px;
}
.samenwerkingen-grid li { margin-bottom: 10px; font-size: 20px; font-weight: 300; }

/* ============================
   Utility pages (onderhoud, cloud, aanbevolen, proton, nieuwsbrief, contact, support, privacy)
============================ */
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-over.hero-compact { padding: 72px 0 56px; }
.hero-over p.lede {
  text-align: center;
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 18px;
  color: var(--text-body);
}
.lede-list {
  list-style: disc;
  padding-left: 22px;
  margin: 20px auto 0;
  max-width: 720px;
  text-align: left;
  font-size: 18px;
  color: var(--text-body);
}
.lede-list li { margin-bottom: 4px; }

/* Left-aligned hero variant (overstappen naar proton) */
.hero-left { background: var(--offwhite); }
.hero-left h1 { text-align: left; max-width: none; margin: 0; }
.hero-left p.lede,
.hero-left .lede-list,
.hero-left .proton-alt-links {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.hero-left .btn-row { justify-content: flex-start; }

.proton-alt-links {
  text-align: center;
  margin: 20px auto 0;
  font-size: 17px;
  color: var(--text-body);
}
.proton-alt-links a {
  color: var(--purple);
  font-weight: 700;
}
.proton-alt-links a:hover { color: var(--purple-hover); }

.lead-text {
  font-size: 19px;
  max-width: 780px;
}
.lead-text.center { margin: 0 auto; text-align: center; }

/* Pricing cards (onderhoud) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.price-card {
  background: var(--white);
  border: 2px solid #e4e4e4;
  border-radius: 8px;
  padding: 40px;
}
.price-card.featured { border-color: var(--purple); }
.price-card h3 { color: var(--indigo-dark); font-size: 26px; margin-bottom: 8px; }
.price-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 24px;
}
.price-card .price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.price-card ul { margin-bottom: 28px; }
.price-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--purple);
  font-weight: 700;
}

/* Tool / recommendation categories */
.tool-category {
  padding: 40px 0;
  border-bottom: 1px solid #e4e4e4;
}
.tool-category:last-child { border-bottom: none; }
.tool-category h3 { color: var(--indigo-dark); font-size: 26px; margin-bottom: 12px; }
.tool-category .problem { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
.tool-category .alt-list { display: flex; flex-wrap: wrap; gap: 12px; }
.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lavender);
  color: var(--indigo-dark);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s ease;
}
.tool-pill:hover { background: var(--purple); color: var(--white); }
.tool-pill .flag { font-weight: 400; color: var(--text-muted); font-size: 13px; }
.tool-pill:hover .flag { color: #e0dbfb; }

/* Recommendation service list (aanbevolen diensten) */
.reco-category { padding: 44px 0; border-bottom: 1px solid #e4e4e4; }
.reco-category:last-child { border-bottom: none; }
.reco-category h3 { color: var(--indigo-dark); font-size: 24px; margin-bottom: 6px; }
.reco-category .reco-note { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.reco-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.reco-item {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 20px 22px;
}
.reco-item h4 { font-size: 17px; margin-bottom: 6px; }
.reco-item h4 a { color: var(--purple); }
.reco-item h4 a:hover { text-decoration: underline; }
.reco-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Step list (overstappen naar proton) */
.step-list { counter-reset: step; }
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.step-item .step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
}
.step-item h4 { font-size: 19px; margin-bottom: 8px; }
.step-item p { font-size: 16px; }

.faq-item { padding: 24px 0; border-bottom: 1px solid #e4e4e4; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  color: var(--indigo-dark);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--purple);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 16px; margin-top: 12px; }

/* Left-aligned narrow content column, flush with .container's left edge */
.narrow-left { max-width: 720px; margin: 0; }

/* Soverin banner (overstappen naar proton) */
.section-yellow { background: var(--yellow-soft); }
.soverin-banner { text-align: center; max-width: 640px; margin: 0 auto; }
.soverin-banner h2 { color: var(--coral); font-size: 34px; margin-bottom: 20px; }
.soverin-banner p { font-size: 17px; margin-bottom: 28px; }
.soverin-banner .btn { margin: 0 auto; }

/* Tip blocks (overstappen naar proton) */
.tip-block { max-width: 720px; }
.tip-block img.tip-badge { margin-bottom: 20px; }
.tip-block h2 { color: var(--indigo-dark); font-size: 28px; margin-bottom: 16px; }
.tip-block p { font-size: 16px; }
.tip-block p a { color: var(--purple); font-weight: 700; }

/* Meer tips list (dark, overstappen naar proton) */
.meer-tips-list { list-style: none; padding: 0; margin: 24px 0 0; }
.meer-tips-list li { position: relative; padding-left: 24px; margin-bottom: 14px; font-size: 18px; font-weight: 700; }
.meer-tips-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-accent);
}
.meer-tips-list a:hover { text-decoration: underline; }

/* Forms (contact, nieuwsbrief) */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
.contact-info { padding-top: 12px; }
.contact-info .photo-round { width: 96px; height: 96px; margin-bottom: 20px; }
.contact-info h3 { font-size: 22px; margin-bottom: 10px; color: var(--indigo-dark); }
.contact-info p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }

.form-box {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(51, 43, 125, 0.08);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--near-black);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e4e4e4;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-body);
  background: var(--offwhite);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(102, 85, 249, 0.12);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.form-checkbox input { margin-top: 4px; }
.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
}
.form-honeypot { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 15px; margin-top: 16px; text-align: center; min-height: 1.2em; }
.form-status-success { color: #1f8a4c; font-weight: 700; }
.form-status-error { color: #c0392b; font-weight: 700; }

/* Topic tag cloud (nieuwsbrief) */
.topic-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-tag {
  background: var(--lavender);
  color: var(--indigo-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
}

/* ============================
   Nieuwsbrief page
============================ */
.hero-split {
  background: var(--lavender);
  padding: 72px 0 64px;
}
.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-split h1 {
  color: var(--purple);
  font-size: 52px;
  margin-bottom: 28px;
}
.hero-split p {
  font-size: 19px;
  max-width: 560px;
}
.hero-split .hero-shapes { display: flex; justify-content: center; }

.signup-section { background: var(--black); color: var(--white); }
.signup-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.signup-photo {
  width: 100%;
  aspect-ratio: 1/0.86;
  object-fit: cover;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.signup-grid h2 { font-size: 34px; margin-bottom: 16px; }
.signup-grid > div > p { font-size: 18px; margin-bottom: 32px; color: var(--white); }
.signup-form { text-align: left; }
.signup-form .form-container { padding-left: 0 !important; margin-left: 0 !important; }
.signup-form .emailoctopus-form-wrapper.emailoctopus-form-default { padding: 0 !important; }
.signup-form .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.signup-form label { color: var(--white); }
.signup-form .form-checkbox label { font-weight: 400; }
.signup-form .form-checkbox a { color: var(--white); font-weight: 700; text-decoration: underline; }

.tips-section { background: var(--offwhite); }
.tips-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.tips-grid h2 { color: var(--near-black); font-size: 32px; margin-bottom: 20px; }
.tips-grid p { font-size: 17px; }
.tips-image {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 24px;
}
.tips-image img { width: 100%; height: auto; display: block; }

.topics-list-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 60px;
}
.topics-list-columns p { font-size: 18px; margin-bottom: 16px; }

/* Simple content prose */
.prose h2 { color: var(--indigo-dark); font-size: 28px; margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; }
.prose strong { color: var(--near-black); }

@media (max-width: 700px) {
  .pricing-grid, .reco-items { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
}

/* ============================
   Responsive
============================ */
@media (max-width: 960px) {
  .hero-home h1 { font-size: 38px; }
  .hero-sub h1, .hero-over h1, .hero-split h1 { font-size: 36px; }
  .cards-row { grid-template-columns: 1fr; }
  .service-card { min-height: 480px; }
  .split, .split.home-about, .cta-banner .cta-grid, .testimonial, .case-top-grid,
  .case-vraag-resultaat, .case-web-grid, .intro-columns,
  .two-col-text, .footer-grid, .samenwerkingen-grid, .link-columns,
  .signup-grid, .tips-grid, .topics-list-columns, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-sub .hero-grid, .hero-split .hero-grid { grid-template-columns: 1fr; }
  .hero-shapes { order: -1; margin-bottom: 32px; }
  .signup-photo { max-width: 320px; margin: 0 auto; }
  nav.main-nav { display: none; width: 100%; }
  nav.main-nav.open {
    display: block;
    background: inherit;
  }
  nav.main-nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0 8px;
  }
  .nav-wrap { flex-wrap: wrap; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: inherit;
  }
  section { padding: 56px 0; }
  .container { padding: 0 24px; }
  .samenwerkingen-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-home h1 { font-size: 30px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .samenwerkingen-grid { grid-template-columns: 1fr; }
}
