/*
Theme Name: Cavium
Theme URI: https://cavium.local/
Author: Cavium
Author URI: https://cavium.local/
Description: Licht, modern WordPress-thema voor Cavium (SEO-bureau) met merk-kleuren #0068ff en #ffa1c5.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: cavium
*/

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #111827;
  --muted: #5f6368;
  --brand: #0068ff;
  --brand-dark: #0052cc;
  --brand-2: #ffa1c5;
  --border: #e5e7eb;
  --ok: #16a34a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  letter-spacing: .3px;
}

.logo-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: var(--shadow);
}

.menu {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
}

.menu a:hover,
.menu .current-menu-item > a {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .1s ease, background .2s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brand);
  color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

/* Sections */
section {
  padding: 3.6rem 0;
}

h1 {
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.1;
  margin: .4rem 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 1rem;
}

.kicker {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

/* Cards & grid */
.grid {
  display: grid;
  gap: 1.2rem;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
}

.pill {
  display: inline-block;
  font-size: .75rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
  color: #0f172a;
  margin-top: .8rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(40% 40% at 80% 10%, rgba(0, 104, 255, .10), transparent 60%), radial-gradient(30% 30% at 10% 80%, rgba(255, 161, 197, .18), transparent 60%);
  pointer-events: none;
}

.eyebrow {
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.2rem 0 1.6rem;
}

.badge {
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid var(--border);
  padding: .45rem .7rem;
  border-radius: 999px;
  font-size: .86rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 12px;
  gap: .8rem;
}

.metric .row {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.metric-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 104, 255, .08);
  color: var(--brand);
  border: 1px solid #dbeafe;
}

.metric-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: 12px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, rgba(0, 104, 255, .06), rgba(255, 161, 197, .10));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cta p {
  margin: 0;
  color: #0f172a;
}

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  color: #374151;
  padding: 2rem 0 4rem;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: space-between;
  align-items: center;
}

/* Blog / Kennisbank */
.posts {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .12s ease, border-color .2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.post-body {
  padding: 1.2rem;
}

.post-meta {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: .4rem;
}

.read {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  margin-top: .6rem;
  color: var(--brand);
}

/* Article Typography */
.prose {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
  color: var(--text);
}

.prose h1,
.prose h2,
.prose h3 {
  line-height: 1.2;
  margin: 1.6rem 0 .6rem;
}

.prose h1 {
  font-size: 2rem;
}

.prose h2 {
  font-size: 1.5rem;
}

.prose h3 {
  font-size: 1.2rem;
}

.prose p {
  margin: .9rem 0;
  color: #1f2937;
}

.prose a {
  color: var(--brand);
  text-decoration: underline;
}

.prose blockquote {
  border-left: 4px solid var(--brand);
  padding: .4rem .9rem;
  margin: 1rem 0;
  background: #f8fafc;
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: .1rem .35rem;
}

.prose pre {
  background: #0b1220;
  color: #e5e7eb;
  padding: 1rem;
  border-radius: 12px;
  overflow: auto;
  border: 1px solid #111827;
}

.prose img {
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin: .35rem 0;
}

.meta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: .8rem;
}

.breadcrumb {
  font-size: .9rem;
  margin-bottom: .8rem;
}

.breadcrumb a {
  color: var(--brand);
}

