/* ══ Reset & basis ══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: Inter, Arial, sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══ Topbalk ═══════════════════════════════════════════════════════════ */
.pb-topbar {
  background: #160711;
  color: #fff;
  font-size: 13px;
  padding: 9px 24px;
}
.pb-topbar .wp-block-group__inner-container,
.pb-topbar > .wp-block-group__inner-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pb-topbar a { color: #e5365a; font-weight: 700; }

/* ══ Header ════════════════════════════════════════════════════════════ */
.pb-header {
  background: #fff;
  border-bottom: 1px solid #eee8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}
.pb-header > .wp-block-group__inner-container {
  max-width: 1180px;
  margin: 0 auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.pb-header .wp-block-site-logo img { height: 72px; width: auto; }
.pb-header .wp-block-navigation a {
  font-weight: 700;
  font-size: 15px;
  color: #241725;
}
.pb-header .wp-block-navigation a:hover { color: #e5365a; }
.pb-header .wp-block-navigation__container { gap: 30px; }

/* Nav CTA knop */
.pb-nav-cta .wp-block-navigation-item__content,
.pb-header .wp-block-navigation .nav-cta > a,
.pb-header .wp-block-buttons .wp-block-button__link {
  background: linear-gradient(135deg, #e5365a, #6923d2) !important;
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 8px 24px rgba(229,54,90,.28) !important;
  border: none !important;
  animation: pb-pulse 2.5s ease-in-out infinite;
}
@keyframes pb-pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(229,54,90,.28); }
  50%      { box-shadow: 0 8px 32px rgba(229,54,90,.50), 0 0 0 4px rgba(229,54,90,.10); }
}

/* ══ Secties – gedeelde basis ══════════════════════════════════════════ */
.pb-section {
  padding: 80px 24px;
}
.pb-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* ══ Hero ══════════════════════════════════════════════════════════════ */
.pb-hero {
  background: radial-gradient(circle at 82% 20%, #ffe7ee 0%, #fff 34%, #fff 78%);
  padding: 54px 24px 38px;
  position: relative;
  overflow: hidden;
}
.pb-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 85%);
  pointer-events: none;
}
.pb-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 58px;
  align-items: center;
  min-height: 520px;
  position: relative;
  z-index: 2;
}
.pb-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
  color: #141018;
}
.pb-hero .pb-lead {
  font-size: clamp(18px, 2vw, 23px);
  color: #4f4652;
  margin: 0 0 30px;
  line-height: 1.5;
}
.pb-hero-photo-wrap {
  transform: rotate(2deg);
  background: #fff;
  border-radius: 34px;
  padding: 12px;
  box-shadow: 0 28px 80px rgba(38,20,43,.18);
  position: relative;
}
.pb-hero-photo-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 26px;
}
.pb-badge {
  position: absolute;
  left: -24px;
  bottom: 38px;
  background: #fff;
  border: 1px solid #eee8f0;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 24px 60px rgba(38,20,43,.15);
  max-width: 240px;
}
.pb-badge strong { display: block; font-size: 26px; color: #e5365a; line-height: 1; }
.pb-badge span   { display: block; font-size: 13px; font-weight: 700; color: #5d5360; margin-top: 6px; }

/* Logo strip */
.pb-logo-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.pb-trust-logo {
  height: 100px;
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: .5;
  filter: grayscale(100%);
}
.pb-trust-logo img { max-width: 100%; max-height: 72px; object-fit: contain; margin: 0 auto; }

/* ══ Knoppen ═══════════════════════════════════════════════════════════ */
.pb-btn-primary .wp-block-button__link,
.wp-block-button.pb-btn-primary .wp-block-button__link {
  background: linear-gradient(135deg, #e5365a, #6923d2) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 15px 22px !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  border: none !important;
  box-shadow: 0 18px 42px rgba(105,35,210,.22) !important;
}
.pb-btn-secondary .wp-block-button__link,
.wp-block-button.pb-btn-secondary .wp-block-button__link {
  background: #fff !important;
  color: #251426 !important;
  border: 1px solid #e8dce9 !important;
  border-radius: 16px !important;
  padding: 15px 22px !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

/* ══ Conversie sectie ══════════════════════════════════════════════════ */
.pb-conversion {
  background: #fff;
  padding: 92px 24px;
  border-top: 1px solid #eee8f0;
  border-bottom: 1px solid #eee8f0;
}
.pb-conversion-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 54px;
  align-items: center;
}
.pb-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff5f8;
  color: #b91b47;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}
.pb-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.pb-proof-item {
  border: 1px solid #eee8f0;
  border-radius: 20px;
  padding: 18px;
  background: #fff;
}
.pb-proof-item strong { display: block; font-size: 22px; color: #e5365a; margin-bottom: 6px; }
.pb-proof-item span   { display: block; font-size: 13px; color: #5d5360; font-weight: 700; }
.pb-panel {
  border: 1px solid #eee8f0;
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(180deg, #fff, #fff7fa);
  box-shadow: 0 24px 70px rgba(38,20,43,.10);
}
.pb-checklist { list-style: none; padding: 0; margin: 0; }
.pb-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  color: #4f4652;
  font-weight: 700;
  font-size: 15px;
}
.pb-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5365a, #6923d2);
}

/* ══ Quote ═════════════════════════════════════════════════════════════ */
.pb-quote-section {
  padding: 76px 24px;
  background: #fff;
  border-bottom: 1px solid #eee8f0;
}
.pb-quote-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid #eee8f0;
  border-radius: 30px;
  padding: 38px;
  background: linear-gradient(180deg, #fff, #fff7fa);
  box-shadow: 0 24px 70px rgba(38,20,43,.08);
  text-align: center;
}
.pb-quote-mark {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e5365a, #6923d2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 900;
  margin: 0 auto 22px;
}
.pb-quote-card blockquote {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.45;
  font-weight: 800;
  color: #241725;
  border: none;
  padding: 0;
}
.pb-quote-card cite {
  display: block;
  margin-top: 22px;
  color: #6b6470;
  font-style: normal;
  font-weight: 900;
  font-size: 15px;
}

/* ══ Cursuskaarten ═════════════════════════════════════════════════════ */
.pb-cards-section {
  padding: 80px 24px;
  background: #fff;
}
.pb-cards-section h2 { margin: 0 0 18px; color: #141018; }
.pb-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.pb-card {
  overflow: hidden;
  border: 1px solid #eee8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(38,20,43,.05);
}
.pb-card-image {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #fff5f8;
}
.pb-card-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,16,24,.15), rgba(20,16,24,.68));
  z-index: 1;
}
.pb-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  position: absolute; top: 0; left: 0;
}
.pb-card-title {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0;
  text-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.pb-card-body { padding: 22px 24px 24px; }
.pb-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff5f8;
  color: #b91b47;
  font-size: 12px;
  font-weight: 900;
}
.pb-card-body p { font-size: 15px; color: #5d5360; margin: 0 0 14px; }
.pb-text-link {
  font-weight: 900;
  color: #b91b47;
  font-size: 14px;
  border-bottom: 2px solid rgba(185,27,71,.18);
  text-decoration: none;
}

/* ══ Over ons ══════════════════════════════════════════════════════════ */
.pb-about {
  padding: 86px 24px;
  background: #fff;
  border-top: 1px solid #eee8f0;
  border-bottom: 1px solid #eee8f0;
}
.pb-about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}
.pb-about-card {
  border: 1px solid #eee8f0;
  border-radius: 30px;
  padding: 38px;
  background: linear-gradient(180deg, #fff, #fff7fa);
  box-shadow: 0 18px 54px rgba(38,20,43,.06);
}
.pb-about-card p { color: #5d5360; font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.pb-about-img-wrap { transform: rotate(-1.5deg); }
.pb-about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(38,20,43,.18);
}

/* ══ Cursusdetails ═════════════════════════════════════════════════════ */
.pb-details {
  padding: 70px 24px;
  background: #fafafa;
}
.pb-details-inner { max-width: 1180px; margin: 0 auto; }
.pb-detail-block {
  border: 1px solid #eee8f0;
  border-radius: 30px;
  padding: 38px;
  background: linear-gradient(180deg, #fff, #fff7fa);
  box-shadow: 0 18px 54px rgba(38,20,43,.06);
  margin-bottom: 24px;
  scroll-margin-top: 120px;
}
.pb-detail-block h2 { color: #141018; margin: 0 0 14px; }
.pb-detail-block h3 { margin: 24px 0 10px; color: #141018; }
.pb-detail-block p  { color: #5d5360; font-size: 17px; margin: 0 0 14px; }
.pb-detail-block ul { color: #5d5360; font-size: 17px; padding-left: 22px; margin: 0 0 20px; }
.pb-detail-block li { margin-bottom: 8px; }

/* Knoppen in detail blocks */
.pb-detail-block .wp-block-button__link,
.pb-detail-block .wp-block-buttons .wp-block-button__link {
  background: linear-gradient(135deg, #e5365a, #6923d2) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 14px 22px !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  border: none !important;
  box-shadow: 0 18px 42px rgba(105,35,210,.22) !important;
  text-decoration: none !important;
}
.pb-detail-block .wp-block-buttons {
  margin-top: 8px;
}

/* ══ CTA blok ══════════════════════════════════════════════════════════ */
.pb-cta-block {
  border-radius: 30px;
  padding: 34px 38px;
  background: linear-gradient(135deg, #160711, #6923d2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 42px;
}
.pb-cta-block h2 { color: #fff; margin: 0 0 8px; font-size: 32px; }
.pb-cta-block p  { color: #f6ddeb; margin: 0; font-size: 17px; }
.pb-cta-block .wp-block-button__link {
  background: #fff !important;
  color: #251426 !important;
  border-radius: 16px !important;
  padding: 14px 24px !important;
  font-weight: 900 !important;
  border: none !important;
  box-shadow: none !important;
  white-space: nowrap;
}

/* ══ Responsive ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .pb-hero-inner, .pb-conversion-inner, .pb-about-inner { grid-template-columns: 1fr; }
  .pb-cards-grid { grid-template-columns: 1fr 1fr; }
  .pb-logo-strip { grid-template-columns: repeat(2, 1fr); }
  .pb-proof-row  { grid-template-columns: 1fr; }
  .pb-about-img-wrap { transform: none; }
  .pb-about-img-wrap img { height: 380px; }
  .pb-cta-block { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .pb-cards-grid { grid-template-columns: 1fr; }
  .pb-hero-photo-wrap { transform: none; }
  .pb-badge { left: 0; }
}
