:root {
  --rose: #F43F5E;
  --rose-deep: #E11D48;
  --rose-dark: #BE123C;
  --rose-soft: #FFF1F2;
  --slate: #334155;
  --slate-900: #1E293B;
  --slate-700: #374151;
  --slate-600: #475569;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --line: #E2E8F0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(51,65,85,0.08);
  --shadow-lift: 0 12px 32px rgba(51,65,85,0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.seam {
  display: block;
  width: 72px;
  height: 0;
  border: none;
  border-top: 3px dashed var(--rose);
  margin: 0;
}

.seam.centered {
  margin-left: auto;
  margin-right: auto;
}

.logo {
  display: inline-block;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2.5px dashed var(--rose);
  line-height: 1.2;
}

.logo .mkb {
  color: var(--slate);
}

.logo .rest {
  color: var(--rose);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--rose-deep);
}

.nav-links .active > a,
.nav-links a.active {
  color: var(--rose-deep);
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--slate);
  padding: 4px;
  line-height: 1;
}

:is(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.28);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--slate);
  border: 2px dashed var(--slate-400);
}

.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(244, 63, 94, 0.06) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      var(--line) 39px,
      var(--line) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      var(--line) 39px,
      var(--line) 40px
    ),
    var(--bg-soft);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0 88px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--rose-deep);
}

.hero-sub {
  font-size: 1.13rem;
  color: var(--slate-600);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-trust {
  font-size: 0.88rem;
  color: var(--slate-400);
  font-weight: 600;
}

.hero-trust i {
  color: var(--rose);
}

.hangtag {
  position: relative;
  background: var(--bg);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  padding: 36px 28px 28px;
  transform: rotate(2.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  margin: 0 auto;
}

.hangtag:hover {
  transform: rotate(0deg);
  box-shadow: 0 20px 48px rgba(51, 65, 85, 0.18);
}

.hangtag::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px dashed var(--rose);
  border-radius: 10px;
  pointer-events: none;
}

.hangtag-hole {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--line);
  box-shadow: inset 0 2px 4px rgba(51,65,85,0.08);
}

.proof {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 44px;
}

.proof-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-names span {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--slate-600);
  opacity: 0.75;
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: 52px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.centered .seam {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-head p {
  color: var(--slate-600);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dienst-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dienst-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.dienst-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.dienst-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.dienst-card p {
  font-size: 0.94rem;
  color: var(--slate-600);
}

.werkwijze {
  background: var(--slate-900);
}

.werkwijze .section-head h2 {
  color: #fff;
}

.werkwijze .section-head p {
  color: var(--slate-400);
}

.stappen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.stappen::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.666% + 30px);
  right: calc(16.666% + 30px);
  height: 0;
  border-top: 2px dashed rgba(148, 163, 184, 0.3);
  pointer-events: none;
}

.stap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.stap-nummer {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px var(--slate-900);
  position: relative;
  z-index: 1;
}

.stap h3 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.stap p {
  color: var(--slate-400);
  font-size: 0.94rem;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.usp {
  padding: 34px 28px;
  background: var(--bg);
  transition: background 0.2s ease;
  position: relative;
}

.usp:not(:last-child) {
  border-right: 1px dashed var(--line);
}

.usp:hover {
  background: var(--rose-soft);
}

.usp i {
  font-size: 1.5rem;
  color: var(--rose-deep);
  margin-bottom: 16px;
  display: block;
}

.usp h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.usp p {
  font-size: 0.92rem;
  color: var(--slate-600);
}

.sectoren {
  background: var(--bg-soft);
}

.sectoren-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sector-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--slate);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rose);
}

.sector-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sector-card small {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--slate-400);
}

.offerte-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.offerte-pitch h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.offerte-punten {
  list-style: none;
  margin-top: 24px;
}

.offerte-punten li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  font-size: 0.97rem;
  color: var(--slate-600);
}

.offerte-punten li:not(:last-child) {
  border-bottom: 1px dashed var(--line);
}

