*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:  #0e2a47;
  --blue:  #1a5fa8;
  --blue2: #3381df;
  --lgrey: #eef2f7;
  --text:  #1c2b3a;
  --white: #ffffff;
  --accent: #3381df;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  border-bottom: 1px solid #e2e8f0;
}
nav .logo img { height: 36px; display: block; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a { color: #334d66; text-decoration: none; font-size: .9rem; font-weight: 500; letter-spacing: .03em; transition: color .2s; }
nav ul a:hover { color: var(--navy); }
.nav-cta { background: var(--accent); color: #fff !important; padding: .4rem 1.1rem; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { opacity: .9; }
.hamburger span { background: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* HERO */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 0 5vw;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-inner { max-width: 760px; }
.hero-badge {
  display: inline-block; background: rgba(10,28,50,.45);
  border: 1px solid rgba(255,255,255,.45); border-radius: 20px;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem 1rem; margin-bottom: 1.4rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-inner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: 1.08;
  margin-bottom: 1.2rem; text-shadow: 0 2px 14px rgba(0,0,0,.3);
  letter-spacing: .01em; text-transform: uppercase;
}
.hero-inner p { font-size: 1.1rem; color: #fff; max-width: 540px; margin: 0 auto 2.2rem; text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 2px 14px rgba(0,0,0,.7); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--blue2); color: #fff; padding: .75rem 1.8rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: .95rem; transition: background .2s, transform .15s; }
.btn-primary:hover { background: #1860ae; transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,.85); color: #fff; background: rgba(10,28,50,.45); backdrop-filter: blur(4px); padding: .7rem 1.6rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: .95rem; transition: background .2s, transform .15s, border-color .2s; }
.btn-outline:hover { background: rgba(10,28,50,.7); border-color: #fff; transform: translateY(-2px); }

/* hero strip */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(14,42,71,.92); backdrop-filter: blur(6px);
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding: 1rem 5vw;
}
.strip-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.85); font-size: .88rem; }
.strip-item svg { flex-shrink: 0; opacity: .75; }
.strip-item a { color: inherit; text-decoration: none; }
.strip-item a:hover { color: #fff; text-decoration: underline; }

/* SECTIONS */
section { padding: 90px 5vw; }
section:nth-child(even) { background: var(--lgrey); }
.section-label { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue2); margin-bottom: .55rem; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(2rem, 3.2vw, 2.8rem); color: var(--navy); line-height: 1.15; margin-bottom: .9rem; letter-spacing: -.01em; }
.section-sub { color: #556a80; max-width: 580px; margin-bottom: 3rem; font-size: 1.02rem; }
.intro-tekst { max-width: 780px; color: #556a80; font-size: 1.02rem; line-height: 1.65; }
.intro-tekst p + p { margin-top: 1rem; }
.container { max-width: 1140px; margin: 0 auto; }

/* DIENSTEN */
.dienst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.dienst-card { background: #fff; border-radius: 12px; padding: 2rem 1.8rem; border: 1px solid #dce6f0; box-shadow: 0 2px 12px rgba(26,95,168,.06); transition: transform .2s, box-shadow .2s; }
.dienst-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(26,95,168,.13); }
.dienst-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--blue), var(--blue2)); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.dienst-icon svg { color: #fff; }
.dienst-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }
.dienst-card p { color: #556a80; font-size: .93rem; }

/* OVER ONS */
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.over-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.over-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.over-text p { color: #556a80; font-size: .97rem; margin-bottom: 1.1rem; }
.over-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.stat-box { background: var(--lgrey); border-radius: 10px; padding: 1.1rem; text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 2rem; color: var(--blue2); display: block; }
.stat-lbl { font-size: .8rem; color: #556a80; font-weight: 500; }

/* VERHUUR */
.verhuur-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.verhuur-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 2rem; }
.verhuur-item { background: #fff; border: 1px solid #dce6f0; border-radius: 9px; padding: .9rem 1rem; display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .88rem; color: var(--navy); transition: background .2s, color .2s, border-color .2s; cursor: default; }
.verhuur-item:hover { background: var(--blue2); color: #fff; border-color: var(--blue2); }
.verhuur-item:hover .vi-dot { background: rgba(255,255,255,.6); }
.vi-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue2); flex-shrink: 0; transition: background .2s; }
.verhuur-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: .8rem; }
.vp-big { grid-column: 1 / -1; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.vp-big img, .vp-sm img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.vp-big:hover img, .vp-sm:hover img { transform: scale(1.04); }
.vp-sm { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.verhuur-info-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.2rem; margin-top: 0; }
.info-card { background: var(--navy); color: #fff; border-radius: 12px; padding: 1.5rem 1.3rem; }
.info-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .45rem; }
.info-card p { font-size: .86rem; color: rgba(255,255,255,.72); line-height: 1.6; }

/* KEURINGEN */
.keuring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.keuring-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.keuring-list li { display: flex; align-items: flex-start; gap: .8rem; background: #fff; border-radius: 8px; padding: .85rem 1rem; border: 1px solid #dce6f0; font-size: .94rem; }
.keuring-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--blue2); }
.keuring-intro { color: #556a80; font-size: .97rem; margin-bottom: 1.6rem; }
.keuring-right { display: flex; flex-direction: column; gap: 1.2rem; }
.keuring-sticker { border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid #dce6f0; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.keuring-sticker img { max-width: 220px; width: 100%; }
.keuring-highlight { background: linear-gradient(135deg, var(--navy), #1a4070); color: #fff; border-radius: 12px; padding: 1.6rem 1.4rem; }
.keuring-highlight h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.keuring-highlight p { font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.6; }
.keuring-note { background: #fff3ea; border-left: 4px solid var(--accent); border-radius: 0 8px 8px 0; padding: .9rem 1.1rem; font-size: .88rem; color: #5a3010; }
.btn-self-start { align-self: flex-start; }

/* PROJECTEN */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.project-card { border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid #dce6f0; box-shadow: 0 2px 10px rgba(26,95,168,.06); transition: transform .2s, box-shadow .2s; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(26,95,168,.14); }
.project-thumb { height: 210px; overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.project-card:hover .project-thumb img { transform: scale(1.06); }
.project-body { padding: 1.3rem; }
.project-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue2); margin-bottom: .35rem; display: block; }
.project-body h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.project-body p { font-size: .86rem; color: #556a80; }

/* CONTACT */
#contact { background: var(--navy); color: #fff; }
#contact .section-title { color: #fff; }
#contact .section-sub { color: rgba(255,255,255,.7); }
#contact .section-label { color: #7fb4e8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.3rem; }
.ci-row { display: flex; align-items: flex-start; gap: 1rem; padding-bottom: 1.3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.ci-row:last-child { border: none; padding-bottom: 0; }
.ci-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.ci-icon svg { color: #7fb4e8; }
.ci-label { font-size: .73rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .15rem; }
.ci-val { font-size: .93rem; color: rgba(255,255,255,.9); }
.ci-val a { color: inherit; text-decoration: none; }
.ci-val a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .95rem; }
.form-group { display: flex; flex-direction: column; gap: .32rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: .72rem 1rem; color: #fff; font-family: inherit; font-size: .91rem; outline: none; transition: border-color .2s, background .2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue2); background: rgba(255,255,255,.1); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-send { background: var(--accent); color: #fff; border: none; border-radius: 8px; padding: .82rem 2rem; font-family: inherit; font-size: .94rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; align-self: flex-start; }
.btn-send:hover { background: #d06a1c; transform: translateY(-2px); }
.form-success { display: none; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 2rem; text-align: center; color: rgba(255,255,255,.9); }

/* FOOTER */
footer { background: #071a2e; color: rgba(255,255,255,.45); padding: 2.2rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; }
footer img { height: 28px; opacity: .65; }
footer a { color: rgba(255,255,255,.45); text-decoration: none; }
footer a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .over-grid, .keuring-grid, .contact-grid, .verhuur-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 5vw; gap: 1.2rem; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
  nav ul.open a { color: #fff; }
  .hamburger { display: flex; }
  .verhuur-photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 60px 5vw; }
  .project-grid { grid-template-columns: 1fr; }
  .hero-strip { gap: .8rem; }
  .verhuur-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────────
   SUBPAGINA-STIJLEN (Verhuur & Keuringen)
   ────────────────────────────────────────────────────────────────── */
body.subpage { padding-top: 0; }

/* Section head-row: titel-blok links, "lees meer"-link rechts */
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.section-head-row .section-title { margin-bottom: .5rem; }
.section-head-row .section-sub { margin-bottom: 0; max-width: 580px; }
.section-meer-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--blue2); font-weight: 600; font-size: .92rem;
  text-decoration: none; white-space: nowrap; padding-bottom: .4rem;
  transition: gap .2s, color .2s;
}
.section-meer-link:hover { gap: .75rem; color: var(--blue); }
.section-meer-link svg { transition: transform .2s; }
.section-meer-link:hover svg { transform: translateX(3px); }
/* Variant in de keuring-sectie: titel-blok zonder ondertitel, link bovenaan uitgelijnd */
.keuring-head-row { align-items: flex-start; margin-bottom: 1.6rem; }
.keuring-head-row .section-title { margin-bottom: 0; }
.section-meer-link-keuringen { padding-top: .3rem; padding-bottom: 0; }

/* Page hero (subpagina header) */
.page-hero { padding: 140px 5vw 80px; color: #fff; text-align: center; }
.page-hero-verhuur { background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%) !important; }
.page-hero-keuringen { background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%) !important; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 1rem; line-height: 1.1;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 2rem; }
.hero-chips { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.hero-chips .chip { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; padding: .3rem .9rem; font-size: .8rem; color: rgba(255,255,255,.85); }

/* USP-balk */
.usp-balk { background: var(--navy); color: #fff; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 0; }
.usp-item { padding: 2rem 1.8rem; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.usp-item:last-child { border: none; }
.usp-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--blue2); display: block; margin-bottom: .3rem; }
.usp-lbl { font-size: .88rem; color: rgba(255,255,255,.72); }

/* Page-section wrapper */
.page-section { padding: 80px 5vw; background: #fff; }
.page-section-alt { background: var(--lgrey); }

/* Verhuur: materiaal-blokken */
.materiaal-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.materiaal-section:last-child { margin-bottom: 0; }
.materiaal-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; background: var(--lgrey); }
.materiaal-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.materiaal-img:hover img { transform: scale(1.04); }
.materiaal-content h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.7rem; color: var(--navy); margin-bottom: .7rem; }
.materiaal-content p { color: #556a80; font-size: .97rem; margin-bottom: 1rem; }
.spec-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.spec-list li { display: flex; align-items: center; gap: .6rem; font-size: .93rem; color: var(--text); }
.spec-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue2); flex-shrink: 0; }
.tag-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.tag { background: #e8f1fb; color: var(--blue2); border-radius: 6px; padding: .25rem .7rem; font-size: .8rem; font-weight: 600; }

/* Verhuur: stappenplan */
.stappen { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.stap { background: #fff; border: 1px solid #dce6f0; border-radius: 12px; padding: 1.8rem 1.5rem; position: relative; }
.stap-nr { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: #e8f1fb; line-height: 1; margin-bottom: .5rem; }
.stap h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.stap p { font-size: .88rem; color: #556a80; }

/* Keuringen: kaarten */
.keuring-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.keuring-card { background: #fff; border: 1px solid #dce6f0; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(26,95,168,.06); transition: transform .2s, box-shadow .2s; }
.keuring-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(26,95,168,.13); }
.keuring-card-header { background: linear-gradient(135deg, var(--navy), #1a4a7a); padding: 1.6rem 1.5rem 1.2rem; }
.keuring-card-header h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: .3rem; }
.keuring-card-header p { font-size: .85rem; color: rgba(255,255,255,.7); }
.keuring-card-body { padding: 1.4rem 1.5rem; }
.keuring-items { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.keuring-items li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--text); }
.keuring-items li svg { flex-shrink: 0; margin-top: 3px; color: var(--blue2); }
.freq-badge { display: inline-block; background: #e8f1fb; color: var(--blue2); border-radius: 6px; padding: .25rem .7rem; font-size: .78rem; font-weight: 700; }

/* Keuringen: wetgeving */
.wetgeving-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.wetgeving-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.wetgeving-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wetgeving-intro { color: #556a80; font-size: .97rem; margin-bottom: 1.6rem; }
.wet-items { display: flex; flex-direction: column; gap: 1rem; }
.wet-item { background: #fff; border: 1px solid #dce6f0; border-radius: 10px; padding: 1.1rem 1.2rem; }
.wet-item strong { display: block; color: var(--navy); margin-bottom: .3rem; font-size: .97rem; }
.wet-item p { font-size: .9rem; color: #556a80; }

/* Keuringen: proces-stappen */
.proces-stappen { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.proces-stap { text-align: center; padding: 1.8rem 1.2rem; background: #fff; border: 1px solid #dce6f0; border-radius: 12px; }
.ps-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue2)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.ps-icon svg { color: #fff; }
.proces-stap h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.proces-stap p { font-size: .88rem; color: #556a80; }

/* Keuringen: service & garanties */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.service-item { display: flex; align-items: flex-start; gap: 1rem; background: #fff; border: 1px solid #dce6f0; border-radius: 12px; padding: 1.4rem 1.3rem; }
.service-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--blue2)); display: flex; align-items: center; justify-content: center; color: #fff; }
.service-icon svg { color: #fff; }
.service-item h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: .35rem; }
.service-item p { font-size: .88rem; color: #556a80; }

/* Keuringen: sticker / rapportage */
.sticker-section { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.sticker-visual { display: flex; align-items: center; justify-content: center; padding: 2rem; background: #fff; border-radius: 14px; border: 1px solid #dce6f0; }
.sticker-visual img { max-width: 240px; width: 100%; }
.sticker-tekst { color: #556a80; font-size: .97rem; margin-bottom: 1.2rem; }
.sticker-callout { background: var(--lgrey); border-radius: 10px; padding: 1.2rem 1.4rem; border-left: 4px solid var(--blue2); }
.sticker-callout strong { color: var(--navy); display: block; margin-bottom: .3rem; }
.sticker-callout p { font-size: .9rem; color: #556a80; }
.sticker-callout a { color: var(--blue2); font-weight: 600; text-decoration: none; }
.sticker-callout a:hover { text-decoration: underline; }

/* CTA-blok onderaan subpagina's */
.cta-block { background: linear-gradient(135deg, var(--blue2), var(--blue)); color: #fff; border-radius: 16px; padding: 3rem 2.5rem; text-align: center; }
.cta-block-keuringen { background: linear-gradient(135deg, var(--navy), #1a4a7a); }
.cta-block h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2rem; text-transform: uppercase; margin-bottom: .8rem; }
.cta-block p { color: rgba(255,255,255,.82); margin-bottom: 1.8rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--navy); padding: .75rem 1.8rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: .95rem; transition: opacity .2s, transform .15s; }
.btn-white:hover { opacity: .9; transform: translateY(-2px); }
.btn-ghost { border: 2px solid rgba(255,255,255,.6); color: #fff; padding: .7rem 1.6rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: .95rem; transition: background .2s; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

/* Subpagina responsive */
@media (max-width: 860px) {
  .materiaal-section, .wetgeving-grid, .sticker-section { grid-template-columns: 1fr; gap: 2rem; }
  .section-head-row { gap: .8rem; margin-bottom: 2rem; }
}
@media (max-width: 600px) {
  .page-hero { padding: 110px 5vw 60px; }
  .page-section { padding: 55px 5vw; }
}
