/**
 * Vetkanaal Reinigers – Theme component CSS
 * Design system: blue (#0A1E3D–#1E4D99), red (#E8420A), Plus Jakarta Sans + Inter.
 * All section widgets use these classes. Styles are overridable per-widget via Elementor.
 */

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

:root {
  --blue-900: #0A1E3D;
  --blue-800: #0F2D5C;
  --blue-700: #163A73;
  --blue-600: #1E4D99;
  --blue-100: #E8EFFE;
  --blue-50:  #F0F4FF;
  --red:      #E8420A;
  --red-dark: #C03208;
  --red-light:#FFF0EB;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F5F7FA;
  --white:    #FFFFFF;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.13);
  --max-w: 1140px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-900); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ── Utilities ── */
.vr-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.vr-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--radius-md);
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.vr-btn-primary   { background: var(--red); color: var(--white); border-color: var(--red); }
.vr-btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,66,10,.3); }
.vr-btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.vr-btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.vr-btn-outline-blue { background: transparent; color: var(--blue-800); border-color: var(--blue-800); }
.vr-btn-outline-blue:hover { background: var(--blue-50); }
.vr-btn-dark { background: var(--blue-800); color: var(--white); border-color: var(--blue-800); }
.vr-btn-dark:hover { background: var(--blue-700); border-color: var(--blue-700); }

.vr-eyebrow {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; display: block;
}
.vr-section-title {
  font-family: var(--font-display); font-size: 34px; font-weight: 800;
  color: var(--gray-900); line-height: 1.15; margin-bottom: 16px;
}
.vr-section-lead { font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 560px; }

/* ── Section helpers ── */
.vr-section { padding: 88px 0; }
.vr-section-alt { background: var(--gray-100); }
.vr-section-dark { background: var(--blue-800); }
.vr-section-dark .vr-section-title { color: var(--white); }
.vr-section-dark .vr-section-lead { color: rgba(255,255,255,.65); }
.vr-section-dark .vr-eyebrow { color: var(--red); }

/* ── Top bar ── */
.vr-topbar {
  background: var(--blue-900);
  padding: 10px 0;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.vr-topbar .vr-container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.vr-topbar a { color: var(--white); }
.vr-topbar-items { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.vr-topbar-item { display: flex; align-items: center; gap: 6px; }
.vr-topbar-item svg { stroke: var(--red); flex-shrink: 0; }
.vr-topbar-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 6px 14px; border-radius: 99px;
  font-weight: 700; font-size: 13px;
}
.vr-topbar-phone svg { stroke: var(--white); }

/* ── Header / Nav ── */
.vr-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.vr-header .vr-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.vr-logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--blue-800); display: flex; align-items: center; gap: 10px;
}
.vr-logo-mark {
  width: 36px; height: 36px;
  background: var(--blue-800); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.vr-logo-mark svg { stroke: var(--white); }
.vr-nav { display: flex; align-items: center; gap: 4px; }
.vr-nav a {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--gray-700); padding: 8px 14px; border-radius: var(--radius-md);
  transition: all .15s;
}
.vr-nav a:hover { color: var(--blue-800); background: var(--blue-50); }
.vr-nav-cta {
  background: var(--blue-800); color: var(--white) !important;
  padding: 10px 20px !important; border-radius: var(--radius-md);
}
.vr-nav-cta:hover { background: var(--blue-700) !important; }

/* Dropdown */
.vr-nav-item { position: relative; }
.vr-nav-item > a { display: flex; align-items: center; gap: 5px; }
.vr-nav-item > a svg { transition: transform .2s; }
.vr-nav-item:hover > a svg { transform: rotate(180deg); }
.vr-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}
.vr-nav-item:hover .vr-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.vr-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--gray-700); transition: all .13s;
}
.vr-dropdown a:hover { background: var(--blue-50); color: var(--blue-800); }
.vr-dropdown-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--blue-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.vr-dropdown-icon svg { stroke: var(--blue-800); }
.vr-dropdown a:hover .vr-dropdown-icon { background: var(--blue-100); }

/* Mobile toggle */
.vr-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.vr-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blue-800); margin: 5px 0; transition: .3s; }

/* ── Urgency bar ── */
.vr-urgency {
  background: var(--red);
  padding: 12px 0; text-align: center;
}
.vr-urgency .vr-container {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white);
  flex-wrap: wrap;
}
.vr-urgency svg { stroke: var(--white); flex-shrink: 0; }
.vr-urgency a { color: var(--white); text-decoration: underline; }