.offerte-punten li i {
  color: var(--rose-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 36px 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--slate-900);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  transition: border-color 0.15s ease, background 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose);
  background: var(--bg);
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--rose-deep);
}

.veldfout {
  display: none;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.form-field.invalid .veldfout {
  display: block;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  grid-column: 1 / -1;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-align: center;
  margin-top: 12px;
}

.form-succes {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

.form-succes.tonen {
  display: block;
}

.form-succes-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.form-succes h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-succes p {
  color: var(--slate-600);
  font-size: 0.97rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.review-stars {
  color: var(--rose);
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-tekst {
  color: var(--slate-600);
  font-size: 0.94rem;
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.65;
}

.review-auteur {
  font-weight: 700;
  font-size: 0.92rem;
}

.review-bedrijf {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--slate-400);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-decoration: none;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

.blog-card h3 a:hover {
  color: var(--rose-deep);
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.artikel-hero {
  background: var(--slate-900);
  padding: 64px 0;
}

.artikel-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.artikel-meta {
  color: var(--slate-400);
  font-size: 0.9rem;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.artikel-body {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px 24px;
}

.artikel-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.artikel-body p {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 18px;
  line-height: 1.75;
}

.artikel-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}

.artikel-body ul li {
  margin-bottom: 8px;
  color: var(--slate-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio-placeholder {
  text-align: center;
  padding: 32px;
  color: var(--slate-400);
}

.portfolio-placeholder i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team-lid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-foto {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--slate-400);
  font-size: 3rem;
  overflow: hidden;
}

.team-naam {
  font-size: 1.35rem;
  font-weight: 700;
}

.team-rol {
  color: var(--rose-deep);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.admin-section {
  background: var(--bg-soft);
  min-height: 100vh;
}

.admin-header {
  background: var(--slate-900);
  padding: 20px 0;
}

.admin-header .logo .mkb {
  color: #fff;
}

.admin-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.review-item-admin {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.btn-danger {
  background: #EF4444;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-danger:hover {
  background: #DC2626;
}

.btn-export {
  background: var(--slate);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-export:hover {
  background: var(--slate-900);
}

footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.25);
}

.footer-omschrijving {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 36ch;
  line-height: 1.65;
}

.footer-kolom h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-kolom ul {
  list-style: none;
}

.footer-kolom ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer-kolom a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-kolom a:hover {
  color: var(--rose);
}

.footer-kolom i {
  width: 20px;
  display: inline-block;
  color: var(--rose);
  margin-right: 6px;
  text-align: center;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}

.page-hero {
  background: var(--slate-900);
  padding: 64px 0 56px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}

.page-hero p {
  color: var(--slate-400);
  font-size: 1.1rem;
  max-width: 52ch;
  margin-top: 12px;
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 0 64px;
  }

  .hangtag {
    display: none;
  }

  .diensten-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectoren-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp:nth-child(odd) {
    border-right: 1px dashed var(--line);
  }

  .usp:nth-child(even) {
    border-right: none;
  }

  .usp:nth-child(1),
  .usp:nth-child(2) {
    border-bottom: 1px dashed var(--line);
  }

  .stappen {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stappen::before {
    display: none;
  }

  .stap {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 20px;
  }

  .stap-nummer {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .stap-content {
    flex: 1;
  }

  .offerte-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(51,65,85,0.1);
    z-index: 49;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .nav {
    position: sticky;
  }

  .diensten-grid {
    grid-template-columns: 1fr;
  }

  .sectoren-grid {
    grid-template-columns: 1fr;
  }

  .usps-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .usp {
    border-right: none !important;
    border-bottom: 1px dashed var(--line);
  }

  .usp:last-child {
    border-bottom: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: 1;
  }

  .form-submit {
    grid-column: 1;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   AANVULLINGEN — logo, subpagina's, FAQ, contact, legal
   ========================================================= */

/* --- Logo (SVG) --- */
.logo {
  border-bottom: none;
  padding-bottom: 0;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

footer .logo-img {
  height: 28px;
}

/* --- Seam / section headers (subpagina-varianten) --- */
.seam {
  margin-bottom: 20px;
}

.seam-center {
  margin-left: auto;
  margin-right: auto;
}

.seam-light {
  border-top-color: var(--rose);
}

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head-center .seam {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--slate-900);
}

.section-intro {
  color: var(--slate-600);
  font-size: 1.05rem;
  max-width: 620px;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark,
.section-cta {
  background: var(--slate-900);
}

.section-dark .section-title,
.section-title-light,
.section-cta h2 {
  color: #fff;
}

.section-intro-light {
  color: var(--slate-400);
}

.section-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-container {
  text-align: center;
  max-width: 640px;
}

.section-cta p {
  color: var(--slate-400);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.container-narrow {
  max-width: 780px;
}

.container-narrow > p {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.75;
}

/* Ruimte tussen sectiekop en grids op subpagina's */
.diensten-grid-groot,
.methoden-grid,
.werkwijze-usps,
.section .team-grid,
.section .blog-grid {
  margin-top: 36px;
}

/* --- Producten: grote dienstkaarten --- */
.diensten-grid-groot {
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.diensten-grid-groot .dienst-card h2,
.diensten-grid-groot .dienst-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.dienst-label {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin: 18px 0 8px;
}

.dienst-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.dienst-tags li {
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.dienst-opdruk {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 20px;
}

/* --- Producten: opdrukmethoden (donkere sectie) --- */
.methoden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.methode-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px dashed rgba(148, 163, 184, 0.35);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.methode-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--rose);
}

.methode-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.methode-card h3 {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.methode-card p {
  color: var(--slate-400);
  font-size: 0.94rem;
}

/* --- Index: waarom-kaarten --- */
.usp-card {
  padding: 34px 28px;
  background: var(--bg);
  transition: background 0.2s ease;
  position: relative;
}

.usp-card:not(:last-child) {
  border-right: 1px dashed var(--line);
}

.usp-card:hover {
  background: var(--rose-soft);
}

.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.usp-card:hover .usp-icon {
  background: #fff;
}

.usp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.usp-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
}

/* --- Index: hero & hangtag details --- */
.hero-left {
  min-width: 0;
}

.hangtag-wrap {
  display: flex;
  justify-content: center;
}

.hangtag-label {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-deep);
  text-align: center;
  margin-bottom: 14px;
}

.hangtag-list {
  list-style: none;
}

.hangtag-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--slate-600);
  border-bottom: 1px dashed var(--line);
}

.hangtag-list li:last-child {
  border-bottom: none;
}

.hangtag-list i {
  color: var(--rose-deep);
  margin-top: 4px;
  flex-shrink: 0;
}

.hangtag-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-400);
}

.proof {
  text-align: center;
}

.proof-names {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 44px;
  margin-top: 12px;
}

/* --- Over ons: werkwijze-usps --- */
.werkwijze-usps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.werkwijze-usp {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.usp-icon-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.usp-tekst h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.usp-tekst p {
  font-size: 0.92rem;
  color: var(--slate-600);
}

/* --- Offerte: formulier --- */
.offerte-sectie {
  background: var(--bg-soft);
}

.form-groep {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-groep label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate);
}

.form-groep input,
.form-groep select,
.form-groep textarea {
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--slate-900);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus {
  border-color: var(--rose);
  background: var(--bg);
  outline: none;
}

.form-groep textarea {
  resize: vertical;
  min-height: 110px;
}

.form-groep.invalid input,
.form-groep.invalid select,
.form-groep.invalid textarea {
  border-color: var(--rose-deep);
}

.verplicht {
  color: var(--rose-deep);
}

.optioneel {
  color: var(--slate-400);
  font-weight: 500;
  font-size: 0.82rem;
}

.teken-teller {
  color: var(--slate-400);
  font-size: 0.8rem;
}

.hp-veld {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.privacy-note {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-align: center;
  margin-top: 14px;
}

.privacy-note a {
  color: var(--rose-deep);
}

.form-succes[hidden] {
  display: none;
}

.form-succes.tonen {
  display: block;
}

.form-succes > i {
  font-size: 2.4rem;
  color: #16A34A;
  margin-bottom: 14px;
  display: block;
}

.offerte-usps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 680px;
  margin: 28px auto 0;
}

.offerte-usp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-600);
}

.offerte-usp i {
  color: var(--rose-deep);
}

/* --- Blog artikelen --- */
.artikel-container {
  padding-left: 0;
  padding-right: 0;
}

.artikel-cta {
  background: var(--rose-soft);
  border: 1.5px dashed var(--rose);
  border-radius: var(--radius);
  padding: 36px 30px;
  margin-top: 44px;
  text-align: center;
}

.artikel-cta h2,
.artikel-cta h3 {
  margin-top: 0 !important;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.artikel-cta p {
  margin-bottom: 20px !important;
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rose-deep);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px dashed var(--line);
  margin-bottom: 14px;
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--slate-600);
  font-size: 0.97rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-lijst {
  list-style: none;
}

.contact-lijst li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--slate-600);
}

.contact-lijst li:last-child {
  border-bottom: none;
}

.contact-lijst i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-lijst strong {
  display: block;
  color: var(--slate-900);
  font-size: 0.92rem;
}

.contact-lijst a {
  color: var(--rose-deep);
  text-decoration: none;
}

.contact-lijst a:hover {
  text-decoration: underline;
}

/* --- Legal (privacy / voorwaarden) --- */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-body p,
.legal-body li {
  font-size: 0.98rem;
  color: var(--slate-600);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-update {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 40px;
}

/* --- Footer aanvullingen --- */
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-bottom a:hover {
  color: var(--rose);
}

/* --- Responsive aanvullingen --- */
@media (max-width: 920px) {
  .diensten-grid-groot {
    grid-template-columns: 1fr;
  }

  .methoden-grid {
    grid-template-columns: 1fr;
  }

  .werkwijze-usps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .usp-card:not(:last-child) {
    border-right: none;
  }

  .usp-card:nth-child(odd) {
    border-right: 1px dashed var(--line);
  }

  .usp-card:nth-child(1),
  .usp-card:nth-child(2) {
    border-bottom: 1px dashed var(--line);
  }
}

@media (max-width: 720px) {
  .usp-card {
    border-right: none !important;
    border-bottom: 1px dashed var(--line);
  }

  .usp-card:last-child {
    border-bottom: none;
  }

  .logo-img {
    height: 28px;
  }
}

/* Fix: nav-CTA tekstkleur (specificiteit .nav-links a won van .btn-primary) */
.nav-links a.btn-primary {
  color: #fff;
}

.nav-links a.btn-primary:hover {
  color: #fff;
}

.cta-container h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-container p {
  color: var(--slate-400);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* =========================================================
   UPGRADE — Diensten & Over ons
   ========================================================= */

/* --- Page-hero met chips (Diensten) --- */
.page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip-licht {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px dashed rgba(148, 163, 184, 0.45);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-200);
}

.chip-licht i {
  color: var(--rose);
}

/* --- Dienst-kaarten: opdruk-regel als zacht blok --- */
.diensten-grid-groot .dienst-opdruk {
  background: var(--bg-soft);
  border-left: 3px solid var(--rose);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 0.85rem;
}

.diensten-grid-groot .dienst-card {
  display: flex;
  flex-direction: column;
}

.diensten-grid-groot .dienst-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --- Over ons: statistieken --- */
.stats-rij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-blok {
  background: var(--bg);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.stat-blok:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
}

.stat-getal {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rose-deep);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-top: 6px;
}

/* --- Over ons: teamkaarten --- */
.team-grid {
  gap: 24px;
}

.team-lid {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 30px;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-lid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  border-top: 3px dashed var(--rose);
}

.team-lid:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1.5px dashed var(--rose);
}

.team-lid .team-naam {
  margin-bottom: 2px;
}

.team-lid .team-rol {
  margin-bottom: 12px;
}

.team-lid > p:last-child {
  color: var(--slate-600);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .stats-rij {
    grid-template-columns: 1fr;
  }
}
