  :root {
    --blue: #1a3358;
    --orange: #d4691e;
    --orange-light: #e8894a;
    --white: #ffffff;
    --off-white: #f9f8f6;
    --light-gray: #f2f1ef;
    --border: #e5e2dd;
    --text: #1a1a1a;
    --text-muted: #6b6560;
    --text-light: #9e9890;
  }

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

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 300;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 6%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo img {
    height: 69px; width: auto;
    mix-blend-mode: multiply; display: block;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
  .nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.88rem; font-weight: 400; letter-spacing: 0.2px; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--orange) !important; color: white !important;
    padding: 0.55rem 1.4rem; border-radius: 4px;
    font-weight: 500 !important; font-size: 0.85rem !important; transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--orange-light) !important; }
  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    color: var(--blue); padding: 8px;
  }
  .nav-toggle svg { width: 26px; height: 26px; display: block; }
  .nav-toggle .icon-close { display: none; }
  nav.nav-open .nav-toggle .icon-open { display: none; }
  nav.nav-open .nav-toggle .icon-close { display: block; }

  /* HERO */
  #home {
    min-height: 58vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 68px;
  }
  .hero-left {
    background: #eef2f7;
    display: flex; flex-direction: column; justify-content: center;
    padding: 5% 7% 5% 8%;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: 2rem;
  }
  .hero-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--orange); }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    font-weight: 700; line-height: 1.1;
    color: var(--text); margin-bottom: 1.8rem; letter-spacing: -0.5px;
  }
  .hero-title em { font-style: italic; color: var(--orange); }
  .hero-sub {
    font-size: 1rem; line-height: 1.75; color: var(--text-muted);
    max-width: 420px; margin-bottom: 3rem; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange); color: white;
    padding: 0.9rem 2rem; border-radius: 4px;
    font-weight: 500; font-size: 0.9rem; text-decoration: none;
    transition: all 0.2s; display: inline-block; letter-spacing: 0.2px;
  }
  .btn-primary:hover { background: var(--orange-light); }
  .btn-text {
    color: var(--text-muted); font-size: 0.88rem; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color 0.2s; font-weight: 400;
  }
  .btn-text:hover { color: var(--text); }
  .btn-text::after { content: '→'; }
  .hero-right { position: relative; overflow: hidden; }
  .hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-overlay-stat {
    position: absolute; bottom: 40px; left: 40px;
    background: white; padding: 1.5rem 2rem; border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12); border-left: 3px solid var(--orange);
  }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1;
  }
  .hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
  .hero-stat-source { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }

  /* SECTION BASE */
  .section-tag {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--orange); font-weight: 500;
    margin-bottom: 1rem; display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--orange); }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700;
    color: var(--text); line-height: 1.15; letter-spacing: -0.3px;
  }

  /* WAAROM */
  #waarom { padding: 0; }
  .waarom-photo-full {
    width: 100%; height: 55vh; object-fit: cover;
    object-position: center 55%; display: block;
  }
  .waarom-content {
    padding: 110px 8% 90px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 7rem; align-items: start;
    max-width: 1400px; margin: 0 auto;
  }
  .waarom-text .section-title { margin-bottom: 1.5rem; }
  .waarom-text p {
    font-size: 0.97rem; line-height: 1.8;
    color: var(--text-muted); margin-bottom: 1.2rem; font-weight: 300;
  }
  .stats-col { display: flex; flex-direction: column; }
  .stat-item {
    padding: 2rem 0; border-bottom: 1px solid var(--border);
    display: flex; gap: 1.5rem; align-items: flex-start;
  }
  .stat-item:first-child { padding-top: 0; }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 900; color: var(--orange);
    line-height: 1; flex-shrink: 0; min-width: 100px;
  }
  .stat-text-title { font-size: 0.95rem; font-weight: 500; color: var(--text); margin-bottom: 0.3rem; }
  .stat-text-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

  /* HOE HET WERKT */
  #hoe { background: var(--off-white); padding: 110px 8%; }
  .hoe-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 5rem;
  }
  .hoe-header .section-tag {
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .hoe-header .section-tag::after {
    content: '';
    display: block; width: 20px; height: 1px;
    background: var(--orange);
  }
  .hoe-header .section-title { margin: 0 0 1.5rem; }
  .hoe-header-sub {
    font-size: 0.97rem; line-height: 1.8;
    color: var(--text-muted); font-weight: 300;
  }
  .hoe-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .hoe-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border) 15%, var(--border) 85%, transparent);
    z-index: 0;
  }
  .hoe-step {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .hoe-cta {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
  }
  .hoe-step-num {
    width: 72px; height: 72px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.8rem;
    border: 6px solid var(--off-white);
    box-shadow: 0 0 0 1px var(--border);
  }
  .hoe-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
  }
  .hoe-step-desc {
    font-size: 0.92rem; line-height: 1.7;
    color: var(--text-muted); font-weight: 300;
  }

  /* USP */
  #usp { background: var(--blue); padding: 110px 8%; }
  .usp-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 5rem;
  }
  .usp-header .section-tag {
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--orange-light);
  }
  .usp-header .section-tag::before,
  .usp-header .section-tag::after {
    content: '';
    display: block; width: 20px; height: 1px;
    background: var(--orange-light);
  }
  .usp-header .section-title { margin: 0 0 1.5rem; color: white; }
  .usp-header-sub {
    font-size: 0.97rem; line-height: 1.8;
    color: rgba(255,255,255,0.55); font-weight: 300;
  }
  .usp-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .usp-card {
    padding: 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04); transition: background 0.25s;
  }
  .usp-card:nth-child(3n) { border-right: none; }
  .usp-card:nth-child(n+4) { border-bottom: none; }
  .usp-card:hover { background: rgba(255,255,255,0.09); }
  .usp-icon-wrap {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
  }
  .usp-icon-wrap svg {
    width: 48px; height: 48px;
    stroke-width: 1.5;
  }
  .usp-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem; font-weight: 700; color: var(--orange-light);
    margin-bottom: 0.5rem; opacity: 0.6; display: block;
  }
  .usp-card-title { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 0.7rem; line-height: 1.3; }
  .usp-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; }

  /* FOTO TRIO */
  #fotos { padding: 0; }
  .photo-trio { display: grid; grid-template-columns: 1.2fr 1fr 1fr; height: 500px; }
  .photo-trio-item { position: relative; overflow: hidden; }
  .photo-trio-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s ease;
  }
  .photo-trio-item:hover img { transform: scale(1.04); }
  .photo-trio-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    color: white; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.3px;
  }

  /* OVER */
  #over { padding: 0; }
  .over-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
  .over-photo-col { position: relative; overflow: hidden; }
  .over-photo-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .over-content-col {
    background: var(--off-white); padding: 8% 7%;
    display: flex; flex-direction: column; justify-content: center;
  }
  .over-content-col .section-tag { margin-bottom: 1rem; }
  .over-content-col .section-title { margin-bottom: 2.5rem; }
  .over-text p {
    font-size: 0.96rem; line-height: 1.85;
    color: var(--text-muted); margin-bottom: 1.2rem; font-weight: 300;
  }
  .over-quote {
    margin-top: 2.5rem; padding: 1.5rem 1.8rem;
    border-left: 2px solid var(--orange); background: white;
  }
  .over-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-style: italic; color: var(--text);
    line-height: 1.7; margin-bottom: 0.8rem !important; font-weight: 400;
  }
  .over-quote cite { font-size: 0.8rem; color: var(--text-muted); font-style: normal; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

  /* PRODUCT */
  #product { background: var(--blue); padding: 110px 8%; }
  .product-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
  }
  .product-left .section-tag { color: var(--orange-light); }
  .product-left .section-tag::before { background: var(--orange-light); }
  .product-left .section-title { color: white; margin-bottom: 1.5rem; }
  .product-left p { font-size: 0.96rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 2.5rem; }
  .btn-white {
    background: white; color: var(--blue);
    padding: 0.9rem 2rem; border-radius: 4px;
    font-weight: 600; font-size: 0.88rem; text-decoration: none;
    display: inline-block; transition: background 0.2s; letter-spacing: 0.2px;
  }
  .btn-white:hover { background: var(--off-white); }
  .product-right { display: flex; flex-direction: column; }
  .product-feature {
    padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; gap: 1.5rem; align-items: flex-start;
  }
  .product-feature:first-child { padding-top: 0; }
  .product-feature-num { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--orange-light); font-weight: 700; flex-shrink: 0; padding-top: 2px; opacity: 0.7; }
  .product-feature-title { font-size: 0.95rem; font-weight: 500; color: white; margin-bottom: 0.3rem; }
  .product-feature-desc { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; }

  /* CTA STRIP */
  .cta-strip {
    background: var(--off-white); padding: 90px 8%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .cta-strip-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 700;
    color: var(--text); line-height: 1.2; max-width: 520px;
  }
  .cta-strip-actions { display: flex; flex-direction: column; gap: 0.8rem; flex-shrink: 0; }
  .cta-strip-sub { font-size: 0.82rem; color: var(--text-light); text-align: center; font-weight: 300; }

  /* CONTACT */
  #contact { background: var(--white); padding: 110px 8%; }
  .contact-header { max-width: 1200px; margin: 0 auto; }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 8rem; align-items: start;
    max-width: 1200px; margin: 3rem auto 0;
  }
  .contact-intro { font-size: 0.96rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; margin-bottom: 3rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-detail-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); font-weight: 500; margin-bottom: 0.2rem; }
  .contact-detail-value { font-size: 0.95rem; color: var(--text); font-weight: 400; }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 500; color: var(--text-muted); }
  .form-group input, .form-group textarea, .form-group select {
    padding: 0.85rem 0; border: none; border-bottom: 1px solid var(--border);
    background: transparent; font-family: 'Inter', sans-serif;
    font-size: 0.95rem; font-weight: 300; color: var(--text);
    outline: none; transition: border-color 0.2s; border-radius: 0; -webkit-appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color: var(--orange); }
  .form-group textarea { height: 100px; resize: none; }
  .form-submit {
    margin-top: 1rem; background: var(--orange); color: white;
    border: none; padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 500;
    cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s;
    border-radius: 4px; align-self: flex-start; letter-spacing: 0.3px;
  }
  .form-submit:hover { background: var(--orange-light); }

  /* FOOTER */
  footer {
    background: var(--text); padding: 4rem 8%;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; }
  .footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 4px; font-weight: 300; }
  .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
  .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; font-weight: 300; transition: color 0.2s; }
  .footer-links a:hover { color: white; }
  .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); font-weight: 300; }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    #home { grid-template-columns: 1fr; }
    .hero-right { height: 60vw; }
    .waarom-content, .usp-header, .product-inner, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .over-grid { grid-template-columns: 1fr; }
    .over-photo-col { height: 60vw; }
    .photo-trio { grid-template-columns: 1fr; height: auto; }
    .photo-trio-item { height: 280px; }
    .usp-grid { grid-template-columns: 1fr 1fr; }
    .usp-card:nth-child(3n) { border-right: 1px solid var(--border); }
    .usp-card:nth-child(2n) { border-right: none; }
    .hoe-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hoe-grid::before { display: none; }
    .cta-strip { flex-direction: column; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    nav.nav-open .nav-links {
      display: flex; flex-direction: column;
      position: absolute; top: 100%; left: 0; right: 0;
      background: rgba(255,255,255,0.98);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 16px 32px rgba(26,51,88,0.10);
      padding: 0.4rem 6% 1.6rem;
      gap: 0;
    }
    nav.nav-open .nav-links li { width: 100%; }
    nav.nav-open .nav-links a {
      display: block; padding: 1rem 0;
      font-size: 0.95rem;
      border-bottom: 1px solid var(--border);
    }
    nav.nav-open .nav-links .nav-cta {
      display: inline-block; margin-top: 1.2rem;
      padding: 0.7rem 1.6rem !important;
      text-align: center; border-bottom: none;
    }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .usp-grid { grid-template-columns: 1fr; }
    .usp-card { border-right: none !important; }
    #usp, #contact, #product { padding: 70px 6%; }
  }

  /* ============================
     EXTRA PAGINAS (subpages, blog, FAQ)
     ============================ */

  /* Page hero (kleinere hero voor subpaginas) */
  .page-hero {
    padding: 130px 8% 80px;
    background: #eef2f7;
    text-align: center;
  }
  .page-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--orange); font-weight: 500; margin-bottom: 1.2rem;
    justify-content: center;
  }
  .page-hero-tag::before, .page-hero-tag::after {
    content: ''; display: block; width: 24px; height: 1px; background: var(--orange);
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 700; color: var(--text);
    line-height: 1.15; letter-spacing: -0.5px;
    max-width: 800px; margin: 0 auto 1.5rem;
  }
  .page-hero h1 em { font-style: italic; color: var(--orange); }
  .page-hero p {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--text-muted); max-width: 640px;
    margin: 0 auto; font-weight: 300;
  }

  /* Page content (algemene content sectie) */
  .page-content {
    padding: 90px 8%;
    max-width: 900px;
    margin: 0 auto;
  }
  .page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700; color: var(--text);
    margin: 2.5rem 0 1.2rem;
    line-height: 1.25; letter-spacing: -0.3px;
  }
  .page-content h2:first-child { margin-top: 0; }
  .page-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--text); margin: 2rem 0 0.8rem;
  }
  .page-content p {
    font-size: 1rem; line-height: 1.8;
    color: var(--text-muted); font-weight: 300;
    margin-bottom: 1.2rem;
  }
  .page-content ul, .page-content ol {
    padding-left: 1.5rem; margin-bottom: 1.5rem;
    color: var(--text-muted); font-weight: 300;
    line-height: 1.8;
  }
  .page-content li { margin-bottom: 0.5rem; }
  .page-content blockquote {
    border-left: 3px solid var(--orange);
    padding: 0.5rem 1.5rem;
    margin: 1.8rem 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text);
    font-size: 1.1rem;
  }
  .page-content img {
    width: 100%; max-width: 100%;
    border-radius: 6px;
    margin: 1.8rem 0;
  }

  /* Page banner image (volle breedte tussen content) */
  .page-banner {
    width: 100%; height: 380px;
    object-fit: cover; display: block;
  }

  /* Doelgroep grid (Voor wie pagina) */
  .doelgroep-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 8%;
  }
  .doelgroep-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    transition: all 0.25s;
  }
  .doelgroep-card:hover {
    background: white;
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
  }
  .doelgroep-card-icon {
    width: 48px; height: 48px;
    margin-bottom: 1.2rem;
  }
  .doelgroep-card-icon svg {
    width: 100%; height: 100%;
    stroke: var(--blue);
    stroke-width: 1.5;
  }
  .doelgroep-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.6rem;
  }
  .doelgroep-card-desc {
    font-size: 0.92rem; line-height: 1.7;
    color: var(--text-muted); font-weight: 300;
  }

  /* FAQ accordion */
  .faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 8%;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    width: 100%;
    background: none; border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem; font-weight: 500;
    color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
  }
  .faq-question::after {
    content: '+';
    font-size: 1.5rem; color: var(--orange);
    font-weight: 300;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-question::after { content: '−'; }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.75; font-weight: 300;
    font-size: 0.96rem;
  }
  .faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 0 1.8rem;
  }

  /* Blog overzicht */
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 8%;
  }
  .blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
    display: block;
  }
  .blog-card:hover {
    box-shadow: 0 8px 35px rgba(0,0,0,0.08);
    transform: translateY(-3px);
  }
  .blog-card-img {
    width: 100%; height: 200px;
    object-fit: cover; display: block;
  }
  .blog-card-body { padding: 1.5rem 1.8rem 2rem; }
  .blog-card-meta {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--orange);
    font-weight: 500; margin-bottom: 0.8rem;
  }
  .blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--text); line-height: 1.3;
    margin-bottom: 0.7rem;
  }
  .blog-card-excerpt {
    font-size: 0.92rem; line-height: 1.6;
    color: var(--text-muted); font-weight: 300;
  }

  /* Blog artikel */
  .article {
    max-width: 1520px;
    margin: 0 auto;
    padding: 130px 8% 60px;
  }
  .article-meta {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--orange);
    font-weight: 500; margin-bottom: 1rem;
  }
  .article h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--text);
    line-height: 1.2; margin-bottom: 1rem;
    letter-spacing: -0.4px;
    max-width: 900px;
  }
  .article-author {
    font-size: 0.88rem; color: var(--text-muted);
    font-weight: 300; margin-bottom: 2.5rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--border);
  }
  .article-hero-img {
    width: 100%; max-height: 600px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 2.5rem;
  }
  .article-body {
    max-width: 900px;
    margin: 0 auto;
  }
  .article-body p {
    font-size: 1.05rem; line-height: 1.85;
    color: var(--text); font-weight: 300;
    margin-bottom: 1.5rem;
  }
  .article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--text);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
  }
  .article-body h3 {
    font-size: 1.15rem; font-weight: 600;
    color: var(--text);
    margin: 2rem 0 0.8rem;
  }
  .article-body blockquote {
    border-left: 3px solid var(--orange);
    padding: 0.5rem 1.5rem;
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.6;
  }
  .article-body ul, .article-body ol {
    padding-left: 1.5rem; margin-bottom: 1.5rem;
    color: var(--text); font-weight: 300;
    line-height: 1.85;
  }
  .article-body li { margin-bottom: 0.6rem; }
  .article-body img { width: 100%; border-radius: 6px; margin: 2rem 0; }
  .back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
  }
  .back-link:hover { color: var(--orange); }
  .back-link::before { content: '← '; }

  /* CTA blok onderaan */
  .page-cta {
    background: var(--blue);
    padding: 80px 8%;
    text-align: center;
  }
  .page-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 700; color: white;
    margin-bottom: 1rem; letter-spacing: -0.3px;
  }
  .page-cta p {
    color: rgba(255,255,255,0.65);
    font-weight: 300; line-height: 1.7;
    max-width: 520px; margin: 0 auto 2rem;
  }

  @media (max-width: 768px) {
    .doelgroep-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .page-banner { height: 240px; }
  }

  /* ============================
     BLOG ARTIKEL EMBEDS & LINKS
     ============================ */

  /* YouTube embed - responsive 16:9 */
  .video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin: 2rem 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  }
  .video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }

  /* Social media link card (voor LinkedIn etc.) */
  .social-link {
    display: flex; align-items: center; gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 2rem 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
  }
  .social-link:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
  }
  .social-link-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
  .social-link-icon.linkedin { background: #0077b5; }
  .social-link-icon.youtube { background: #ff0000; }
  .social-link-icon.web { background: var(--blue); }
  .social-link-text { flex: 1; }
  .social-link-label {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted);
    font-weight: 500; margin-bottom: 0.2rem;
  }
  .social-link-title {
    font-size: 0.98rem; color: var(--text);
    font-weight: 500;
  }
  .social-link::after {
    content: '↗';
    color: var(--text-muted);
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  /* Full-width content binnen artikel (voor maps, grote afbeeldingen) */
  .article-full-width {
    max-width: 100%;
    margin: 2.5rem 0;
  }
  .map-embed {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
  }
  .map-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
  }
  .map-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 0.8rem;
    text-align: center;
    font-style: italic;
  }
  @media (max-width: 768px) {
    .map-embed { height: 500px; }
  }