/* ── Hero ── */
.vr-hero {
  background: var(--blue-800);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.vr-hero::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--red);
}
.vr-hero-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.vr-hero-content { padding-bottom: 80px; }
.vr-hero-title {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  color: var(--white); line-height: 1.08; margin-bottom: 20px;
}
.vr-hero-title span { color: var(--red); }
.vr-hero-lead { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.vr-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.vr-hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.vr-hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7);
}
.vr-hero-trust-item svg { stroke: var(--red); flex-shrink: 0; }

/* Hero form card */
.vr-hero-card {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 36px 32px 0;
  box-shadow: var(--shadow-lg);
  align-self: flex-end;
  position: relative;
  z-index: 2;
}
.vr-hero-card-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--gray-900); margin-bottom: 4px;
}
.vr-hero-card-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.vr-rating-inline {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-100); padding: 8px 12px; border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.vr-stars { display: flex; gap: 2px; }
.vr-star { color: #F59E0B; font-size: 15px; }
.vr-rating-text { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--gray-900); }
.vr-rating-sub  { font-size: 12px; color: var(--gray-500); }

/* ── Forms ── */
.vr-field { margin-bottom: 14px; }
.vr-field label { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 5px; }
.vr-field input, .vr-field select, .vr-field textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--gray-300); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px; color: var(--gray-900);
  background: var(--white); outline: none; transition: border-color .15s;
}
.vr-field input:focus, .vr-field select:focus, .vr-field textarea:focus { border-color: var(--blue-600); }
.vr-field textarea { resize: vertical; min-height: 80px; }
.vr-form-submit { width: 100%; font-size: 16px; padding: 15px; justify-content: center; border-radius: var(--radius-md); margin-bottom: 12px; }
.vr-form-note { font-size: 12px; color: var(--gray-500); text-align: center; padding-bottom: 32px; }

/* ── Trust bar ── */
.vr-trustbar {
  background: var(--blue-900);
  padding: 18px 0;
}
.vr-trustbar .vr-container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.vr-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.85);
}
.vr-trust-item svg { stroke: var(--red); flex-shrink: 0; }

/* ── Diensten cards ── */
.vr-diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.vr-dienst-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s;
}
.vr-dienst-card:hover { border-color: var(--blue-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vr-dienst-card.is-featured { border-color: var(--blue-600); border-width: 2px; }
.vr-dienst-icon {
  width: 48px; height: 48px;
  background: var(--blue-50); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.vr-dienst-icon svg { stroke: var(--blue-800); }
.vr-dienst-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.vr-dienst-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.vr-dienst-link {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--blue-800); display: inline-flex; align-items: center; gap: 4px;
}
.vr-dienst-link:hover { color: var(--red); }
.vr-dienst-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.vr-dienst-checklist li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); }
.vr-dienst-checklist li svg { stroke: var(--red); flex-shrink: 0; }

/* Featured service (diensten page) */
.vr-dienst-featured {
  background: var(--blue-800);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  grid-column: 1 / -1;
  color: var(--white);
}
.vr-dienst-featured h3 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.vr-dienst-featured > div:first-child p { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 16px; }
.vr-dienst-featured ul li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.85); }
.vr-dienst-featured ul li svg { stroke: var(--red); flex-shrink: 0; }
.vr-dienst-featured-img { border-radius: var(--radius-lg); overflow: hidden; height: 280px; position: relative; }
.vr-dienst-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.vr-floating-trust {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: 14px; max-width: 300px;
}
.vr-floating-trust .num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--blue-800); line-height: 1; flex-shrink: 0; }

/* ── Verplicht / insurance section ── */
.vr-verplicht-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vr-verplicht-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.vr-verplicht-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--gray-700);
}
.vr-check-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--blue-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vr-check-icon svg { stroke: var(--blue-800); }
.vr-verplicht-visual {
  background: var(--blue-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.vr-stat-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
}
.vr-stat-block .num {
  font-family: var(--font-display); font-size: 40px; font-weight: 800;
  color: var(--blue-800); line-height: 1;
}
.vr-stat-block .num span { color: var(--red); }
.vr-stat-block .label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }
.vr-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vr-stat-block.is-dark { background: var(--blue-800); border-color: transparent; }
.vr-stat-block.is-dark .vr-stat-dark-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.vr-stat-block.is-dark .vr-stat-dark-sub { font-size: 13px; color: rgba(255,255,255,.6); }

