/*
Theme Name: PRFORM
Theme URI: http://prform.nl
Author: PRFORM
Author URI: http://prform.nl
Description: Maatwerkthema voor PRFORM. Strakke one-page opzet in de huisstijlkleuren (diepblauw, karmijnrood, groen accent). Reageert op WPForms en toont bestaande media.
Version: 1.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prform
*/

/* ============================================================
   Design tokens — afgeleid van het PRFORM-logo
   ============================================================ */
:root {
  --blue:       #0C1C93;
  --blue-deep:  #0A1670;   /* donkerder voor diepte in hero/footer */
  --blue-ink:   #070F4D;   /* bijna-zwart blauw voor footer */
  --red:        #BA0C3D;
  --red-bright: #D81549;   /* hover-accent */
  --green:      #079318;
  --surface:    #F5F6FA;   /* koele lichte tint i.p.v. fel wit */
  --surface-2:  #FFFFFF;
  --line:       #E3E6F0;
  --text:       #16193A;
  --text-soft:  #4A4E6E;
  --text-mute:  #6B6F8C;
  --on-dark:    #EEF0FB;
  --on-dark-mute:#B9BEE4;

  --maxw: 1160px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -24px rgba(12, 28, 147, 0.28);
  --shadow-soft: 0 10px 30px -18px rgba(12, 28, 147, 0.22);

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}


/* ============================================================
   Reset & basis
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-bright); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--green);
  display: inline-block;
  transform: skewX(-20deg);
}

/* ============================================================
   Knoppen
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  line-height: 1;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-bright); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 246, 250, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.brand img { height: 34px; width: auto; }
.brand { display: inline-flex; align-items: center; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .96rem;
  color: var(--text);
  position: relative;
  padding: .3rem 0;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--red);
  transition: width .22s ease;
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { width: 100%; }
.nav .btn { color: #fff; }
.nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2.5px; width: 24px; background: var(--blue); border-radius: 2px; transition: .25s; }

/* ============================================================
   Hero — het donkerblauwe fundament
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 85% 0%, var(--blue) 0%, var(--blue-deep) 45%, var(--blue-ink) 100%);
  color: var(--on-dark);
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4.5rem, 9vw, 8rem);
}
.hero::before {
  /* schuin groen/rood accent, verwijst naar het logo-streepje */
  content: "";
  position: absolute;
  top: 0; right: -8%;
  width: 46%; height: 100%;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(7,147,24,.16) 46% 50%, transparent 50%),
    linear-gradient(115deg, transparent 0 54%, rgba(186,12,61,.20) 54% 60%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 15% 90%, rgba(186,12,61,.18), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--green); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 .accent { color: #fff; position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em;
  height: .14em; background: var(--red); transform: skewX(-12deg); opacity: .95;
}
.hero-lead { font-size: 1.15rem; color: var(--on-dark-mute); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }

