:root {
  --brand-primary: #2f6fed;
  --brand-primary-dark: #1e4fb3;
  --brand-primary-light: #eaf1ff;

  --text-main: #1f2937;
  --text-soft: #6b7280;
  --text-light: #94a3b8;

  --bg-page: #f6f8fc;
  --bg-card: #ffffff;
  --bg-soft: #f8fbff;
  --bg-hero: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);

  --border-soft: #e5eaf3;
  --border-strong: #d7e0ee;

  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  --transition-fast: 0.18s ease;
  --transition-normal: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-page);
  color: var(--text-main);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

/* ---------- TYPOGRAFIE ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-main);
}

.text-muted,
.text-secondary,
.section-subtitle,
.prompt-note {
  color: var(--text-soft) !important;
}

/* ---------- NAVIGATIE ---------- */

.nav-link-main {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link-main:hover,
.nav-link-main--active {
  color: var(--brand-primary);
}

.nav-icon-link {
  color: var(--text-soft);
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.nav-icon-link:hover,
.nav-icon-link--active {
  color: var(--brand-primary);
}

/* ---------- OVER-PAGINA ---------- */

.about-hero {
  background: var(--bg-hero);
  border-bottom: 1px solid #e8edf6;
  padding: 4rem 0;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.about-photo-sm {
  width: 200px;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

/* ---------- ZOEKPAGINA ---------- */

.search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.search-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.12);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
  pointer-events: none;
}

.search-result-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  display: block;
  color: inherit;
}

.search-result-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
  color: inherit;
}

.search-result-role {
  font-size: 0.8rem;
  color: var(--brand-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.search-result-task {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.search-result-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
}

/* ---------- HERO ---------- */

.hero {
  background: var(--bg-hero);
  border-bottom: 1px solid #e8edf6;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  background: rgba(47, 111, 237, 0.08);
  filter: blur(30px);
  border-radius: 999px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 40px -60px auto auto;
  width: 240px;
  height: 240px;
  background: rgba(47, 111, 237, 0.05);
  filter: blur(34px);
  border-radius: 999px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dfe8fb;
  color: var(--brand-primary-dark);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(47, 111, 237, 0.08);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.lead {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
}

/* ---------- ALGEMENE CARDS / SECTIES ---------- */

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.section-card:hover {
  box-shadow: var(--shadow-md);
}

.section-title {
  margin-bottom: 0.35rem;
}

.section-subtitle {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.step-label {
  width: 2.1rem;
  height: 2.1rem;
  min-width: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(47, 111, 237, 0.22);
}

/* ---------- HULPBLOKKEN ---------- */

.mini-tip {
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
  border: 1px dashed #cfdcf7;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: #466082;
  font-size: 0.95rem;
}

/* ---------- ROL- EN TAAKKAARTEN ---------- */

.role-card,
.task-card {
  border-radius: var(--radius-md) !important;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background-color var(--transition-fast);
  background: #fff;
  cursor: pointer;
  border: 1px solid transparent !important;
  overflow: hidden;
  position: relative;
}

.role-card::before,
.task-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: transparent;
  transition: background-color var(--transition-fast);
}

.role-card:hover,
.task-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
  border-color: #dce6f7 !important;
}

.role-card:hover::before,
.task-card:hover::before {
  background: rgba(47, 111, 237, 0.45);
}

.role-card .card-body,
.task-card .card-body {
  padding: 1.25rem;
}

.role-card h3,
.task-card h3 {
  margin-bottom: 0.4rem;
}

.role-card p,
.task-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.active-role,
.active-task {
  background: linear-gradient(180deg, #fafdff 0%, #f2f7ff 100%);
  border-color: #bcd0ff !important;
  box-shadow: 0 18px 42px rgba(47, 111, 237, 0.12) !important;
}

.active-role::before,
.active-task::before {
  background: var(--brand-primary);
}

.active-role h3,
.active-task h3 {
  color: var(--brand-primary-dark);
}

/* ---------- FORMULIER ---------- */

.form-label {
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text-main);
  padding: 0.82rem 0.95rem;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

/* Keuzelijst-wrapper met pijltje naar beneden */
.select-wrapper {
  position: relative;
}

.select-wrapper .form-select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-wrapper__icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-soft);
  flex-shrink: 0;
}

.form-control::placeholder {
  color: #98a4b8;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.22rem rgba(47, 111, 237, 0.12);
  background: #fff;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-text {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.form-check-input {
  border-color: #c7d3e4;
}

.form-check-input:checked {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.invalid-feedback {
  font-size: 0.88rem;
}

.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: none !important;
}

/* ---------- PROMPT OUTPUT ---------- */

#promptOutput {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.94rem;
  line-height: 1.6;
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
  border: 1px solid #dbe5f2;
  min-height: 300px;
}