.article-hero {
  padding: 3rem 0 1rem;
  background: linear-gradient(135deg, rgba(0, 104, 255, .06), rgba(255, 161, 197, .10));
  border-bottom: 1px solid var(--border);
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.article-nav a {
  color: var(--brand);
}

/* Utilities */
.hr {
  height: 1px;
  background: var(--border);
  margin: 1.2rem 0;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .posts {
    grid-template-columns: 1fr;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  /* zorgt voor verticale uitlijning */
  gap: .5rem;
  /* ruimte tussen logo en tekst */
  text-decoration: none;
}

.site-logo {
  height: 40px;
  /* pas aan naar wens */
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: #0068ff;
  /* of #ffa1c5 voor de roze tint */
  line-height: 1;
  /* voorkomt dat tekst optisch lager lijkt */
  display: flex;
  align-items: center;
}

/* Contactformulier container */
form.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Labels en inputs netjes onder elkaar */
form.card label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

/* Inputs en textarea uniform */
form.card input,
form.card textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 0.4rem;
  background: #fff;
}

/* Focus state */
form.card input:focus,
form.card textarea:focus {
  outline: none;
  border-color: #0068ff;
  box-shadow: 0 0 0 3px rgba(0, 104, 255, 0.15);
}

/* Verstuur-knop */
form.card button.btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #0068ff, #004fc2);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

form.card button.btn:hover {
  background: linear-gradient(135deg, #005de0, #0040a0);
  transform: translateY(-1px);
}

.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wpcf7 form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 0.4rem;
  background: #fff;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #0068ff;
  box-shadow: 0 0 0 3px rgba(0, 104, 255, 0.15);
}

.wpcf7 input[type="submit"] {
  align-self: flex-start;
  background: linear-gradient(135deg, #0068ff, #004fc2);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-1px);
}

.menu,
.menu li {
  list-style: none !important;
  /* verwijdert de stipjes */
  margin: 0;
  padding: 0;
}

.menu li {
  display: inline-block;
  /* naast elkaar */
  margin: 0 0.8rem;
  /* ruimte tussen items */
}

.menu li a {
  text-decoration: none;
  color: #444;
  /* standaard kleur */
  font-weight: 600;
}

.menu li a:hover {
  color: #0068ff;
  /* hoverkleur */
}

/* Kennisbank – grote kaarten */
.kb-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
}

.kb-card {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 1rem;
}

.kb-thumb {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.kb-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.kb-thumb--placeholder {
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(135deg, rgba(0, 104, 255, .15), rgba(255, 161, 197, .22));
}

.kb-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffa1c5;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 104, 255, .25);
}

.kb-body {
  padding-left: .2rem;
}

.kb-title {
  margin: .2rem 0 .2rem;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.kb-title a {
  color: #0f172a;
  text-decoration: none;
}

.kb-title a:hover {
  color: #0068ff;
}

.kb-meta {
  color: #6b7280;
  margin: .3rem 0 1rem;
  font-size: .98rem;
}

.kb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transition: transform .12s, box-shadow .2s, background .2s;
}

.kb-btn:hover {
  transform: translateY(-1px);
  background: #0b0b0b;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.kb-pagination {
  margin-top: 1rem;
}

.kb-pagination a,
.kb-pagination span {
  display: inline-block;
  padding: .5rem .8rem;
  margin: .1rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #111827;
}

.kb-pagination .current {
  background: #0068ff;
  color: #fff;
  border-color: #0068ff;
}

@media (max-width: 700px) {
  .kb-card {
    grid-template-columns: 1fr;
  }
  .kb-body {
    padding-left: 0;
  }
}

/* Lees meer knop stijl */
.more-link,
.kb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  background: #0068ff;
  /* Cavium blauw */
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
  box-shadow: 0 6px 18px rgba(0, 104, 255, .25);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.more-link:hover,
.kb-btn:hover {
  background: #0051cc;
  /* donkerder blauw */
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 104, 255, .35);
}

.more-link:active,
.kb-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 104, 255, .2);
}

/* Blog overzicht in 2 kolommen */
.blog .site-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog .site-main article {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  padding: 0 0 1.5rem;
}

.blog .site-main article img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog .site-main .more-link {
  margin-left: 1.5rem;
}

/* --- Kennisbank in 2 kolommen (bestaande classes) --- */
.kb-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

/* Kaart */
.kb-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.kb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .10);
}

/* Thumbnail + badge */
.kb-thumb {
  position: relative;
  display: block;
}

