/* Check Je Taakverdeling — shared styles (WOMEN Inc.-inspired: clear type, strong CTA, editorial blocks) */
:root {
  --color-ink: #1a1f2e;
  --color-muted: #4a5568;
  --color-bg: #f7f5f2;
  --color-surface: #ffffff;
  --color-accent: #5b3ea4;
  --color-accent-dark: #3d2a72;
  --color-highlight: #e85d75;
  --color-line: #e2e0db;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(26, 31, 46, 0.08);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-dark);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.logo-link img {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text small {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-family: inherit;
  cursor: pointer;
}

.nav-primary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-primary a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.nav-primary a:hover {
  color: var(--color-accent);
}

.nav-cta {
  background: var(--color-highlight);
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none !important;
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-primary {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-primary.is-open {
    display: block;
  }

  .nav-primary ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  min-height: min(52vh, 520px);
  display: grid;
  align-items: end;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 31, 46, 0.25) 0%,
    rgba(26, 31, 46, 0.75) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 2.75rem;
  color: #fff;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 42ch;
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-highlight);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: 3.5rem 1.25rem;
}

.section-alt {
  background: var(--color-surface);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 640px;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.section-intro {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}

.section-alt .card {
  background: var(--color-bg);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  position: relative;
  padding-left: 3.25rem;
  border-left: 3px solid var(--color-accent);
  padding-bottom: 0.25rem;
  margin-left: 0.5rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -1.15rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.steps p {
  margin: 0;
  color: var(--color-muted);
}

.article-teaser {
  border-top: 1px solid var(--color-line);
  padding-top: 2rem;
  margin-top: 1rem;
}

.article-teaser h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}

.article-teaser p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.topic-pills a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
}

.topic-pills a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.checklist-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.checklist-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.checklist-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist-items label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.checklist-items label:hover {
  background: rgba(91, 62, 164, 0.06);
}

.checklist-items input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.checklist-progress {
  margin-top: 1.25rem;
  height: 8px;
  background: var(--color-line);
  border-radius: 999px;
  overflow: hidden;
}

.checklist-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
  width: 0%;
  transition: width 0.35s ease;
}

.checklist-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 55%, #7c5cbf 100%);
  color: #fff;
  padding: 3rem 1.25rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 520px;
  opacity: 0.95;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--color-accent-dark);
}

.cta-band .btn-primary:hover {
  color: var(--color-accent-dark);
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
  padding-right: 2rem;
}

.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 1.25rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer a {
  color: #fff;
  opacity: 0.9;
}

.site-footer a:hover {
  opacity: 1;
}

.footer-brand {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: min(38vh, 360px);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 31, 46, 0.85), rgba(91, 62, 164, 0.45));
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  color: #fff;
}

.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.page-hero-inner p {
  margin: 0;
  max-width: 52ch;
  opacity: 0.95;
}

.prose {
  max-width: 680px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose ul {
  color: var(--color-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: #fff;
}

.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.related-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: var(--color-bg);
}

.related-card a {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-ink);
}

.related-card a:hover {
  color: var(--color-accent);
}
