/* ============================================================
   Martin Danko – Martin Scriptiecoach  (Structuur v2)
   Brand: #1B4332 (donkergroen) | #F5F0E8 (beige) | Inter
   Zelfde kleuren & elementen - nieuwe lay-outstructuur
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary:        #1B4332;
  --primary-hover:  #2d6a4f;
  --primary-light:  #e8f0ec;
  --primary-deep:   #143026;
  --bg:             #F5F0E8;
  --bg-alt:         #eee8da;
  --white:          #ffffff;
  --text:           #1a1a1a;
  --text-muted:     #6c757d;
  --border:         #ddd6c8;
  --gold:           #f59e0b;
  --shadow:         0 2px 20px rgba(27,67,50,.08);
  --shadow-lg:      0 8px 40px rgba(27,67,50,.13);
  --radius:         10px;
  --radius-lg:      16px;
  --transition:     .25s ease;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--primary); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; height: auto; }

.bg-beige        { background-color: var(--bg) !important; }
.bg-beige-alt    { background-color: var(--bg-alt) !important; }
.bg-white-custom { background-color: var(--white) !important; }
.bg-green        { background-color: var(--primary) !important; }
.section-pad     { padding: 80px 0; }
.section-pad-sm  { padding: 50px 0; }

/* ── Language switcher (data-nl / data-en systeem) ─────────── */
.lang-en { display: none !important; }
.lang-active-en .lang-nl { display: none !important; }
.lang-active-en .lang-en { display: inline !important; }
.lang-active-en .lang-en-block { display: block !important; }
.lang-en-block { display: none !important; }
.lang-active-en .lang-nl-block { display: none !important; }

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 2px 5px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.75);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .5px;
}
.lang-btn.active, .lang-btn:hover { background: #fff; color: var(--primary); }
.lang-divider { color: rgba(255,255,255,.4); font-size: 11px; }

/* ════════════════════════════════════════════════════════════
   HEADER v2 - slanke topstrip + klein logo gecentreerd BOVEN
   één regel menu. Mobiel: donkergroen paneel, witte tekst.
   ════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--primary-deep);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 14px; }

.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}

/* Rij 1: klein logo, gecentreerd. Hamburger rechts (alleen mobiel) */
.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px 16px 6px;
}
.header-brand-row .brand img { height: 60px; width: auto; display: block; }

.menu-toggle {
  display: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all .25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Rij 2: menu op één regel, gecentreerd */
.main-nav {
  border-top: 1px solid rgba(255,255,255,.12);
}
.main-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  padding: 6px 16px 9px;
  max-width: 1200px;
  margin: 0 auto;
}
.main-nav a.nav-link {
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 13px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all var(--transition);
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link.active { color: #fff; background: rgba(255,255,255,.13); }

.nav-cta {
  background: #fff;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 7px;
  white-space: nowrap;
  margin-left: 8px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--bg); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.2); }