.prompt-note {
  font-size: 0.95rem;
}

/* ---------- CTA BOX ---------- */

.cta-box {
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

/* ---------- BUTTONS ---------- */

.btn {
  border-radius: 14px;
  padding: 0.78rem 1.05rem;
  font-weight: 600;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 24px rgba(47, 111, 237, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  box-shadow: 0 14px 30px rgba(30, 79, 179, 0.24);
}

.btn-outline-secondary {
  border-color: #cfd9e8;
  color: #41556f;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background: #f4f7fb;
  border-color: #bac8da;
  color: #2c3e56;
}

.btn-outline-dark {
  border-color: #d4dbe6;
  color: #233247;
  background: #fff;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: #f7f9fc;
  border-color: #b9c6d8;
  color: #162536;
}

/* ---------- FOOTER ---------- */

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border-soft);
  padding-block: 2.5rem;
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand { min-width: 160px; }
.footer-brand .nav-brand { margin-bottom: .35rem; display: block; font-weight: 700; color: var(--text-main); text-decoration: none; }
.footer-tagline { font-size: .85rem; color: var(--text-light); }

.footer-links h4 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .75rem;
}

.footer-links ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.footer-links a {
  font-size: .88rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--brand-primary); text-decoration: none; }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: .82rem;
  color: var(--text-light);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  margin-top: 1rem;
}

/* ---------- JURIDISCHE PAGINA'S ---------- */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.4rem;
}

.legal-content code {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: .1em .4em;
  font-size: .88em;
}

.legal-last-updated {
  display: inline-block;
  font-size: .83rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ---------- BOOKMARK CTA ---------- */

.bookmark-cta {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-soft);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
}