.kb-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.kb-thumb--placeholder {
  height: 220px;
  background: #f3f4f6;
}

.kb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffa1c5;
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

/* Tekstblok en typografie */
.kb-body {
  padding: 1rem 1.2rem 1.4rem;
}

.kb-title {
  font-size: 1.1rem;
  margin: .5rem 0;
}

.kb-title a {
  color: #0f172a;
  text-decoration: none;
}

.kb-title a:hover {
  text-decoration: underline;
}

.kb-meta {
  color: #667085;
  font-size: .9rem;
}

/* Knop */
.kb-btn {
  display: inline-block;
  margin-top: .8rem;
  background: #0068ff;
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}

.kb-btn:hover {
  background: #0056d6;
}

/* Mobiel 1 kolom */
@media (max-width: 640px) {
  .kb-list {
    grid-template-columns: 1fr;
  }
}

/* Alleen op de Kennisbank-pagina */
body.page-kennisbank h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 .4rem;
  color: #0f172a;
  font-weight: 800;
}

body.page-kennisbank .kicker {
  display: block;
  /* forceer zichtbaar */
  color: #667085;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: .5rem 0 1.6rem;
  max-width: 68ch;
  /* prettige leesbreedte */
}

/* Als iets 'm nog overschrijft, zet tijdelijk !important erachter: 
   display, color, margin en font-size */
body.page-kennisbank .kicker {
  display: block !important;
  color: #667085 !important;
  margin: .5rem 0 1.6rem !important;
  font-size: 1.05rem !important;
}

body.page-kennisbank .kicker {
  margin-top: 1rem !important;
}

/* Forceer de intro-paragraaf direct onder H1 op de Kennisbank */
section .container > h1 + p.kicker {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  color: #667085 !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  margin: .5rem 0 1.6rem !important;
  max-width: 68ch;
}

/* Als je container per ongeluk flex is en margins “wegvallen”: */
.page-kennisbank section .container {
  display: block;
  /* weghalen als dit andere layout breekt */
}

/* Kennisbank-introtekst, los van theme-conflicten */
.kb-intro {
  display: block;
  color: #667085;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: .5rem 0 1.6rem;
  max-width: 68ch;
}

/* === EÉN bron van spacing: de gap van het formulier === */
form.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* bepaal hier de afstand tussen velden */
}

/* labels bevatten de input/textarea: zelf geen extra margins */
form.card label {
  display: block;
  margin: 0;
  /* reset */
  font-weight: 600;
  font-size: .95rem;
  color: #111;
  line-height: 1.3;
}

/* interne spacing in elk veld: alleen een kleine marge boven het form-control */
form.card label > input,
form.card label > textarea,
form.card label > select {
  margin-top: 8px;
  /* overal hetzelfde */
}

/* geen extra bottom-marges op controls (laat gap het werk doen) */
form.card input,
form.card textarea,
form.card select {
  margin-bottom: 0;
}

/* grotere velden (textarea) krijgen GEEN extra buitenmarge */
form.card textarea {
  min-height: 140px;
  /* optioneel: vaste hoogte */
}

/* Contact Form 7 varianten (als je CF7 gebruikt) */
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpcf7 form p {
  /* CF7 zet velden vaak in <p> */
  margin: 0;
  /* reset */
}

.wpcf7 label {
  display: block;
  margin: 0;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  margin-top: 8px;
  margin-bottom: 0;
}

.audit .hl-alt {
  color: var(--accent);
}

/* === Verbeterde en consistente spacing in auditformulier === */
.audit .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  /* Consistente ruimte tussen elk veldblok */
}

/* Label + veld spacing */
.audit .wpcf7 label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Inputvelden */
.audit .wpcf7 input,
.audit .wpcf7 textarea,
.audit .wpcf7 select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  transition: border-color .15s, box-shadow .15s;
}