/* ── Insurance section intro paragraph (VR_Widget_Insurance_Section) ── */
.vr-verplicht-intro { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 8px; }

/* ── Hero inspection form (VR_Widget_Hero) ── */
.vr-inspection-form { display: flex; flex-direction: column; }

/* ── Stappen ── */
.vr-stappen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; position: relative; }
.vr-stappen-grid::before {
  content: '';
  position: absolute; top: 32px; left: calc(33.33% + 20px); right: calc(33.33% + 20px);
  height: 2px; background: var(--gray-300); pointer-events: none;
}
.vr-step-card { padding: 0 24px; text-align: center; }
.vr-step-num-wrap {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--blue-800); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  color: var(--white); position: relative; z-index: 1;
}
.vr-step-card:first-child .vr-step-num-wrap { background: var(--red); }
.vr-step-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.vr-step-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── Werkwijze stappen (service detail) ── */
.vr-stap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.vr-stap-card {
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: 28px;
}
.vr-stap-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-800); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
}
.vr-stap-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.vr-stap-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── Voor / Na ── */
.vr-voorna-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.vr-voorna-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-300);
  background: var(--white);
}
.vr-voorna-label {
  padding: 12px 20px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.vr-voorna-voor .vr-voorna-label { background: var(--red-light); color: var(--red-dark); }
.vr-voorna-na  .vr-voorna-label { background: var(--blue-100); color: var(--blue-800); }
.vr-voorna-img {
  height: 260px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--gray-500);
}
.vr-voorna-img img { width: 100%; height: 100%; object-fit: cover; }
.vr-voorna-text { padding: 16px 20px; font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── FAQ ── */
.vr-faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; max-width: 720px; }
.vr-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vr-faq-q {
  width: 100%; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--gray-900);
}
.vr-faq-q svg { stroke: var(--gray-500); flex-shrink: 0; transition: transform .2s; }
.vr-faq-item.open .vr-faq-q svg { transform: rotate(45deg); stroke: var(--blue-800); }
.vr-faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.vr-faq-item.open .vr-faq-a { display: block; }

/* ── CTA sectie ── */
.vr-cta-box {
  background: var(--blue-800);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vr-cta-box::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--red);
}
.vr-cta-box h2 {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.vr-cta-box p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 32px; }
.vr-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Page hero (inner pages) ── */
.vr-page-hero {
  background: var(--blue-800);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.vr-page-hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red);
}
.vr-breadcrumb { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 20px; flex-wrap: wrap; }
.vr-breadcrumb a { color: var(--white); }
.vr-breadcrumb a:hover { color: var(--red); }
.vr-page-hero-title { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.vr-page-hero-title span { color: var(--red); }
.vr-page-hero-lead { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 560px; margin-bottom: 28px; }
.vr-page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Page hero with sidebar form */
.vr-page-hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }
.vr-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.vr-sidebar-card-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.vr-sidebar-card-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }

/* ── Content layout (service detail) ── */
.vr-content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.vr-content-layout h2.vr-section-title { font-size: 28px; }
.vr-content-layout p { font-size: 15px; color: var(--gray-700); line-height: 1.75; margin-bottom: 16px; }
.vr-highlight-box {
  background: var(--blue-50); border-left: 4px solid var(--blue-600);
  border-radius: var(--radius-md); padding: 20px 24px; margin: 24px 0;
}
.vr-highlight-box p { font-size: 14px; color: var(--gray-700); margin: 0; }
.vr-check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 16px 0 24px; }
.vr-check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-700); }

/* ── Voordelen grid ── */
.vr-voordelen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 16px 0; }
.vr-voordeel-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); padding: 24px; }
.vr-voordeel-icon { width: 44px; height: 44px; background: var(--blue-50); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.vr-voordeel-icon svg { stroke: var(--blue-800); }
.vr-voordeel-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--gray-900); }
.vr-voordeel-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── Content sidebar ── */
.vr-content-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.vr-quick-links { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); padding: 24px; }
.vr-quick-links h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em; }
.vr-quick-links a { display: flex; align-items: center; gap: 8px; padding: 9px 0; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--gray-700); border-top: 1px solid var(--gray-100); }
.vr-quick-links a:first-of-type { border-top: none; }
.vr-quick-links a svg { stroke: var(--blue-800); flex-shrink: 0; }
.vr-quick-links a:hover { color: var(--blue-800); }