/* Mobiel: leesbaar donker paneel */
@media (max-width: 991px) {
  .topbar .topbar-note { display: none; }
  .menu-toggle { display: block; }
  .header-brand-row { justify-content: flex-start; padding: 10px 16px; }
  .header-brand-row .brand img { height: 36px; }

  .main-nav {
    display: none;
    background: var(--primary);           /* donkergroene achtergrond */
    border-top: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 14px 28px rgba(0,0,0,.32);
  }
  .main-nav.open { display: block; }
  .main-nav .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 16px;
  }
  .main-nav a.nav-link {
    color: #ffffff;                        /* witte tekst op donkergroen */
    font-size: 15.5px;
    padding: 13px 22px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav a.nav-link:hover,
  .main-nav a.nav-link.active { background: rgba(255,255,255,.14); }
  .nav-cta {
    margin: 14px 18px 0;
    text-align: center;
    padding: 13px 18px;
    font-size: 14.5px;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO v2 - donkergroen, tekst links / foto rechts
   ════════════════════════════════════════════════════════════ */
.hero-v2 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-v2::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-v2 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-v2 h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.hero-v2 .hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 17.5px;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-photo-frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.hero-photo-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}
.hero-chip {
  position: absolute;
  background: #fff;
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.hero-chip i { color: var(--gold); }
.hero-chip-1 { top: 18px; left: -26px; }
.hero-chip-2 { bottom: 24px; right: -20px; }

.hero-quickstats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-quickstats .qs strong { display: block; font-size: 22px; font-weight: 800; color: #fff; line-height: 1.1; }
.hero-quickstats .qs span { font-size: 12.5px; color: rgba(255,255,255,.7); }

/* ── Knoppen (zelfde stijlen als origineel) ────────────────── */
.btn-primary-custom {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}
.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,67,50,.25);
}
.btn-outline-custom {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.btn-outline-custom:hover { background-color: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,67,50,.2); }
.btn-white-custom {
  background-color: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.btn-white-custom:hover { background-color: var(--bg); border-color: var(--bg); color: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.btn-outline-white:hover { background-color: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ── USP-balk (vervangt stats-strip) ───────────────────────── */
.usp-bar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 26px 0; }
.usp-bar .usp-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 50px; }
.usp-item { display: flex; align-items: center; gap: 12px; }
.usp-item i {
  width: 42px; height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.usp-item strong { display: block; font-size: 15px; color: var(--primary); line-height: 1.2; }
.usp-item span { font-size: 12.5px; color: var(--text-muted); }

/* ── Sectiekoppen ──────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 580px; margin: 0 auto 50px; line-height: 1.7; }

/* ── Werkwijze-tijdlijn (4 stappen) ────────────────────────── */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 991px) { .steps-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .steps-timeline { grid-template-columns: 1fr; } }

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  position: relative;
  transition: all .3s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-card .step-num {
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* Verticale tijdlijn (werkwijze-pagina) */
.timeline-v {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 34px;
}
.timeline-v::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--primary-light);
  border-radius: 2px;
}
.timeline-item { position: relative; padding: 0 0 42px 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 4px;
  width: 25px; height: 25px;
  background: var(--primary);
  border: 5px solid var(--bg);
  border-radius: 50%;
}
.timeline-item .tl-step {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-hover);
  margin-bottom: 6px;
  display: block;
}
.timeline-item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.timeline-item p { color: var(--text-muted); font-size: 15.5px; }
.timeline-item .tl-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}

/* ── Aanbod / dienstkaarten v2 ─────────────────────────────── */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(27,67,50,.15); }
.offer-card.featured { background: var(--primary); }
.offer-card.featured h3, .offer-card.featured p, .offer-card.featured li { color: #fff !important; }
.offer-card.featured .offer-icon { background: rgba(255,255,255,.15); color: #fff; }
.offer-card.featured .offer-tag { background: rgba(255,255,255,.2); color: #fff; }
.offer-card.featured .service-features li::before { background: rgba(255,255,255,.7); }
.offer-card.featured .service-features li { color: rgba(255,255,255,.88); }

.offer-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.offer-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.offer-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.offer-card p { font-size: 14.5px; color: var(--text-muted); }

.service-features { list-style: none; padding: 0; margin: 14px 0 22px; flex-grow: 1; }
.service-features li {
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 5px 0 5px 22px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* ── Prijskaarten (tarieven) ───────────────────────────────── */
.pkg-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(27,67,50,.09);
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
  height: 100%;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 12px 50px rgba(27,67,50,.16); }
.pkg-card.featured { border-color: var(--primary); }
.pkg-ribbon {
  position: absolute; top: 0; right: 0;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 16px 5px 22px;
  border-radius: 0 18px 0 20px;
  text-transform: uppercase;
  z-index: 1;
}
.pkg-top { padding: 34px 26px 22px; background: var(--primary); color: #fff; text-align: center; }
.pkg-card.card-free   .pkg-top { background: #2d6a4f; }
.pkg-card.card-cursus .pkg-top { background: #1a3a2a; }
.pkg-card.card-def    .pkg-top { background: var(--primary-deep); }
.pkg-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin: 0 auto 14px;
}
.pkg-top h3 { color: #fff; font-size: 1.12rem; margin-bottom: 4px; }
.pkg-top .pkg-tagline { color: rgba(255,255,255,.72); font-size: 13px; margin-bottom: 18px; }
.pkg-price { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
.pkg-price sup { font-size: 1.3rem; font-weight: 600; }
.pkg-price .price-note { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.7); display: block; margin-top: 6px; }
.pkg-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.pkg-features { list-style: none; padding: 0; margin: 0 0 auto; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text);
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.pkg-cta {
  margin-top: 22px;
  display: block; width: 100%; text-align: center;
  padding: 13px 20px; border-radius: 10px;
  background: var(--primary); color: #fff !important;
  font-weight: 600; font-size: 15px;
  transition: background .2s, transform .2s;
  border: none; cursor: pointer;
}
.pkg-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* Vergelijkingstabel */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; min-width: 700px; }
.comparison-table th { padding: 16px 20px; text-align: center; background: var(--primary); color: #fff; font-weight: 600; font-size: 13px; }
.comparison-table th:first-child { text-align: left; border-radius: 12px 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 12px 0 0; }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); text-align: center; }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.comparison-table tr:nth-child(even) td { background: var(--bg); }
.comparison-table tr:hover td { background: var(--primary-light); }
.comparison-table .check { color: var(--primary); font-size: 17px; }
.comparison-table .cross { color: #ccc; font-size: 17px; }
.comparison-table .price-cell { font-weight: 700; color: var(--primary); font-size: 15px; }
.col-popular { background: rgba(27,67,50,.04); }

/* ── Reviews v2 (gecentreerde kaarten) ─────────────────────── */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--primary);
}
.review-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 18px; }
.reviewer-name { font-weight: 700; color: var(--primary); font-size: 14.5px; }
.reviewer-info { font-size: 13px; color: var(--text-muted); }

/* ── CTA-sectie ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 540px; margin: 0 auto 36px; }

/* ── Blogkaarten ───────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 190px; background: var(--primary-light) center/cover no-repeat; flex-shrink: 0; }
.blog-card-body { padding: 26px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-category {
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--primary); margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 14px; color: var(--text-muted); flex-grow: 1; }
.blog-card-footer {
  padding: 16px 26px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.blog-read-time { font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

/* ── Page-hero (subpagina's) ───────────────────────────────── */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 54px 0 46px;
}
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.82); max-width: 640px; margin: 0; }

