/* ============================================
   GROWSULT — Page Styles (shared across all new pages)
   Generic sections: hero-banner, cards, forms, FAQ, steps
   ============================================ */

/* ---------- Page Hero Banner ---------- */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,113,188,0.85), rgba(90,202,200,0.75));
  z-index: 1;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 48px;
  width: 100%;
}
.page-hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero__subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.65;
  max-width: 700px;
  margin-bottom: 20px;
}
.page-hero .btn {
  margin-top: 8px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: #f0f6fb;
  padding: 12px 0;
  font-size: 13px;
  color: #5e7d9a;
  border-bottom: 1px solid #d6e6f2;
}
.breadcrumbs a {
  color: #0071bc;
}
.breadcrumbs .separator {
  margin: 0 8px;
  color: #8ab4d4;
}

/* ---------- Section Blocks ---------- */
.page-section {
  padding: 64px 0;
}
.page-section--alt {
  background: #f0f6fb;
}
.page-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1a2b3c;
  margin-bottom: 12px;
}
.page-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 10px;
}
.page-section p {
  color: #3d5a75;
  line-height: 1.7;
  font-size: 16px;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #d6e6f2;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0,113,188,0.06);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,113,188,0.12);
  border-color: #0071bc40;
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 8px;
}
.card__text {
  color: #3d5a75;
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Vakgebied Cards ---------- */
.vakgebied-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d6e6f2;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,113,188,0.06);
}
.vakgebied-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,113,188,0.14);
  border-color: #0071bc;
}
.vakgebied-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
  color: #fff;
}
.vakgebied-card__label {
  font-size: 17px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 8px;
}
.vakgebied-card__desc {
  font-size: 14px;
  color: #5e7d9a;
  line-height: 1.55;
}

/* ---------- Steps / Process ---------- */
.steps-section {
  counter-reset: step;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.step-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px 28px;
  border: 1px solid #d6e6f2;
  box-shadow: 0 2px 12px rgba(0,113,188,0.06);
}
.step-card__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071bc, #5acac8);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 8px;
}
.step-card__text {
  color: #3d5a75;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- FAQ / Accordion ---------- */
.faq-list {
  margin-top: 24px;
}
.faq-item {
  border: 1px solid #d6e6f2;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a2b3c;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-item__question:hover {
  background: #f0f6fb;
}
.faq-item__arrow {
  font-size: 18px;
  color: #0071bc;
  transition: transform 0.2s;
}
.faq-item.open .faq-item__arrow {
  transform: rotate(180deg);
}
.faq-item__answer {
  display: none;
  padding: 0 24px 18px;
  color: #3d5a75;
  font-size: 15px;
  line-height: 1.65;
}
.faq-item.open .faq-item__answer {
  display: block;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 560px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a2b3c;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d6e6f2;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  color: #1a2b3c;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0071bc;
  box-shadow: 0 0 0 3px rgba(0,113,188,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 {
  color: #0071bc;
  margin-bottom: 8px;
}

/* ---------- Testimonials / Reviews ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid #d6e6f2;
  box-shadow: 0 2px 12px rgba(0,113,188,0.06);
}
.testimonial-card__img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.testimonial-card__quote {
  color: #3d5a75;
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: #1a2b3c;
}
.testimonial-card__author span {
  font-size: 13px;
  color: #5e7d9a;
}

/* ---------- USP List ---------- */
.usp-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.usp-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 16px;
  color: #1a2b3c;
  line-height: 1.5;
}
.usp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5acac8;
  font-weight: 700;
  font-size: 16px;
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col--reverse {
  grid-template-columns: 1fr 2fr;
}

/* ---------- Sidebar ---------- */
.page-sidebar {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid #d6e6f2;
  box-shadow: 0 2px 12px rgba(0,113,188,0.06);
  position: sticky;
  top: 80px;
}
.page-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 12px;
}
.page-sidebar p {
  font-size: 14px;
  color: #3d5a75;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ---------- Blog / Article Cards ---------- */
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d6e6f2;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,113,188,0.06);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,113,188,0.12);
}
.article-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-card__body {
  padding: 24px;
}
.article-card__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #0071bc;
  background: #e8f4fd;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.article-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 8px;
  line-height: 1.35;
}
.article-card__excerpt {
  font-size: 14px;
  color: #5e7d9a;
  line-height: 1.55;
}