/* ── Comparison table ── */
.vr-vergelijk-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.vr-vergelijk-table th { background: var(--blue-800); color: var(--white); font-family: var(--font-display); font-size: 13px; font-weight: 700; padding: 16px; text-align: left; }
.vr-vergelijk-table td { padding: 16px; border-bottom: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-700); }
.vr-vergelijk-table tr:last-child td { border-bottom: none; }
.vr-vergelijk-table .check { color: var(--red); font-weight: 800; font-size: 18px; }
.vr-vergelijk-table .dienst-name { font-family: var(--font-display); font-weight: 700; color: var(--blue-800); }
.vr-vergelijk-table .dienst-name:hover { color: var(--red); }

/* ── News grid ── */
.vr-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.vr-news-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; }
.vr-news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vr-news-img { height: 200px; background: var(--gray-100); overflow: hidden; }
.vr-news-img img { width: 100%; height: 100%; object-fit: cover; }
.vr-news-body { padding: 22px; }
.vr-news-meta { display: flex; gap: 12px; font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--gray-500); margin-bottom: 10px; }
.vr-news-cat { color: var(--red); }
.vr-news-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.3; }
.vr-news-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; }

/* News detail */
.vr-article-meta { display: flex; align-items: center; gap: 16px; font-family: var(--font-display); font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }
.vr-article-content { font-size: 16px; line-height: 1.8; color: var(--gray-700); }
.vr-article-content p { margin-bottom: 20px; }
.vr-article-content h2, .vr-article-content h3 { font-family: var(--font-display); color: var(--gray-900); margin: 32px 0 16px; }
.vr-article-content h2 { font-size: 26px; }
.vr-article-content h3 { font-size: 20px; }

/* ── Contact section ── */
.vr-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.vr-contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.vr-contact-info-icon { width: 48px; height: 48px; background: var(--blue-50); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vr-contact-info-icon svg { stroke: var(--blue-800); }
.vr-contact-info-item h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.vr-contact-info-item p { font-size: 14px; color: var(--gray-500); }
.vr-contact-info-item a { color: var(--blue-800); font-weight: 600; }

/* ── About section ── */
.vr-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vr-about-img { border-radius: var(--radius-xl); overflow: hidden; height: 460px; }
.vr-about-img img { width: 100%; height: 100%; object-fit: cover; }
.vr-about-points { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.vr-about-point { display: flex; gap: 14px; align-items: flex-start; }
.vr-about-point .vr-check-icon { width: 28px; height: 28px; }
.vr-about-point h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.vr-about-point p { font-size: 13px; color: var(--gray-500); }

/* ── Footer ── */
.vr-footer { background: var(--blue-900); padding: 64px 0 0; }
.vr-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.vr-footer-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--white); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.vr-footer-logo-mark {
  width: 32px; height: 32px; background: var(--red);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.vr-footer-logo-mark svg { stroke: var(--white); }
.vr-footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.vr-footer-contact { display: flex; flex-direction: column; gap: 8px; }
.vr-footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); }
.vr-footer-contact-item svg { stroke: var(--red); flex-shrink: 0; }
.vr-footer-contact-item a { color: var(--white); font-weight: 600; }
.vr-footer-col h4 {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em;
}
.vr-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.vr-footer-col ul a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.vr-footer-col ul a:hover { color: var(--white); }
.vr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.vr-footer-emergency {
  margin-top: 24px; background: rgba(255,255,255,.06);
  border-radius: var(--radius-md); padding: 16px;
}
.vr-footer-emergency .label { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.vr-footer-emergency .phone { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--white); }
.vr-footer-emergency .sub { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .vr-content-layout { grid-template-columns: 1fr; }
  .vr-content-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .vr-content-sidebar > * { flex: 1 1 280px; }
  .vr-page-hero-grid { grid-template-columns: 1fr; }
  .vr-dienst-featured { grid-template-columns: 1fr; }
  .vr-contact-grid { grid-template-columns: 1fr; }
  .vr-about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .vr-hero-grid { grid-template-columns: 1fr; }
  .vr-hero-card { border-radius: var(--radius-xl); margin-top: 48px; padding-bottom: 32px; }
  .vr-hero-title { font-size: 38px; }
  .vr-diensten-grid { grid-template-columns: 1fr 1fr; }
  .vr-verplicht-grid { grid-template-columns: 1fr; }
  .vr-footer-grid { grid-template-columns: 1fr 1fr; }
  .vr-cta-box { padding: 40px 28px; }
  .vr-cta-box h2 { font-size: 26px; }
  .vr-news-grid { grid-template-columns: 1fr 1fr; }
  .vr-page-hero-title { font-size: 32px; }
  .vr-nav { display: none; }
  .vr-nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .vr-section { padding: 64px 0; }
  .vr-diensten-grid { grid-template-columns: 1fr; }
  .vr-stappen-grid { grid-template-columns: 1fr; gap: 32px; }
  .vr-stappen-grid::before { display: none; }
  .vr-voorna-grid { grid-template-columns: 1fr; }
  .vr-hero-title { font-size: 32px; }
  .vr-section-title { font-size: 26px; }
  .vr-footer-grid { grid-template-columns: 1fr; }
  .vr-topbar { display: none; }
  .vr-stat-row { grid-template-columns: 1fr; }
  .vr-voordelen-grid { grid-template-columns: 1fr; }
  .vr-news-grid { grid-template-columns: 1fr; }
  .vr-stap-grid { grid-template-columns: 1fr; }
  .vr-content-sidebar { flex-direction: column; }
  .vr-insp-layout { grid-template-columns: 1fr !important; }
  .vr-insp-grid-2 { grid-template-columns: 1fr !important; }
}