/* ── Over Martin ───────────────────────────────────────────── */
.about-image-wrap { position: relative; max-width: 420px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-badge-float {
  position: absolute;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .number { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge-1 { bottom: 30px; left: -20px; }
.about-badge-2 { top: 30px; right: -20px; }
.about-credential { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.about-credential:last-child { border-bottom: none; }
.about-cred-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 17px;
  flex-shrink: 0;
}
.about-cred-text strong { display: block; font-weight: 700; color: var(--primary); font-size: 14.5px; }
.about-cred-text span { font-size: 13.5px; color: var(--text-muted); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-form .form-control, .contact-form .form-select {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,67,50,.1);
  outline: none;
}
.contact-form label { font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--text); }

/* ── FAQ (accordion) ───────────────────────────────────────── */
.accordion-item { border: 1px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: 15px; color: var(--primary) !important; background: var(--white) !important; padding: 18px 22px; }
.accordion-button:not(.collapsed) { background: var(--primary-light) !important; color: var(--primary) !important; box-shadow: none !important; }
.accordion-button::after { filter: invert(19%) sepia(68%) saturate(440%) hue-rotate(107deg) brightness(80%); }
.accordion-body { padding: 16px 22px 22px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ── Highlight box ─────────────────────────────────────────── */
.highlight-box {
  background: var(--primary-light);
  border: 1px solid rgba(27,67,50,.15);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: var(--primary); font-weight: 500; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--primary-deep); color: rgba(255,255,255,.8); padding: 60px 0 30px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 30px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff; margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item i { width: 18px; text-align: center; opacity: .7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  margin-top: 50px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}
.footer-bottom p { font-size: 13px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.6); font-size: 13px; }
.footer-bottom .footer-legal {
  order: 99; flex-basis: 100%;
  font-size: 12px; line-height: 1.6;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
}

/* ── Cookie consent banner ─────────────────────────────── */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1080;
  max-width: 760px; margin: 0 auto;
  background: var(--primary-deep); color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,.35);
  padding: 20px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  transform: translateY(140%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.6; flex: 1 1 280px; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner button {
  border: none; cursor: pointer; font-family: inherit; font-weight: 600;
  font-size: 13.5px; padding: 10px 20px; border-radius: 8px; transition: all var(--transition);
}
.cookie-banner .cookie-accept { background: #fff; color: var(--primary); }
.cookie-banner .cookie-accept:hover { background: var(--primary-light); }
.cookie-banner .cookie-decline { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.3); }
.cookie-banner .cookie-decline:hover { background: rgba(255,255,255,.1); }
@media (max-width: 575px) {
  .cookie-banner { padding: 16px 18px; }
  .cookie-banner .cookie-actions { width: 100%; }
  .cookie-banner .cookie-actions button { flex: 1; }
}

/* ── Legal content pages (privacy / terms) ─────────────── */
.legal-content { font-size: 15.5px; line-height: 1.8; color: var(--text); }
.legal-content h2 {
  font-size: 1.25rem; font-weight: 700; color: var(--primary);
  margin: 36px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content p { margin-bottom: 16px; color: var(--text-muted); }
.legal-content ul { margin: 0 0 20px; padding-left: 22px; color: var(--text-muted); }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--primary); font-weight: 600; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── Back to top ───────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(27,67,50,.3);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--primary-hover); transform: translateY(-3px); }