/* Focus state */
.audit .wpcf7 input:focus,
.audit .wpcf7 textarea:focus {
  outline: none;
  border-color: #0068ff;
  box-shadow: 0 0 0 3px rgba(0, 104, 255, 0.15);
}

/* Submit-knop */
.audit .wpcf7 input[type="submit"] {
  align-self: flex-start;
  background: linear-gradient(135deg, #0068ff, #004fc2);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 0.3rem;
}

/* Hover-knop */
.audit .wpcf7 input[type="submit"]:hover {
  background: linear-gradient(135deg, #005de0, #0040a0);
  transform: translateY(-1px);
}

/* Ruimte tussen velden consistent houden, zelfs zonder labels */
.audit .wpcf7 form p {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* 1. Verwijder onderlijning bij de titel */
.kb-title a {
  text-decoration: none !important;
}

/* 2. Zorg dat de titel bij hover ook geen lijn krijgt */
.kb-title a:hover {
  text-decoration: none !important;
  color: none;
  /* behoud eventueel de hoverkleur */
}

/* 3. Verwijder lijn/onderstreping bij de 'Lees meer'-knop */
.kb-btn,
.kb-btn:hover,
.kb-btn:focus {
  text-decoration: none !important;
}

/* Kaarten: verdeel verticaal, tekst vult de ruimte */
.grid.cols-3 .card {
  display: flex;
  flex-direction: column;
}

.grid.cols-3 .card p {
  flex: 1 1 auto;
}

/* Pill onderaan, maar op eigen (inhouds)breedte blijven */
.grid.cols-3 .card .pill {
  margin-top: auto;
  /* duwt 'm naar onder */
  display: inline-flex !important;
  /* geen block/stretch */
  align-self: flex-start;
  /* niet meerekken met container */
  width: auto !important;
  /* voorkom 100% breedte */
  max-width: max-content;
  /* size-to-content */
  white-space: nowrap;
  /* optioneel: niet afbreken */
}

/* Als je meerdere pills gebruikt in een rij */
.grid.cols-3 .card .pill + .pill {
  margin-left: .5rem;
}

/* Tekstvak niet meer resizable */
form.card textarea,
.wpcf7 textarea {
  resize: none;
  /* geen sleep-handvat */
}

/* Zorgt dat alle kaarten even hoog zijn */
.kb-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Kaarten vullen netjes de beschikbare hoogte */
.kb-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.kb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .10);
}

/* Binnenste inhoud */
.kb-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* duwt knop naar beneden */
  flex-grow: 1;
  padding: 1rem 1.2rem 1.4rem;
}

/* Tekstgedeelte boven */
.kb-meta,
.kb-title {
  margin-bottom: 0.8rem;
}

/* Knop blijft klein en op 1 lijn */
.kb-btn {
  align-self: flex-start;
  margin-top: auto;
  /* blijft altijd onderaan */
}

/* Responsief */
@media (max-width: 768px) {
  .kb-list {
    grid-template-columns: 1fr;
  }
}

form.card input,
form.card textarea,
.wpcf7 input,
.wpcf7 textarea {
  font-family: inherit;
  /* zelfde lettertype als rest van de site */
  font-size: 1rem;
  color: #111;
}

/* === Contactpagina responsive layout === */
@media (max-width: 768px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .contact-grid > * {
    width: 100%;
  }
  /* Formulier en zijblok vullen schermbreedte */
  form.card,
  .contact-sidebar {
    width: 100%;
  }
}

/* Desktop */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}

/* Mobiel */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

/* Dienstenkaarten: tekst flexibel, pillen blijven klein en onderaan */
.grid.cols-3 .card {
  display: flex;
  flex-direction: column;
}

.grid.cols-3 .card p {
  flex: 1 1 auto;
}

.grid.cols-3 .card .pill {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
  white-space: nowrap;
}