/* ── Inspection form page ── */
.vr-inspection-section { padding: 0 0 80px; background: var(--white); }
.vr-inspection-section .vr-insp-hero { margin-bottom: 0; }
.vr-insp-body { padding-top: 56px; }
.vr-insp-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.vr-insp-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); }
.vr-insp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vr-insp-full { grid-column: 1 / -1; }
.vr-insp-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.vr-insp-trust { background: var(--gray-100); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.vr-insp-trust .vr-trust-item { color: var(--gray-700); }
.vr-insp-trust .vr-trust-item svg { stroke: var(--red); }
.vr-insp-phone { background: var(--blue-800); border-radius: var(--radius-lg); padding: 24px; }
.vr-insp-phone-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); margin-bottom: 8px; }
.vr-insp-phone-num { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--white); }
.vr-insp-phone .sub { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.vr-form-success { display: none; background: var(--blue-50); border: 1px solid var(--blue-600); border-radius: var(--radius-md); padding: 16px; margin-bottom: 16px; color: var(--blue-800); font-weight: 600; }

/* ── News detail ── */
.vr-news-detail-section { padding: 56px 0 80px; }
.vr-news-detail-wrap { max-width: 760px; margin: 0 auto; }
.vr-news-detail-wrap .vr-breadcrumb { color: var(--gray-500); margin-bottom: 24px; }
.vr-news-detail-wrap .vr-breadcrumb a { color: var(--blue-800); }
.vr-news-detail-wrap .vr-breadcrumb a:hover { color: var(--red); }
.vr-article-title { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--gray-900); line-height: 1.15; margin-bottom: 16px; }
.vr-article-featured { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin: 24px 0 32px; }
.vr-related { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--gray-300); }
.vr-related-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.vr-related-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vr-related-list a { display: block; padding: 16px; background: var(--gray-100); border-radius: var(--radius-md); font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gray-700); transition: all .15s; }
.vr-related-list a:hover { background: var(--blue-50); color: var(--blue-800); }
@media (max-width: 768px) {
  .vr-related-list { grid-template-columns: 1fr; }
}

/* ── Verplicht intro + dark stat helpers ── */
.vr-verplicht-intro { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 8px; }
.vr-stat-block.is-dark .vr-stat-dark-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.vr-stat-block.is-dark .vr-stat-dark-sub { font-size: 13px; color: rgba(255,255,255,.6); }

/* ── WordPress core alignment ── */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 8px; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }

/* ── Elementor full-width section support ── */
.elementor-section.elementor-section-stretched > .elementor-container { max-width: 1140px !important; }
.elementor-section-full_width > .elementor-container { max-width: 1140px !important; }
/* Remove default Elementor column padding for our widgets */
.elementor-section .elementor-column.elementor-col-100 > .elementor-widget-wrap { padding: 0; }
/* Ensure our vr-container is the width controller inside sections */
.elementor-widget-vr_ .vr-container,
.elementor-widget[class*="elementor-widget-vr_"] .vr-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
/* HFE header/footer full width */
.elementor-hf .elementor-section.elementor-section-stretched > .elementor-container { max-width: 1140px !important; }