/* ── Responsief ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .hero-v2 { padding: 56px 0; }
  .hero-photo-frame { margin-top: 44px; }
  .hero-chip-1 { left: 4px; }
  .hero-chip-2 { right: 4px; }
}
@media (max-width: 767px) {
  .cta-section { padding: 60px 0; }
  .about-badge-1 { left: 8px; }
  .about-badge-2 { right: 8px; }
}

/* ── Blogartikel (single post) ─────────────────────────────── */
.article-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-lg);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
}
.article-body { padding: 10px 0 30px; }
.article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 12px;
}
.article-body h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  margin: 22px 0 10px;
}
.article-body p { margin-bottom: 18px; font-size: 16.5px; line-height: 1.8; color: #2a2a2a; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; font-size: 16px; line-height: 1.7; color: #2a2a2a; }

.article-cta-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 50px 0 0;
  text-align: center;
}
.article-cta-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.article-cta-box p { color: rgba(255,255,255,.85); margin-bottom: 24px; font-size: 15.5px; }

/* APA goed/fout voorbeelden */
.apa-label { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.apa-label.wrong { color: #dc2626; }
.apa-label.right { color: var(--primary); }
.apa-example {
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.7;
}
.apa-wrong { background: #fdecec; border-left: 4px solid #dc2626; }
.apa-right { background: var(--primary-light); border-left: 4px solid var(--primary); }

/* Weekplanning-blokken */
.week-plan, .retake-plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 12px;
}
.week-plan-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--primary);
  font-size: 14.5px;
  margin-bottom: 4px;
}
.week-plan-body { font-size: 14.5px; color: var(--text-muted); }
.retake-week { font-weight: 800; color: var(--primary); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.retake-plan p { margin: 0; font-size: 14.5px; color: var(--text-muted); }

/* Gerelateerde artikelen */
.related-post-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all .25s ease;
  height: 100%;
}
.related-post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.related-post-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   CLASSIC SKIN - origineel uiterlijk (logo-gecentreerd boven
   menu, geen topbar, beige hero met zwevende Martin-kaart)
   ════════════════════════════════════════════════════════════ */
.site-header { background: var(--primary); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,.18); }

.header-logo-row {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 12px 16px 8px;
}
.header-logo-row .brand { line-height: 1; }
.header-logo-row .brand img { height: 46px; width: auto; display: block; }

.main-nav .nav-inner {
  display: flex; align-items: center; gap: 16px;
  justify-content: flex-start; flex-wrap: nowrap;
  max-width: 1200px; margin: 0 auto; padding: 6px 16px 9px;
}
.main-nav .nav-inner .lang-switcher { flex-shrink: 0; }
.main-nav .nav-menu {
  flex: 1 1 auto; display: flex; align-items: center; justify-content: center;
  gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap;
}
.main-nav .nav-cta { flex-shrink: 0; }

