/* =============================================
   MPS Projecten — style.css v5 (modern & speels)
   ============================================= */
 
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,900;1,9..40,900&display=swap');
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --red:        #c0171a;
  --red-hover:  #a01215;
  --red-bg:     #fff0f0;
  --red-border: #f5c4c4;
  --dark:       #111111;
  --dark-2:     #1a1a1a;
  --dark-3:     #222222;
  --gray:       #f5f3ef;
  --white:      #ffffff;
  --text:       #111111;
  --muted:      #666666;
  --dim:        #aaaaaa;
  --border:     rgba(0,0,0,.08);
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       20px;
  --r-pill:     100px;
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray);
  color: var(--text);
  /* overflow-x: hidden verwijderd — veroorzaakte afknippen van letters */
}

/* Horizontaal scrollen voorkomen op wrapper-niveau i.p.v. body */
.nav-wrapper,
.dn-hero,
.dienst,
.section,
.cta-section,
.footer {
  overflow-x: clip;
}
 
img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
 
/* SPLIT TEXT ANIMATIE */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
  padding-left: 0.35em;   /* compenseert negatieve letter-spacing clip */
  margin-left: -0.35em;
}
.word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.word.visible .word-inner {
  transform: translateY(0);
}
 
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 80%; max-width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 500;
  padding: 5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 4px 0 40px rgba(0,0,0,.12);
}
.mobile-menu.open { transform: translateX(0); }
 
.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gray);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: background .2s;
}
.mobile-close:hover { background: var(--red-bg); color: var(--red); }
 
.mobile-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  padding: 1rem 0;
  border-bottom: none;
  transition: color .2s, padding-left .2s;
}
.mobile-link:hover { color: var(--red); padding-left: 8px; }
 
.mobile-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background .2s;
}
.mobile-cta:hover { background: var(--red-hover); }
 
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(3px);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
 
/* CONTAINER */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
 
/* SCROLL REVEAL ANIMATIONS */
.reveal, .reveal-up, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right { transform: translateX(40px); }
.revealed {
  opacity: 1;
  transform: translate(0, 0);
}
 
/* LIVE DOT */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}
.live-dot-white { background: rgba(255,255,255,.8); }
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .7; }
}
 
/* =============================================
   NAV
   ============================================= */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gray);
  border-bottom: 1px solid var(--border);
}
 
.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
 
/* ZWARTE TOPBALK */
.nav-topbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
 
.nav-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
 
.nav-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
 
.nav-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
 
.nav-topbar-right a {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
 
.nav-topbar-right a:hover { color: var(--red); }
.nav-topbar-left a:hover  { color: var(--red); }
 
.nav-logo { text-decoration: none; }
 
.nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}
 
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
 
.nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--dim);
  text-decoration: none;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
 
.nav-link:hover { color: var(--red); }
 
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .3s ease;
}
 
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--red); font-weight: 700; }
.nav-link.active::after { width: 100%; }
 
.nav-spacer { flex: 1; }
 
/* RODE CTA KNOP */
.nav-cta {
  background: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
 
.nav-cta:hover { background: var(--red-hover); transform: translateY(-1px); }
.nav-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
 
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-right: 1rem;
}
 
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
 
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
 
/* HERO */
.hero { background: var(--white); padding: 4.5rem 0 0; border-bottom: 1px solid var(--border); }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 3rem; align-items: center; padding-bottom: 0;
}
.hero-left { padding-bottom: 4.5rem; }
 
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
}
.badge-dark    { background: var(--dark); color: #fff; }
.badge-red     { background: var(--red); color: #fff; }
.badge-outline { background: transparent; border: 2px solid var(--dark); color: var(--dark); }
 
.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: .97;
  letter-spacing: -.04em; color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero-h1 em { font-style: italic; color: var(--red); }
 
.hero-sub {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  max-width: 420px; margin-bottom: 1.75rem;
}
 
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn-dark {
  background: var(--dark); color: #fff;
  padding: 12px 26px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700;
  transition: background .2s, transform .15s; display: inline-block;
}
.btn-dark:hover  { background: var(--red); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--dark);
  padding: 12px 26px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700;
  border: 2px solid rgba(0,0,0,.15); display: inline-block;
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: var(--dark); }
 
.hero-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tag {
  background: var(--gray); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 5px 13px;
  font-size: 11px; font-weight: 500; color: var(--muted);
}
.tag-red { background: var(--red-bg); border-color: var(--red-border); color: var(--red); }
 
/* HERO FOTO */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding: 0 1rem;
}
 
.hero-foto-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: transparent;
  border: none;
  box-shadow: none;
}
 
.hero-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
 
/* STICKERS */
.sticker {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border: 1.5px solid var(--border);
  z-index: 10;
}
.sticker-a { top: -20px; right: 10px; animation: float-a 4s ease-in-out infinite; }
.sticker-b { top: 40px;  left: -10px; animation: float-b 5s ease-in-out infinite; }
@keyframes float-a { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(1deg)} }
@keyframes float-b { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-6px) rotate(-2deg)} }
.st-lbl { font-size: 9px; color: var(--dim); margin-bottom: 2px; }
.st-val { font-size: 15px; font-weight: 900; color: var(--dark); }
.st-val span { color: var(--red); }
 