/* keyword-kaartje rechts */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(6px);
}
.hero-card h2 { color: #fff; font-size: 1.05rem; letter-spacing: .02em; margin-bottom: 1.3rem; }
.pillars { display: grid; gap: 1rem; }
.pillar { display: flex; gap: .9rem; align-items: flex-start; }
.pillar .dot {
  flex: 0 0 auto; width: 12px; height: 12px; margin-top: .45rem;
  transform: skewX(-18deg);
}
.pillar:nth-child(1) .dot { background: var(--blue); box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.pillar:nth-child(2) .dot { background: var(--red); box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.pillar:nth-child(3) .dot { background: var(--green); box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.pillar strong { color: #fff; display: block; font-family: var(--font-display); font-weight: 600; }
.pillar span.desc { color: var(--on-dark-mute); font-size: .95rem; }

/* ============================================================
   Sectie-basis
   ============================================================ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--blue); }
.section-head p { color: var(--text-soft); font-size: 1.1rem; }

/* ============================================================
   Diensten
   ============================================================ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem 2rem;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 5px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.service:nth-child(1)::before { background: var(--blue); }
.service:nth-child(2)::before { background: var(--red); }
.service:nth-child(3)::before { background: var(--green); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  color: var(--text-mute); margin-bottom: 1.2rem;
}
.service h3 { font-size: 1.35rem; color: var(--blue); margin-bottom: .7rem; }
.service p { color: var(--text-soft); font-size: 1rem; flex: 1; }
.service .more {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--red); display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem;
}
.service .more .arrow { transition: transform .18s ease; }
.service:hover .more .arrow { transform: translateX(4px); }

/* ============================================================
   Over / intro-band
   ============================================================ */
.about {
  background:
    linear-gradient(180deg, var(--surface) 0%, #EEF0F8 100%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-copy h2 { color: var(--blue); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.about-copy p { color: var(--text-soft); font-size: 1.08rem; }
.about-signature {
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 20% 10%, var(--blue) 0%, var(--blue-ink) 100%);
  color: #fff; padding: 2.4rem 2rem; box-shadow: var(--shadow);
}
.about-signature .quote { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.35; color: #fff; margin-bottom: 1.4rem; }
.values { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.values li { display: flex; gap: .75rem; align-items: flex-start; color: var(--on-dark-mute); font-size: 1rem; }
.values li .tick {
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: .25rem;
  border-radius: 4px; background: var(--green);
  display: grid; place-items: center;
}
.values li .tick::after { content: ""; width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px,-1px); }
.values li strong { color: #fff; font-family: var(--font-display); }

/* ============================================================
   Klantlogo-band — donker, breekt het wit
   ============================================================ */
.clients {
  background: var(--blue-ink);
  color: var(--on-dark);
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.clients .kicker {
  font-family: var(--font-display);
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--on-dark-mute); margin-bottom: 2rem;
}
.clients-logos {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 900px; margin-inline: auto;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.clients-logos img { margin-inline: auto; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info h2 { color: var(--blue); font-size: clamp(1.8rem,3.4vw,2.6rem); }
.contact-info p { color: var(--text-soft); font-size: 1.08rem; }
.contact-detail { display: flex; align-items: center; gap: .9rem; margin-top: 1.4rem; font-family: var(--font-display); }
.contact-detail .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--blue); display: grid; place-items: center; flex: 0 0 auto; }
.contact-detail .ico svg { width: 20px; height: 20px; fill: #fff; }
.contact-detail a, .contact-detail span { color: var(--text); font-weight: 500; }
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}

/* WPForms opmaak zodat het formulier in stijl meebeweegt */
.contact-card .wpforms-field-label { font-family: var(--font-display); font-weight: 600; color: var(--blue); font-size: .95rem; }
.contact-card input[type=text],
.contact-card input[type=email],
.contact-card input[type=tel],
.contact-card input[type=url],
.contact-card textarea,
.contact-card select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12,28,147,.12);
}
.contact-card .wpforms-submit,
.contact-card button[type=submit] {
  background: var(--red); color: #fff; border: 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .9rem 1.8rem; border-radius: 999px; cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.contact-card .wpforms-submit:hover,
.contact-card button[type=submit]:hover { background: var(--red-bright); transform: translateY(-2px); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--blue-ink);
  color: var(--on-dark-mute);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 30px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: var(--on-dark-mute); max-width: 34ch; font-size: .98rem; }
.site-footer h4 { font-family: var(--font-display); color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-links a { color: var(--on-dark-mute); font-size: .98rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--on-dark-mute); }
.footer-bottom a { color: var(--on-dark-mute); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 480px; }
  .services { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 1rem;
    background: var(--surface); padding: 1.5rem var(--gutter);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft);
  }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  /* voorkom dat lange woorden en teksten van het scherm lopen */
  h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .service-detail-side h2, .intro-lead h2 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  /* knoppen niet breder dan het scherm */
  .btn { width: 100%; justify-content: center; }
  .hero-cta .btn, .service-detail-side .btn { width: auto; }
}

/* toegankelijkheid */
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Intro-sectie
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.intro-lead h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--blue); }
.intro-body p { color: var(--text-soft); font-size: 1.08rem; }
.intro-body p:last-child { margin-bottom: 0; }

/* ============================================================
   Diensten-intro (kort, gecentreerd)
   ============================================================ */
.services-intro { padding-bottom: 0; }

/* ============================================================
   Dienst-detailsecties
   ============================================================ */
.service-detail--blue {
  background: radial-gradient(130% 120% at 90% 0%, var(--blue) 0%, var(--blue-deep) 55%, var(--blue-ink) 100%);
  color: var(--on-dark);
}
.service-detail--blue h2, .service-detail--blue h3 { color: #fff; }
.service-detail--blue .service-detail-intro { color: var(--on-dark); }
.service-detail--blue p { color: var(--on-dark-mute); }
.service-detail--blue strong { color: #fff; }
.service-detail--blue .btn-outline { color: #fff; border-color: rgba(255,255,255,.55); }
.service-detail--blue .btn-outline:hover { background: #fff; color: var(--blue); }

.service-detail--light { background: var(--surface-2); }

.service-detail-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.service-detail-side { position: sticky; top: 100px; }
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .service-detail-side { position: static; }
}
.service-tag {
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); display: inline-block; margin-bottom: 1rem;
}
.service-tag--red { color: var(--red); }
.service-detail-side h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 1rem; }
.service-detail--light .service-detail-side h2 { color: var(--blue); }
.service-detail-intro { font-size: 1.12rem; margin-bottom: 1.8rem; }
.service-detail--light .service-detail-intro { color: var(--text-soft); }
.service-detail-body p { font-size: 1.05rem; line-height: 1.7; }
.service-detail--light .service-detail-body p { color: var(--text-soft); }

.service-list-block { margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.18); }
.service-detail--light .service-list-block { border-top-color: var(--line); }
.service-list-block h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 1.9rem; font-size: 1.02rem; }
.service-detail--blue .check-list li { color: var(--on-dark-mute); }
.service-detail--light .check-list li { color: var(--text-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 10px; height: 10px; transform: skewX(-18deg);
}
.service-detail--blue .check-list li::before { background: var(--green); }
.service-detail--light .check-list li::before { background: var(--red); }

/* mini-kaarten binnen vertrouwenspersoon */
.two-col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 2rem; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.mini-card h3 { color: var(--blue); font-size: 1.15rem; margin-bottom: .6rem; }
.mini-card p { color: var(--text-soft); font-size: 1rem; margin-bottom: 0; }
@media (max-width: 620px) { .two-col-cards { grid-template-columns: 1fr; } }

/* ============================================================
   Werkwijze
   ============================================================ */
.approach { background: linear-gradient(180deg, var(--surface) 0%, #EBEEF7 100%); }
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.approach-card:first-child { grid-column: 1 / -1; }
.approach-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  border-left: 4px solid var(--blue);
}
.approach-card:nth-child(2) { border-left-color: var(--red); }
.approach-card:nth-child(3) { border-left-color: var(--green); }
.approach-card:nth-child(4) { border-left-color: var(--blue); }
.approach-card:nth-child(5) { border-left-color: var(--red); }
.approach-mark {
  display: block;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  color: var(--blue); margin-bottom: .7rem;
}
.approach-card p { color: var(--text-soft); font-size: 1.02rem; margin-bottom: 0; }
@media (max-width: 780px) { .approach-grid { grid-template-columns: 1fr; } .approach-card:first-child { grid-column: auto; } }

/* extra ruimte onder about-signature body */
.about-signature-body { color: var(--on-dark-mute); font-size: 1rem; margin-bottom: 1.6rem; }

/* ============================================================
   Samenwerken
   ============================================================ */
.collab { background: var(--surface-2); }
.collab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.collab-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
}
.collab-card h3 { color: var(--blue); font-size: 1.25rem; margin-bottom: .7rem; }
.collab-card p { color: var(--text-soft); margin-bottom: 0; }
.collab-note { text-align: center; max-width: 60ch; margin: 2.2rem auto 0; color: var(--text-soft); font-size: 1.08rem; }
@media (max-width: 720px) { .collab-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CHES-afsluiter
   ============================================================ */
.ches {
  background: var(--blue-ink);
  color: var(--on-dark);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.ches::before {
  content: ""; position: absolute; top: 0; right: -5%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent 0 60%, rgba(7,147,24,.14) 60% 66%, transparent 66%),
              linear-gradient(115deg, transparent 0 70%, rgba(186,12,61,.16) 70% 76%, transparent 76%);
  pointer-events: none;
}
.ches-grid { position: relative; z-index: 2; max-width: 720px; }
.ches-eyebrow { color: var(--green); }
.ches-eyebrow::before { background: var(--red); }
.ches h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.ches p { color: var(--on-dark-mute); font-size: 1.05rem; }
.ches strong { color: #fff; }
.ches-cta { margin-top: 1.6rem; }

/* ============================================================
   Sectie-scheiding fix: opeenvolgende gekleurde secties
   ============================================================ */
.services-intro + .service-detail { padding-top: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   Inklapbare "Lees meer"-blokken (details/summary)
   ============================================================ */
.reveal { margin-top: 1.4rem; }
.reveal > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  padding: .55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid currentColor;
  transition: background .18s ease, color .18s ease;
  user-select: none;
}
.reveal > summary::-webkit-details-marker { display: none; }
.reveal > summary::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-left: .1rem;
}
.reveal[open] > summary::after { transform: rotate(-135deg); }
.reveal .reveal-less { display: none; }
.reveal[open] .reveal-more { display: none; }
.reveal[open] .reveal-less { display: inline; }
.reveal-content { padding-top: 1.4rem; animation: revealFade .3s ease; }
@keyframes revealFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* kleuraccent per context */
.service-detail--blue .reveal > summary { color: #fff; }
.service-detail--blue .reveal > summary:hover { background: #fff; color: var(--blue); }
.service-detail--light .reveal > summary { color: var(--red); }
.service-detail--light .reveal > summary:hover { background: var(--red); color: #fff; }
.about .reveal > summary { color: var(--blue); }
.about .reveal > summary:hover { background: var(--blue); color: #fff; }

/* details op de vertrouwenspersoon: mini-cards weer wat lucht geven */
#vertrouwenspersoon .two-col-cards { margin-top: 1.6rem; }

/* ============================================================
   Compactere secties — minder scrollen
   ============================================================ */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.service-detail { padding: clamp(3rem, 6vw, 5rem) 0; }

/* werkwijze: kaarten met ingekorte tekst via line-clamp + hover voor rest is te fragiel;
   we houden ze gewoon compact met kleinere tekst en strakke marges */
.approach-card { padding: 1.6rem 1.6rem; }
.approach-card p { font-size: .98rem; line-height: 1.55; }
.approach-mark { font-size: 1.1rem; margin-bottom: .5rem; }