/* ── Hero: beige met zwevende kaart ── */
.hero-section { background: var(--bg); padding: 80px 0 70px; position: relative; overflow: hidden; }
.hero-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,67,50,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary-light); color: var(--primary);
  font-size: 13px; font-weight: 600; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 22px; border: 1px solid rgba(27,67,50,.15);
}
.hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; color: var(--primary); margin-bottom: 22px; letter-spacing: -.5px; }
.hero-subtitle { font-size: 18px; color: #3a5a4a; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-social-proof { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; flex-shrink: 0; }
.hero-stat-text strong { display: block; font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat-text span { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card-float { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); text-align: center; max-width: 340px; position: relative; }
.hero-avatar { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(27,67,50,.2); }
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.hero-card-name { font-size: 1.15rem; margin-bottom: 6px; color: var(--primary); }
.hero-card-role { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.rating-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 6px; }
.hero-card-note { font-size: 12px; color: var(--text-muted); margin: 0; }
.float-badge { position: absolute; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 20px; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.float-badge-1 { top: -12px; left: -20px; }
.float-badge-2 { bottom: -12px; right: -20px; }

/* ── Hero v3: mint card met illustratie (rebrand van hero-section) ── */
.hero-v3 { background: var(--primary-light); padding: 70px 0 64px; }
.hero-v3::before { display: none; }
.hero-v3 .hero-badge { background: rgba(255,255,255,.65); }
.hero-v3 .hero-subtitle { color: var(--text-muted); }

.hero-stats-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-stat-chip {
  display: flex; align-items: center; gap: 11px;
  flex: 1; min-width: 130px; text-align: left;
  background: #fff; border-radius: 14px; padding: 12px 15px;
  box-shadow: 0 6px 16px rgba(27,67,50,.09);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-stat-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(27,67,50,.14); }
.hero-stat-chip-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.hero-stat-chip-text { min-width: 0; }
.hero-stat-chip-number { font-size: 18px; font-weight: 800; line-height: 1.15; color: var(--primary); white-space: nowrap; }
.hero-stat-chip-label { font-size: 10.5px; color: var(--text-muted); margin-top: 1px; font-weight: 500; line-height: 1.25; }

.hero-stat-chip-primary { background: var(--primary-hover); box-shadow: 0 6px 16px rgba(45,106,79,.28); }
.hero-stat-chip-primary .hero-stat-chip-icon { background: rgba(255,255,255,.2); color: #fff; }
.hero-stat-chip-primary .hero-stat-chip-number { color: #fff; }
.hero-stat-chip-primary .hero-stat-chip-label { color: rgba(255,255,255,.85); }

.hero-v3 .hero-cta-group { margin-bottom: 0; }
.hero-v3 .btn-primary-custom { background: var(--primary-hover); }
.hero-v3 .btn-primary-custom:hover { background: var(--primary); }
.hero-v3 .btn-outline-custom { border-color: var(--primary-hover); color: var(--primary-hover); }
.hero-v3 .btn-outline-custom:hover { background: transparent; border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: none; }

.hero-illustration-wrap { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.hero-blob {
  position: absolute; width: 92%; height: 88%;
  background: var(--primary-hover); opacity: .16;
  border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%;
  z-index: 0;
}
.hero-illustration { position: relative; z-index: 1; width: 100%; max-width: 480px; height: auto; }

/* USP-balk wit zodat hij afsteekt tegen de beige hero */
.usp-bar { background: var(--white) !important; }

/* ── Mobiel ── */
@media (max-width: 991px) {
  .header-logo-row { justify-content: flex-start; padding: 10px 16px; }
  .header-logo-row .brand img { height: 38px; }
  .menu-toggle { display: block; }
  .main-nav .nav-inner { flex-direction: column; align-items: stretch; gap: 0; padding: 4px 0 16px; }
  .main-nav .nav-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav .nav-menu li { width: 100%; }
  .main-nav .nav-menu a.nav-link { display: block; }
  .main-nav .lang-switcher { align-self: center; margin: 10px 0 4px; }
  .main-nav .nav-cta { margin: 14px 18px 0; text-align: center; }
  .hero-card-float { margin-top: 40px; }
  .float-badge-1 { left: 4px; }
  .float-badge-2 { right: 4px; }
  .hero-stat-chip:nth-child(2) { margin-top: 0; }
  .hero-illustration-wrap { min-height: 260px; margin-top: 36px; }
}
@media (max-width: 480px) {
  .hero-stats-row { flex-direction: column; }
  .hero-stat-chip:nth-child(2) { margin-top: 0; }
}
/* VAT-exempt note on package cards (CRKBO) */
.pkg-vat {
  font-size: 11.5px; font-weight: 600; color: var(--primary);
  text-align: center; margin: 0 0 14px; line-height: 1.4;
}