/* SECTIONS */
.section       { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.section-white { background: var(--white); }
.section-gray  { background: var(--gray); }
.section-red   { background: var(--red); }
.section-dark  { background: var(--dark-2); }
 
.eyebrow {
  font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: .5rem; display: block;
}
.eyebrow-light { color: rgba(255,255,255,.5); }
.eyebrow-red   { color: var(--red); }
 
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900; color: var(--dark);
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 2.5rem;
}
.section-title-light { color: #fff; }
.section-sub {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  max-width: 560px; margin-bottom: 3rem;
}
 
/* DIENSTEN */
.diensten-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.dcard {
  border-radius: var(--r-lg); padding: 2rem;
  transition: transform .25s, box-shadow .25s; cursor: default;
}
.dcard:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.dcard-red   { background: var(--red); }
.dcard-dark  { background: var(--dark-2); }
.dcard-light { background: var(--white); border: 1.5px solid var(--border); }
 
.dcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.dico {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.dcard-red .dico  { background: rgba(255,255,255,.15); }
.dcard-dark .dico { background: rgba(255,255,255,.1); }
.dico-light       { background: var(--red-bg); }
.dico svg { width: 22px; height: 22px; }
 
.dnum { font-size: 2.4rem; font-weight: 900; letter-spacing: -.06em; line-height: 1; }
.dcard-red .dnum,.dcard-dark .dnum { color: rgba(255,255,255,.1); }
.dnum-light { color: rgba(0,0,0,.06); }
 
.dcard h3 { font-size: 17px; font-weight: 700; margin-bottom: .5rem; }
.dcard-red h3,.dcard-dark h3 { color: #fff; }
.dcard-light h3 { color: var(--dark); }
 
.dcard p { font-size: 13px; line-height: 1.65; }
.dcard-red p,.dcard-dark p { color: rgba(255,255,255,.6); }
.dcard-light p { color: var(--muted); }
 
.dcard-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 1.25rem; font-size: 12px; font-weight: 700; transition: gap .2s; }
.dcard-link:hover { gap: 9px; }
.dcard-red .dcard-link,.dcard-dark .dcard-link { color: rgba(255,255,255,.7); }
.dcard-link-red { color: var(--red); }
 
/* WERKWIJZE */
.werkwijze-steps { display: flex; flex-direction: column; gap: 0; }
.wstep {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: 2rem; align-items: flex-start; padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.wstep:last-child { border-bottom: none; }
 
.wstep-left { display: flex; flex-direction: column; align-items: center; padding-top: .25rem; }
.wstep-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dark); color: #fff;
  font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: -.02em;
}
.wstep-line { width: 2px; flex: 1; min-height: 40px; background: var(--border); margin-top: 8px; }
 
.wstep-content h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.wstep-content p  { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.wstep-tag {
  display: inline-block; background: var(--red-bg);
  border: 1px solid var(--red-border); color: var(--red);
  border-radius: var(--r-pill); padding: 4px 13px; font-size: 11px; font-weight: 700;
}
 
/* werkwijze visuals */
.wstep-visual { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.wv-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: .8rem 1rem; }
.wv-red { background: var(--red-bg); border-color: var(--red-border); }
.wv-label { font-size: 10px; color: var(--dim); margin-bottom: 3px; }
.wv-red .wv-label { color: var(--red); opacity: .7; }
.wv-val { font-size: 13px; font-weight: 700; color: var(--dark); }
.wv-red .wv-val { color: var(--red); }
 
.wv-wireframe {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: .75rem; display: flex; flex-direction: column; gap: 6px;
}
.wv-wf-nav  { height: 10px; background: #eee; border-radius: 4px; }
.wv-wf-hero { height: 40px; background: #f0ede8; border-radius: 6px; }
.wv-wf-cols { display: flex; gap: 5px; }
.wv-wf-col  { flex: 1; height: 30px; background: #eee; border-radius: 4px; }
 
.wv-code {
  background: var(--dark-3); border-radius: var(--r-md);
  padding: .9rem 1rem; font-family: monospace; font-size: 11px;
  display: flex; flex-direction: column; gap: 4px;
}
.wv-line   { color: #aaa; }
.wv-indent { padding-left: 1rem; }
.wv-tag    { color: #ef4444; }
.wv-attr   { color: #60a5fa; }
.wv-str    { color: #34d399; }
.wv-txt    { color: #fbbf24; }
 
.wv-live {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid #22c55e;
  border-radius: var(--r-md); padding: .7rem 1rem;
}
.wv-live-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: pulse-dot 2s infinite; }
.wv-live-txt { font-size: 12px; font-weight: 700; color: var(--dark); }
.wv-stats    { display: flex; gap: 8px; }
.wv-stat {
  flex: 1; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: .7rem 1rem; text-align: center;
}
.wv-stat-num { font-size: 14px; font-weight: 900; color: var(--red); }
.wv-stat-lbl { font-size: 10px; color: var(--dim); margin-top: 2px; }
 
/* VOOR WIE */
.forw-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.fcard {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg); padding: 1.5rem;
  transition: background .2s, transform .2s;
}
.fcard:hover { background: rgba(255,255,255,.2); transform: translateY(-4px); }
.fnum { font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,.15); line-height: 1; margin-bottom: .4rem; letter-spacing: -.04em; }
.fcard h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .35rem; }
.fcard p  { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }
 
/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-left .eyebrow-red { margin-bottom: .75rem; }
.about-h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  letter-spacing: -.03em; margin-bottom: 1.25rem;
}
.about-h2 em { font-style: italic; color: var(--red); }
.about-p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 1.5rem; }
 
.chklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.ci { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.65); }
.cdot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cdot svg { width: 10px; height: 10px; }
 
.btn-red-outline {
  display: inline-block; background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.25); padding: 11px 24px;
  border-radius: var(--r-pill); font-size: 13px; font-weight: 700;
  transition: border-color .2s, background .2s;
}
.btn-red-outline:hover { border-color: var(--red); background: var(--red); }
 
.about-right { display: flex; flex-direction: column; gap: 12px; }
.astat { border-radius: var(--r-lg); padding: 1.5rem; }
.astat-red  { background: var(--red); }
.astat-mid  { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.astat-num  { font-size: 2.8rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; color: #fff; }
.astat-lbl  { font-size: 12px; margin-top: 4px; }
.astat-red .astat-lbl { color: rgba(255,255,255,.65); }
.astat-mid .astat-lbl { color: rgba(255,255,255,.4); }
 
/* CTA */
.cta-section { background: var(--gray); padding: 6rem 0; border-top: 1px solid var(--border); }
.cta-inner   { text-align: center; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: rgba(255,255,255,.75);
  border-radius: var(--r-pill); padding: 6px 16px;
  font-size: 12px; font-weight: 500; margin-bottom: 1.5rem;
}
.cta-h2 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: var(--dark); letter-spacing: -.04em; line-height: 1.05; margin-bottom: .75rem;
}
.cta-h2 em { font-style: italic; color: var(--red); }
.cta-sub  { font-size: 15px; color: var(--muted); margin-bottom: 2rem; }
.btn-cta {
  display: inline-block; background: var(--red); color: #fff;
  padding: 14px 34px; border-radius: var(--r-pill); font-size: 14px; font-weight: 700;
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: var(--red-hover); transform: translateY(-3px); }
 
/* FOOTER */
.footer { background: var(--dark); padding: 1rem 0; }
 
.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
}
 
.footer-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: .85;
}
 
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); margin: 0; }
 