/* ---------- Wizard (Inschrijven) ---------- */
.wizard-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d6e6f2;
}
.wizard-step {
  flex: 1;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #5e7d9a;
  background: #f0f6fb;
  border-right: 1px solid #d6e6f2;
  transition: all 0.25s;
}
.wizard-step:last-child { border-right: none; }
.wizard-step.active {
  background: linear-gradient(135deg, #0071bc, #5acac8);
  color: #fff;
}
.wizard-step.completed {
  background: #0071bc;
  color: #fff;
}
.wizard-panel {
  display: none;
}
.wizard-panel.active {
  display: block;
}
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* ---------- Checkbox / Radio ---------- */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.form-checkbox input {
  margin-top: 3px;
  accent-color: #0071bc;
}
.form-checkbox label {
  font-size: 14px;
  color: #3d5a75;
  cursor: pointer;
}
.form-radio {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.form-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: #1a2b3c;
  padding: 14px 24px;
  border: 2px solid #d6e6f2;
  border-radius: 10px;
  transition: all 0.2s;
  flex: 1;
}
.form-radio input:checked + span {
  color: #0071bc;
  font-weight: 600;
}
.form-radio label:has(input:checked) {
  border-color: #0071bc;
  background: #f0f6fb;
}

/* ---------- Training Select Cards ---------- */
.training-select-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #d6e6f2;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.training-select-card:hover,
.training-select-card.selected {
  border-color: #0071bc;
  background: #f0f6fb;
}

/* ---------- Article Detail — Premium Hero ---------- */
.article-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.article-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,20,40,0.15) 0%,
    rgba(10,20,40,0.4) 40%,
    rgba(10,20,40,0.85) 80%,
    rgba(10,20,40,0.95) 100%);
}
.article-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 48px;
  width: 100%;
}
.article-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  max-width: 820px;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.article-hero__excerpt {
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  max-width: 680px;
  margin: 16px 0 0;
}
.article-hero__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #00a1e0, #5acac8);
  border-radius: 2px;
  margin: 24px 0;
}
.article-hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-hero__meta {
  display: flex;
  gap: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.article-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-hero__meta span + span::before {
  content: '·';
  margin-right: 6px;
  opacity: 0.5;
}

/* Article Body — Premium Typography */
.article-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 0;
}
.article-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0f1a2e;
  margin: 56px 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  padding-bottom: 12px;
  border-bottom: 2px solid #eef2f7;
}
.article-content h2:first-child {
  margin-top: 0;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a2b3c;
  margin: 36px 0 12px;
  line-height: 1.35;
}
.article-content p {
  color: #334155;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-content li {
  color: #334155;
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-content strong {
  color: #0f1a2e;
  font-weight: 700;
}
.article-content a {
  color: #0071bc;
  text-decoration: underline;
  text-decoration-color: rgba(0,113,188,.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.article-content a:hover {
  text-decoration-color: #0071bc;
}
.article-content blockquote {
  border-left: 4px solid #0071bc;
  padding: 18px 28px;
  margin: 28px 0;
  background: #f8fafc;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #475569;
  font-size: 16.5px;
  line-height: 1.7;
}
.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 28px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.article-content em {
  color: #475569;
}

/* Article CTA */
.article-cta {
  background: linear-gradient(135deg, #0071bc, #5acac8);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0;
}
.article-cta h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
}
.article-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .two-col,
  .two-col--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 30px;
  }
  .page-hero__inner {
    padding: 60px 16px 36px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .wizard-steps {
    flex-direction: column;
  }
  .form-radio {
    flex-direction: column;
  }
  .article-hero h1 {
    font-size: 26px;
  }
  .article-hero {
    min-height: 420px;
  }
  .article-hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 26px;
  }
  .page-section h2 {
    font-size: 24px;
  }
}

/* ---------- Filter Pills (kenniscentrum) ---------- */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: #e8f4fd;
  color: #0071bc;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.filter-pill:hover {
  background: #d0eaf8;
}
.filter-pill.active {
  background: #0071bc;
  color: #fff;
}

/* ---------- Contact Info Cards ---------- */
.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #d6e6f2;
}
.contact-info-card__icon {
  color: #0071bc;
  margin-bottom: 16px;
}
.contact-info-card__label {
  font-size: 13px;
  color: #5e7d9a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.contact-info-card__value {
  font-size: 17px;
  font-weight: 600;
  color: #1a2b3c;
  margin-bottom: 8px;
}
.contact-info-card__link {
  font-size: 14px;
  color: #0071bc;
  font-weight: 500;
}

/* ---------- Wizard Navigation (inschrijven) ---------- */
.wizard-steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 20px 0;
}
.wizard-step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #f0f6fb;
  font-size: 14px;
  color: #5e7d9a;
  transition: all 0.2s;
}
.wizard-step-indicator.active {
  background: #0071bc;
  color: #fff;
  font-weight: 600;
}
.wizard-step-indicator.completed {
  background: #5acac8;
  color: #fff;
}
.wizard-step-indicator__number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.wizard-step-connector {
  width: 40px;
  height: 2px;
  background: #d6e6f2;
  flex-shrink: 0;
}
.wizard-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* ---------- Form Rows (side-by-side) ---------- */
.form-row {
  display: flex;
  gap: 16px;
}
.form-group--half {
  flex: 1;
}

/* ---------- Article Hero ---------- */
.article-hero__category {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 16px;
}

/* ---------- Article Content — Legacy overrides removed (see Premium Typography above) ---------- */
.article-content blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #0071bc;
}
.article-figure {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
}
.article-figure img {
  width: 100%;
  display: block;
}
.article-figure figcaption {
  padding: 10px 16px;
  font-size: 13px;
  color: #5e7d9a;
  background: #f0f6fb;
}
.article-callout {
  background: linear-gradient(135deg, #e8f4fd, #e6faf9);
  border-left: 4px solid #0071bc;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.article-callout strong {
  display: block;
  color: #0071bc;
  margin-bottom: 6px;
}

/* ---------- Article CTA Block ---------- */
.article-cta {
  background: linear-gradient(135deg, #0071bc, #5acac8);
  color: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0 24px;
}
.article-cta h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
}
.article-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Table of Contents Sidebar ---------- */
.toc-list {
  list-style: decimal;
  padding-left: 20px;
  font-size: 14px;
}
.toc-list li {
  margin-bottom: 8px;
}
.toc-list a {
  color: #3d5a75;
  text-decoration: none;
}
.toc-list a:hover {
  color: #0071bc;
}

/* ---------- Sidebar Section Divider ---------- */
.page-sidebar__section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d6e6f2;
}
.page-sidebar__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ---------- Card Icon ---------- */
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__icon svg {
  width: 28px;
  height: 28px;
}

/* ---------- Responsive additions ---------- */
@media (max-width: 768px) {
  .filter-pills { justify-content: flex-start; }
  .wizard-steps-nav { flex-direction: column; gap: 8px; }
  .wizard-step-connector { width: 2px; height: 20px; }
  .wizard-buttons { flex-direction: column; }
  .form-row { flex-direction: column; gap: 0; }
  .article-content h2 { font-size: 22px; }
}