.bookmark-cta__icon {
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.bookmark-cta__text {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.bookmark-cta__text strong {
  color: var(--text-main);
}

.bookmark-cta__hint {
  display: inline;
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
}

kbd {
  display: inline-block;
  padding: 0.1em 0.35em;
  font-size: 0.78rem;
  font-family: ui-monospace, monospace;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  color: var(--text-main);
}

/* ---------- UTILITIES ---------- */

.shadow-soft {
  box-shadow: var(--shadow-sm);
}

.rounded-soft {
  border-radius: var(--radius-md);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991.98px) {
  .section-card,
  .cta-box {
    padding: 1.35rem !important;
  }

  .role-card .card-body,
  .task-card .card-body {
    padding: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .step-header {
    align-items: flex-start;
  }

  .step-label {
    margin-top: 0.15rem;
  }

  .btn {
    width: 100%;
  }

  #promptActions .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-badge {
    font-size: 0.84rem;
    padding: 0.48rem 0.85rem;
  }

  .section-card,
  .cta-box {
    border-radius: 18px;
  }

  .role-card,
  .task-card {
    border-radius: 16px !important;
  }

  .form-control,
  .form-select,
  .btn {
    font-size: 1rem;
  }
}

/* ================================================
   TOOL CARDS
   ================================================ */

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
  color: inherit;
}

.tool-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.tool-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.tool-card__tagline {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.tool-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.tool-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
}

.tool-badge--webshop { background: #fef3c7; color: #92400e; }
.tool-badge--beginner { background: #dcfce7; color: #166534; }
.tool-badge--gevorderd { background: #f3e8ff; color: #6b21a8; }
.tool-badge--belgisch { background: #fce7f3; color: #9d174d; }
.tool-badge--gratis { background: #dcfce7; color: #166534; }
.tool-badge--ai { background: #f0f9ff; color: #0369a1; }

/* Tool detail anchor target offset */
.tool-anchor {
  scroll-margin-top: 80px;
}

/* ================================================
   QUIZ
   ================================================ */

.quiz-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.quiz-progress {
  height: 6px;
  background: var(--border-soft);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.quiz-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), #6366f1);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.quiz-step--active {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.quiz-question {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.quiz-question-sub {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  width: 100%;
}

.quiz-option:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-light);
}

.quiz-option--selected {
  border-color: var(--brand-primary) !important;
  background: var(--brand-primary-light) !important;
}

.quiz-option__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.quiz-option__label {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.quiz-option__desc {
  font-size: 0.83rem;
  color: var(--text-soft);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
}

.quiz-counter {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Quiz resultaat */
.quiz-result {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}

.quiz-result--active {
  display: block;
}

.result-winner {
  background: linear-gradient(135deg, var(--brand-primary-light), #f0f4ff);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.result-winner__icon {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.result-winner__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.result-winner__name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.result-winner__tagline {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.result-desc {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.result-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.result-pros-cons__col {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.result-pros-cons__title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.result-pros-cons__title--pros { color: #16a34a; }
.result-pros-cons__title--cons { color: #dc2626; }

.result-pros-cons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-main);
}

.result-pros-cons__list li {
  padding: 0.2rem 0;
}

.result-pros-cons__list li::before {
  margin-right: 0.4rem;
}

.result-pros-cons--pros li::before { content: '✓'; color: #16a34a; }
.result-pros-cons--cons li::before { content: '✗'; color: #dc2626; }

/* ================================================
   HOMEPAGE SPECIFIEK
   ================================================ */

.home-hero {
  background: var(--bg-hero);
  border-bottom: 1px solid #e8edf6;
  padding: 5rem 0 4rem;
}

.landing-hero {
  background: linear-gradient(135deg, #edf4ff 0%, #f8fbff 50%, #ffffff 100%);
  border-bottom: 1px solid #e8edf6;
  padding: 4.5rem 0 3.5rem;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.1);
  color: var(--brand-primary-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.landing-hero p.lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 720px;
}

.seo-course-card {
  max-width: 760px;
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 2;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.form-privacy-note {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.home-quiz-teaser {
  background: linear-gradient(135deg, #1e4fb3 0%, #2f6fed 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: white;
  text-align: center;
}

.home-quiz-teaser h2 {
  color: white;
  font-size: 1.8rem;
}

.home-quiz-teaser p {
  color: rgba(255,255,255,0.85);
}

.home-quiz-teaser .btn-white {
  background: white;
  color: var(--brand-primary);
  font-weight: 700;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
}

.home-quiz-teaser .btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.stats-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* About mini sectie */
.about-mini {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.about-mini__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border-soft);
}

.about-mini__text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Mobile overrides */
@media (max-width: 767.98px) {
  .result-pros-cons {
    grid-template-columns: 1fr;
  }

  .quiz-question {
    font-size: 1.15rem;
  }

  .about-mini {
    flex-direction: column;
    text-align: center;
  }

  .home-quiz-teaser {
    padding: 2rem 1.5rem;
  }

  .home-quiz-teaser h2 {
    font-size: 1.4rem;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .seo-course-card {
    margin-top: -1.5rem;
  }
}

/* ================================================
   QUIZ ALTERNATIEVEN (top 2 & 3)
   ================================================ */

.result-alternatives {
  margin-bottom: 1.25rem;
}

.result-alternatives__title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.result-alt-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
  margin-bottom: 0.6rem;
}

.result-alt-card:last-child {
  margin-bottom: 0;
}

.result-alt-card:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-light);
  color: inherit;
}

.result-alt-card__icon {
  font-size: 1.4rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
}

.result-alt-card__content {
  flex: 1;
  min-width: 0;
}

.result-alt-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.result-alt-card__tagline {
  font-size: 0.82rem;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-alt-card__arrow {
  color: var(--text-soft);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ================================================
   YOUTUBE EMBED (privacy-vriendelijk)
   ================================================ */

.yt-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  margin-bottom: 1.25rem;
}

.yt-embed__preview {
  position: relative;
  cursor: pointer;
  display: block;
}

.yt-embed__preview img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  transition: opacity 0.2s;
}

.yt-embed__preview:hover img {
  opacity: 1;
}

.yt-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 68px;
  height: 68px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}

.yt-embed__preview:hover .yt-embed__play {
  transform: translate(-50%, -55%) scale(1.12);
  background: #cc0000;
}

.yt-embed__notice {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.72);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 0.45rem 0.85rem;
  text-align: center;
  pointer-events: none;
}

.yt-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.yt-embed__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