.diensten-alt .diensten-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.diensten-alt .dienst {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.diensten-alt .dienst:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.dienst-icon {
  color: var(--brand-color);
  font-size: 1.8rem;
  margin-bottom: .8rem;
}

.dienst .intro {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.dienst ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.dienst ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: .4rem;
  color: #333;
}

.dienst ul li::before {
  content: "•";
  color: var(--brand-color);
  position: absolute;
  left: 0;
}

.dienst .pill {
  display: inline-block;
  background: #f7f7f8;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  margin: .2rem .3rem .2rem 0;
}

.dienst-icon {
  color: var(--brand-color);
  font-size: 1.6rem;
  margin-bottom: .6rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.card ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: .4rem;
}

.card ul li::before {
  content: "•";
  color: var(--brand-color);
  position: absolute;
  left: 0;
}

/* 1. Icons in Cavium-blauw */
.dienst-icon i {
  color: #0056ff;
  /* vervang met jouw exacte merkblauw */
  font-size: 1.6rem;
  margin-bottom: .6rem;
  display: inline-block;
}

/* 2. Verwijder harde lijnen tussen sections */
.hr {
  display: none;
}

/* 3. Maak "Wat je van mij krijgt" onderdeel van flow */
#diensten h2 + .kicker + ul {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f9faff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#diensten h2 + .kicker + ul li::before {
  color: #0056ff;
}

#diensten h2 + .kicker + ul li {
  margin-bottom: .3rem;
}
/* Cavium – Diensten (unieke classes, geen botsingen) */
#diensten{
  --blue:#0068ff; --pink:#ffa1c5;
  --muted:#667085; --border:#e5e7eb;
  --radius:18px; --shadow:0 12px 32px rgba(0,0,0,.07);
}

/* grid blijft zoals je had */
#diensten .grid.cols-3{
  display:grid; gap:1rem;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
@media (max-width:980px){ #diensten .grid.cols-3{ grid-template-columns:1fr; } }

/* kaarten – NIET .card maar .svc-card */
#diensten .svc-card{
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius); box-shadow:var(--shadow);
  padding:1.2rem 1.2rem 1rem;
}
#diensten .svc-card h2{ margin:.1rem 0 .4rem; font-size:clamp(1.2rem,2.2vw,1.6rem); }
#diensten .svc-card p{ color:var(--muted); }

/* bulletlijstjes */
#diensten .svc-card ul{ list-style:none; padding:0; margin:0 0 .6rem; display:grid; gap:.45rem; }
#diensten .svc-card ul li{
  position:relative; padding-left:1.05rem; color:#1f2937;
}
#diensten .svc-card ul li::before{
  content:""; position:absolute; left:0; top:.55em;
  width:.5rem; height:.5rem; border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--pink));
}

/* pillen – NIET .pill maar .svc-pill */
#diensten .svc-pill{
  display:inline-block; background:#f6f7f9; border:1px dashed #d7dbe0;
  color:#0f172a; padding:.38rem .7rem; border-radius:999px; font-size:.78rem;
  margin:.35rem .35rem 0 0;
}

/* stappen – NIET .steps/.step maar .svc-steps/.svc-step */
#diensten .svc-steps{
  display:grid; gap:1rem;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:1.6rem;
}
@media (max-width:980px){ #diensten .svc-steps{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:600px){ #diensten .svc-steps{ grid-template-columns:1fr; } }

#diensten .svc-step{
  position:relative; background:#fff; border:1px solid var(--border);
  border-radius:16px; padding:1rem .9rem; box-shadow:var(--shadow);
  min-height:120px;
}
#diensten .svc-step .kicker{ margin:.6rem 0 0; color:var(--muted); }
#diensten .svc-step::before{
  content:""; position:absolute; top:-12px; left:-12px;
  width:34px; height:34px; border-radius:10px;
  background:linear-gradient(135deg,var(--blue),var(--pink));
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* icons in je diensten had je al; kleur zo nodig: */
#diensten .dienst-icon i{ color:var(--blue); font-size:1.6rem; margin-bottom:.6rem; }