.footer-links { display: flex; gap: 1.5rem; margin-left: auto; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: #fff; }
 
/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 0; }
  .hero-left  { padding-bottom: 2.5rem; }
  .hero-right { display: flex; padding: 0; margin: 0 -2rem; }
  .hero-foto-wrap { border-radius: 0; aspect-ratio: 16 / 10; box-shadow: none; }
  .sticker    { display: none; }
  .diensten-grid { grid-template-columns: 1fr; }
  .forw-grid  { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wstep      { grid-template-columns: 60px 1fr; }
  .wstep-visual { display: none; }
  /* NAV mobiel */
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .nav-topbar-right { display: none; }
  .nav-topbar-inner { justify-content: center; }
  .nav-topbar-left  { justify-content: center; }
  .nav { justify-content: center; }
  .hamburger { position: absolute; left: 1rem; }
}
 
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; min-height: auto; gap: 1rem; text-align: center; }
  .footer-logo  { position: static; transform: none; height: 65px; }
  .footer-links { margin-left: 0; }
}
 
@media (max-width: 600px) {
  .hero-h1   { font-size: 2.6rem; }
  .forw-grid { grid-template-columns: 1fr; }
}
/* PROBLEMEN — fcard op grijze achtergrond */
#problemen .fcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}

#problemen .fcard:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(192,23,26,.2);
}

#problemen .fnum {
  color: rgba(0,0,0,.06);
}

#problemen .fcard h4 {
  color: var(--dark);
  transition: color .2s;
}

#problemen .fcard p {
  color: var(--muted);
  transition: color .2s;
}

#problemen .fcard:hover .fnum {
  color: rgba(255,255,255,.1);
}

#problemen .fcard:hover h4 {
  color: #fff;
}

#problemen .fcard:hover p {
  color: rgba(255,255,255,.65);
}
.dcard-beige {
  background: #e8e4de;
}

.dcard-beige h3 { color: var(--dark); }
.dcard-beige p  { color: var(--muted); }
.dcard-beige .dcard-link { color: var(--red); }
.dcard-beige .dcard-link:hover { color: var(--red-hover); }
.dcard-beige .dico { background: #cec8be; }
.dcard-beige .dnum { color: rgba(0,0,0,.06); }