/* brightflow.css v20260813b */
:root {
  --bs-primary: #00a1c6;
  --bs-primary-rgb: 0, 161, 198;
  --bs-secondary: #1d2b37;
  --bs-secondary-rgb: 29, 43, 55;
  --bs-warning: #ffb600;
  --bs-warning-rgb: 255, 182, 0;
  --bf-success: #00c688;
  --bf-success-rgb: 0, 198, 136;
  --bf-danger: #c62500;
  --bf-danger-rgb: 198, 37, 0;

  --bs-success: var(--bf-success);
  --bs-success-rgb: var(--bf-success-rgb);
  --bs-danger: var(--bf-danger);
  --bs-danger-rgb: var(--bf-danger-rgb);
  --bs-info: #00cbf9;
  --bs-info-rgb: 0, 203, 249;
  --bs-body-color: rgb(116, 132, 148);
  --bs-body-bg: #ffffff;
  --bs-body-font-family: var(--bf-font-body);
  --bs-font-sans-serif: Verdana, Geneva, sans-serif;
  --bs-body-font-size: 15px;
  --bs-body-font-weight: 300;
  --bs-body-line-height: 1.74;
  --bs-link-color: #00a1c6;
  --bs-link-hover-color: #008fb0;
  --bs-dark: #1d2b37;
  --bs-dark-rgb: 29, 43, 55;

  --bf-primary: #00a1c6;
  --bf-primary-hover: #008fb0;
  --bf-primary-active: #007a98;
  --bf-accent: #ffb600;
  --bf-accent-hover: #e6a400;
  --bf-accent-active: #cc9200;
  --bf-tooltip-bg: #00cbf9;
  --bf-line-light: #00cbf9;
  --bf-line-mid: #00b6df;
  --bf-dark: #1d2b37;
  --bf-text: #333333;
  --bf-muted: rgb(116, 132, 148);
  --bf-subtle: #7a7a7a;
  --bf-surface: #f9fbff;
  --bf-surface-2: #fafafa;
  --bf-border: #d9d9d9;
  --bf-border-2: #e9e9e9;
  --bf-border-input: #c3cdd8;
  --bf-radius-sm: 10px;
  --bf-radius-md: 14px;
  --bf-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --bf-shadow-md: 0 6px 20px rgba(0, 0, 0, 0.12);
  --bf-shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.14);
  --bf-container-max: 1170px;
  --bf-transition: 180ms cubic-bezier(0.2, 0, 0, 1);
  --bf-topbar-height: 45px;
  --bf-navbar-height: 100px;

  --bf-font-display: "Exo", Verdana, Arial, sans-serif;
  --bf-font-body: Verdana, Geneva, sans-serif;
  --bf-section-title-size: clamp(24px, 4vw, 26px);
  --bf-card-title-size: 24px;
}

html { overflow-x: hidden; scrollbar-gutter: stable; }

.container {
  max-width: 1170px !important;
}

body {
  font-family: var(--bf-font-body) !important;
  color: var(--bf-text) !important;
  background-color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.74 !important;
  letter-spacing: 0.05px !important;
  padding-top: calc(var(--bf-topbar-height) + var(--bf-navbar-height));
}

.btn, .nav-link, .dropdown-item, .form-control, .form-select,
input, button, select, textarea, p, li, td, th, span, div, a, label {
  font-family: var(--bf-font-body);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--bf-font-display);
  font-weight: 900;
  color: var(--bf-primary);
  text-transform: uppercase;
  letter-spacing: 0.1px;
}

h2, .h2 { font-size: 20px; line-height: 28px; letter-spacing: 0.1px; }
h3, .h3 { font-size: 18px; line-height: 25.2px; letter-spacing: 0.1px; }

a { color: var(--bf-primary); transition: color var(--bf-transition); }
a:hover { color: var(--bf-accent); }
a strong, a b { font-weight: inherit; }

.btn-primary {
  --bs-btn-bg: var(--bf-primary);
  --bs-btn-border-color: var(--bf-primary);
  --bs-btn-hover-bg: var(--bf-primary-hover);
  --bs-btn-hover-border-color: var(--bf-primary-hover);
  --bs-btn-active-bg: var(--bf-primary-active);
  --bs-btn-active-border-color: var(--bf-primary-active);
  --bs-btn-focus-shadow-rgb: 0, 161, 198;
  color: #fff;
}

.btn-outline-primary {
  --bs-btn-color: var(--bf-primary);
  --bs-btn-border-color: var(--bf-line-mid);
  --bs-btn-hover-bg: var(--bf-primary);
  --bs-btn-hover-border-color: var(--bf-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--bf-primary-active);
}

.btn {
  text-transform: none;
}

.btn-outline-accent {
  color: var(--bf-accent);
  border: 1px solid var(--bf-accent);
  background: transparent;
  border-radius: 8px;
  font-family: var(--bf-font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  padding: 12px 34px;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-accent:hover {
  background: var(--bf-accent);
  color: #fff;
}

.bf-btn-accent {
  display: inline-block;
  background: var(--bf-accent);
  color: #fff;
  font-family: var(--bf-font-display);
  font-weight: 400;
  font-size: 15px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-transform: none !important;
  transition: all var(--bf-transition);
}

.bf-btn-accent:hover {
  background: var(--bf-accent-hover);
  color: #fff;
}

.bf-btn-sm {
  font-family: var(--bf-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  padding: 4px 14px;
}

.bf-card-link {
  display: inline-block;
  color: #333;
  font-size: 15px;
  font-family: var(--bf-font-display);
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
  padding: 8px 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #fff;
  transition: all var(--bf-transition);
  text-transform: none;
}
.bf-card-link:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.bf-voorbeeldproject-row {
  display: flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 8px;
  border: 1px solid rgba(100, 120, 144, 0.22);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(31, 37, 44, 0.06);
  background: rgba(255, 255, 255, 0.72);
}
.bf-vb-col-img {
  flex: 0 0 18%;
  max-width: 18%;
  padding-right: 15px;
  padding-left: 15px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bf-vb-col-img img {
  width: 168px;
  max-width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.bf-vb-col-text {
  flex: 0 0 62%;
  max-width: 62%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 576px) {
  .bf-voorbeeldproject-row {
    flex-direction: column;
    padding: 20px 16px;
    text-align: left;
    gap: 16px;
  }
  .bf-vb-col-img,
  .bf-vb-col-text,
  .bf-vb-col-btn {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: left;
  }
  .bf-vb-col-img img {
    width: 100px;
    height: 65px;
  }
}

@media (min-width: 576.02px) and (max-width: 991.98px) {
  .bf-vb-col-text { flex: 0 0 82%; max-width: 82%; }
  .bf-vb-col-btn {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 12px;
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .row > [class*="col-lg-"][style*="max-width"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.bf-bekijk-nu {
  display: inline-block;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 40px;
  border: 1px solid #333;
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  transition: all var(--bf-transition);
  text-transform: none;
}
.bf-bekijk-nu:hover {
  background: #333;
  color: #fff;
}

.bf-topbar {
  background: #ccf2fc;
  color: #333;
  padding: 8px 0;
  font-size: 14px;
  font-family: var(--bf-font-display);
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
  overflow: hidden;
}

.bf-topbar span {
  color: #333;
}

.bf-topbar a.bf-btn-accent {
  margin-left: 16px;
  margin-right: 46px;
}

[id] {
  scroll-margin-top: 150px;
}
@media (max-width: 991.98px) {

  [id] {
    scroll-margin-top: 110px;
  }
}

.bf-navbar {
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--bf-topbar-height);
  z-index: 1040;
  padding: 0 !important;
  height: 100px !important;
  min-height: 100px !important;
  display: flex !important;
  align-items: center !important;
  transition: box-shadow 0.3s;
}

.bf-navbar .navbar {
  padding: 0 !important;
  height: 100px;
}

.bf-navbar-scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.bf-navbar-bg-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  pointer-events: none;
}
.bf-navbar-scrolled .bf-navbar-bg-overlay {
  opacity: 1;
}
.bf-navbar > .container,
.bf-navbar > nav {
  position: relative;
  z-index: 1;
}

.bf-navbar .navbar-brand {
  margin: 0 !important;
  padding: 0 !important;
  margin-right: 40px !important;
}
.bf-navbar .navbar-brand img {
  height: 59px !important;
  width: auto !important;
  display: block !important;
}

header.bf-navbar .navbar .navbar-nav .nav-item .nav-link {
  font-family: var(--bf-font-display) !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  color: var(--bf-text) !important;
  padding: 0 !important;
  letter-spacing: 0.25px !important;
  line-height: 100px !important;
  transition: color var(--bf-transition) !important;
}

header.bf-navbar .navbar .navbar-nav .nav-item {
  margin: 0 17px !important;
}

header.bf-navbar .navbar .navbar-nav .nav-item .nav-link:hover,
header.bf-navbar .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--bf-primary) !important;
}

.bf-navbar .dropdown-menu {
  border: 1px solid var(--bf-border-2);
  border-radius: 8px;
  box-shadow: var(--bf-shadow-md);
  padding: 8px 0;
}

.bf-navbar .dropdown-item {
  font-family: var(--bf-font-display) !important;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.bf-navbar .dropdown-item:hover {
  color: var(--bf-primary);
  background: rgba(0, 161, 198, 0.05);
}

.bf-navbar .navbar-toggler {
  border: none;
  padding: 8px;
}
.bf-navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991.98px) {
  .bf-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23333333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

.bf-hero {
  position: relative;
  padding: 0 0 30px;
  overflow: visible;
  background: #fff;
  min-height: 406px;
}

.bf-hero-bg {
  position: absolute;
  top: -107px;
  left: 50%;
  transform: translateX(-50%);
  width: 1170px;
  max-width: 100%;
  height: 560px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.bf-layer {
  position: absolute;
}

.bf-layer-circle-large {
  width: 531px;
  height: 531px;
  left: 208px;
  top: -118px;
  opacity: 1;
  animation: bf-rotate-slight 9s ease-in-out infinite alternate;
}

.bf-layer-circle-mid {
  width: 356px;
  height: 356px;
  left: 11px;
  top: 60px;
  opacity: 1;
  transform-origin: center center;
  animation: bf-pulse 2s ease-out infinite;
}

.bf-layer-dashed {
  width: 410px;
  height: 410px;
  left: 702px;
  top: 30px;
  opacity: 1;
  animation: bf-rotate-dashed 9s linear infinite;
}

.bf-layer-lines {

  width: 315px;
  height: 315px;
  left: 576px;
  top: 250px;
  opacity: 1;
  animation: bf-rotate-lines 9s ease-in-out infinite alternate;
}

.bf-hero-illustration-wrap { display: none; }

.bf-hero-heading {
  font-size: 36px;
  font-weight: 900;
  line-height: 42px;
  color: var(--bf-primary);
  max-width: 783px;
  margin-bottom: 0;
  padding-top: 87px;
  position: relative;
  z-index: 2;
}

.bf-hero-heading .bf-h1-break { display: none; }
@media (min-width: 1200px) {
  .bf-hero-heading .bf-h1-break { display: inline; }
}

.bf-hero-icons {
  position: absolute;
  top: -107px;
  left: 50%;
  transform: translateX(-50%);
  width: 1170px;
  max-width: 100%;
  height: 560px;
  z-index: 3;
  pointer-events: none;
}

.bf-toptaak {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: transform 0.3s ease;
  border-radius: 50%;
}
.bf-toptaak:hover {
  transform: scale(1.15);
}
.bf-toptaak img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bf-toptaak-koppelingen {
  left: 292px;
  top: 339px;
  width: 38px;
  height: 38px;
}

.bf-toptaak-maatwerk {
  left: 558px;
  top: 372px;
  width: 38px;
  height: 38px;
}

.bf-toptaak-koppelingen,
.bf-toptaak-maatwerk {
  box-sizing: content-box;
  padding: 3px;
  margin: -3px;
}

.bf-toptaak-optimalisatie {
  left: 864px;
  top: 186px;
  width: 89px;
  height: 91px;
}

@keyframes bf-rotate-slight {
  from { transform: rotate(0deg); }
  to { transform: rotate(-11deg); }
}

@keyframes bf-pulse {
  0% { transform: scale(0.9); opacity: 0.75; }
  100% { transform: scale(1.15); opacity: 0; }
}

@keyframes bf-rotate-dashed {
  from { transform: rotate(0deg); }
  to { transform: rotate(119deg); }
}

@keyframes bf-rotate-lines {
  from { transform: rotate(0deg); }
  to { transform: rotate(40deg); }
}

.bf-hero-intro {
  font-size: 15px;
  color: var(--bf-text);
  line-height: 1.74;
  max-width: none;
  text-transform: none;
  position: relative;
  z-index: 2;

  margin-top: 16px;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .bf-hero-intro { margin-top: 225px; }
}

.bf-term {
  border-bottom: 1px dotted var(--bf-primary);
  cursor: help;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.bf-tooltip {
  position: absolute;
  z-index: 15001;
  background: var(--bf-tooltip-bg);
  color: #fff;
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 14px;
  font-family: var(--bf-font-body);
  line-height: 1.5;
  max-width: 280px;
  white-space: normal;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--bf-tooltip-bg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.bf-tooltip-visible {
  opacity: 1;
}

.bf-section {
  padding: 30px 0;
}

.bf-section-compact-bottom {
  margin-bottom: -15px;
}

.bf-section h2 {
  font-size: var(--bf-section-title-size);
  line-height: 1.15;
  margin-bottom: 20px;
}

.bf-section p {
  margin-bottom: 25px;
}

.bf-section-title {
  font-size: var(--bf-section-title-size);
  line-height: 1.15;
  color: var(--bf-primary);
  margin-bottom: 20px;
}

.bf-cta-title { font-size: var(--bf-section-title-size); line-height: 1.15; color: var(--bf-text); }

.bf-feature-title { font-size: 18px; color: var(--bf-text); margin-bottom: 12px; }

.bf-statement {
  font-family: var(--bf-font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  color: var(--bf-primary);
  text-transform: none;
  letter-spacing: 0.1px;
  margin-top: 34px;
  margin-bottom: 14px;
}
.bf-section-dark .bf-statement { color: var(--bf-primary-light); }

.bf-section-text {
  color: var(--bf-text);
  font-size: 15px;
  line-height: 1.74;
  text-transform: none;
  max-width: 100%;
  width: 100%;
  margin-bottom: 25px;
}

.bf-diensten-section {
  background: transparent;
}

.bf-service-card {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 16px;
  padding: 28px 24px 24px;
  text-align: left;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bf-service-card .btn,
.bf-service-card .bf-card-link {
  margin-top: auto;
  align-self: flex-start;
}

.bf-diensten-section .col-md-4 > a {
  display: flex;
  height: 100%;
}

.bf-service-card:hover {
  border-color: var(--bf-primary, #00b6df);
  box-shadow: 0 8px 28px rgba(0,63,95,.09);
  transform: translateY(-3px);
}

.bf-service-card .icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 0 20px;
}

.bf-service-card .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bf-service-card h3 {

  font-size: 18px;
  margin-bottom: 8px;

  color: var(--bf-text);
}

.bf-service-card p {
  font-size: 15px;
  color: var(--bf-text);
  line-height: 1.7;
  text-transform: none;
}

.bf-service-card-left {
  text-align: left;
}

.bf-diensten-stack {
  display: grid;
  gap: 14px;
}
.bf-diensten-stack > a {
  display: flex;
}

.bf-diensten-stack .bf-service-card .icon-wrap {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
}
.bf-diensten-intro {
  margin-bottom: 24px;
}

.bf-diensten-stack > a:first-child .bf-service-card {
  background: transparent;
}

@media (min-width: 992px) {
  .bf-diensten-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    justify-content: start;
    gap: 48px;
    align-items: start;
  }
  .bf-diensten-intro {
    position: sticky;
    top: 170px;
    margin-bottom: 0;
  }
  .bf-diensten-stack {
    gap: 14px;
  }

  .bf-diensten-stack .bf-service-card {
    padding: 24px 36px 36px;
  }
}

.btn-outline-accent.magnetic {
  transition: transform var(--bf-transition);
}
.magnetic {
  will-change: transform;
}

.bf-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .bf-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .bf-product-grid { grid-template-columns: 1fr; }
}

.bf-product-card {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  animation: bfReveal .6s ease both;
}
.bf-product-card:hover {
  border-color: var(--bf-primary, #00b6df);
  box-shadow: 0 8px 28px rgba(0,63,95,.09);
  transform: translateY(-3px);
}
.bf-product-card:nth-child(1) { animation-delay: .05s; }
.bf-product-card:nth-child(2) { animation-delay: .15s; }
.bf-product-card:nth-child(3) { animation-delay: .25s; }
.bf-product-card:nth-child(4) { animation-delay: .35s; }
.bf-product-card:nth-child(5) { animation-delay: .45s; }
.bf-product-card:nth-child(6) { animation-delay: .55s; }

.bf-product-card-logo {
  height: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.bf-product-card-logo svg,
.bf-product-card-logo img {
  max-height: 36px;
  width: auto;
  max-width: 200px;
}
.bf-product-card-tagline {
  font-family: var(--bf-font-display);
  font-weight: 700;
  color: var(--bf-primary, #00b6df);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.bf-product-card-body {
  color: #4a5a6a;
  font-size: 14px;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 20px;
}

.bf-product-card-link,
.bf-diensten-stack .bf-card-readmore {
  font-family: var(--bf-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--bf-text);
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  padding: 8px 16px;
  border: 1px solid var(--bf-text);
  border-radius: 8px;
  background: #fff;
  transition: all var(--bf-transition);
}
.bf-product-card-link:hover,
.bf-diensten-stack .bf-card-readmore:hover {
  background: var(--bf-text);
  color: #fff;
}
.bf-diensten-stack .bf-card-readmore { margin-top: 14px; }

.bf-product-connectors {
  border-top: 1px dashed #cfd8e3;
  margin-top: 16px;
  padding-top: 14px;
}
.bf-product-connectors-label {
  font-family: var(--bf-font-display);
  font-weight: 700;
  color: #8899aa;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.bf-product-connector {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background .2s;
}
.bf-product-connector:hover { background: #f2f7fb; }
.bf-product-connector img { height: 26px; width: auto; }
.bf-product-connector-name {
  color: #222e3a;
  font-weight: 600;
  font-size: 13px;
}

@keyframes bfReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bf-quickscan {
  position: relative;
  background: var(--bf-dark, #1d2b37);
  color: #fff;
  padding: 64px 0;
  overflow: hidden;
}

.bf-quickscan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/assets/img/bg-quickscan.png');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.bf-quickscan > .container {
  position: relative;
  z-index: 1;
}
.bf-quickscan h2 { color: #fff; font-size: var(--bf-section-title-size); line-height: 1.15; letter-spacing: 0.1px; margin-bottom: 20px; }
.bf-quickscan h3 { color: #fff; }
.bf-quickscan p { color: rgba(255, 255, 255, 0.85); text-transform: none; font-size: 15px; line-height: 26.1px; margin-bottom: 25px; }

.bf-quickscan-interest {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bf-quickscan .bf-quickscan-interest {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bf-accent, #ffb600);
  margin-top: 0;
  margin-bottom: 12px;
}

.bf-quickscan .bf-qs-subline {
  font-family: var(--bf-font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 22.62px;
  text-transform: none !important;
  text-align: left !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

.bf-qs-delivers-col {
  display: flex;
  align-items: flex-start;
}
.bf-qs-delivers {
  padding-left: 40px;
  width: 100%;

  padding-top: 40px;
}
.bf-quickscan .bf-qs-delivers-label {
  font-family: var(--bf-font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.bf-qs-delivers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.bf-qs-delivers-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 22px;
  text-transform: none;
}
.bf-qs-delivers-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2300a1c6' fill-rule='evenodd' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bf-quickscan .bf-btn-accent {
  display: inline-block;
  width: 188.5px;
  white-space: nowrap;
  font-weight: 400;
  padding: 12px 34px;
  border-radius: 8px;
}

html.bf-reveal-ready .bf-reveal.bf-reveal-in {
  will-change: auto;
}

@media (max-width: 991px) {

  .bf-quickscan { padding: 36px 0; }

  .bf-qs-delivers-col { margin-top: 28px; }
  .bf-qs-delivers { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  color: inherit;
  text-decoration: none;
}
.project-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 298 / 166;
  background: #fff;
  padding: 14px 22px;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}
.project-card:hover .project-card-img img {
  transform: scale(1.04);
}

.project-card-img .bf-card-anim {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
  pointer-events: none;
  transition: transform .35s ease;
}
.project-card:hover .project-card-img .bf-card-anim {
  transform: scale(1.04);
}
.project-card-body {
  padding: 20px 24px 24px;

  display: flex;
  flex-direction: column;
}
.project-card-title {
  order: 2;
  font-family: var(--bf-font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--bf-text);
}
.project-card-terms {
  order: 1;
  font-family: var(--bf-font-display);
  font-size: 12px;
  color: var(--bf-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.project-card-desc {
  padding: 14px 24px 20px;
  margin: 0;
  font-size: .92rem;
  line-height: 1.45;
  color: #555;
}

.projectsSwiper .swiper-wrapper { align-items: stretch; }
.projectsSwiper .swiper-slide { height: auto; }
.projectsSwiper .swiper-slide .project-card { height: 100%; }

.bf-news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8eef4;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--bf-transition);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.bf-news-card:focus,
.bf-news-card:active,
.bf-news-card:visited {
  color: inherit;
  text-decoration: none;
}

.bf-news-card .card-img-wrap {
  height: 170px;
  overflow: hidden;
  background-color: #f9fbff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 28px;
}

.bf-news-card .card-img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.bf-blog-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.bf-news-card .card-img-wrap .bf-card-anim {
  height: 100%;
  width: auto;
  max-width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  pointer-events: none;
}

.bf-news-card .card-body {
  padding: 16px 28px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bf-news-card .card-body .bf-card-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 15px;
  font-weight: 700;
  color: var(--bf-text);
  border: 1px solid var(--bf-text);
  background: #fff;
  padding: 8px 16px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--bf-transition);
}

.bf-news-card .card-body .bf-card-link:hover {
  background: var(--bf-text);
  color: #fff;
}

.bf-news-card .card-body .bf-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--bf-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bf-accent, #ffb600);
  margin: 0 0 4px;
}

.bf-news-card .card-body .bf-card-eyebrow + h4 {
  padding-top: 0;
}

.bf-news-card h4 {
  font-size: 18px;
  font-family: var(--bf-font-display);
  font-weight: 900;
  color: var(--bf-text);
  margin: 0;
  padding: 20px 0 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.bf-news-card p {
  font-size: 15px;
  font-family: var(--bf-font-body);
  font-weight: 300;
  color: var(--bf-text);
  line-height: 24px;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsSwiper .swiper-wrapper {
  align-items: stretch;
}

.newsSwiper .swiper-slide {
  height: auto;
}

.newsSwiper .swiper-slide .bf-news-card {
  height: 100%;
}

.bf-news-card:hover {
  border-color: var(--bf-primary);
  cursor: pointer;
}

#bf-blog-cards .bf-news-card .card-body--head,
.newsSwiper .bf-news-card .card-body--head {
  flex: 0 0 auto;
  padding: 20px 28px 10px;

  display: flex;
  flex-direction: column;
}
#bf-blog-cards .bf-news-card .card-body--head .bf-card-eyebrow,
.newsSwiper .bf-news-card .card-body--head .bf-card-eyebrow { order: 1; }
#bf-blog-cards .bf-news-card .card-body--head h4,
.newsSwiper .bf-news-card .card-body--head h4 {
  order: 2;
  padding: 0;
  margin: 0 0 6px;

  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#bf-blog-cards .bf-news-card .card-body--head .bf-card-eyebrow,
.newsSwiper .bf-news-card .card-body--head .bf-card-eyebrow {
  margin: 0 0 4px;
}

#bf-related-articles .bf-news-card .card-body--head {
  flex: 0 0 auto;
  padding: 20px 28px 10px;
  display: flex;
  flex-direction: column;
}
#bf-related-articles .bf-news-card .card-body--head .bf-card-eyebrow { order: 1; margin: 0 0 4px; }
#bf-related-articles .bf-news-card .card-body--head h4 {
  order: 2;
  padding: 0;
  margin: 0 0 6px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsSwiper {
  position: relative;
}

.news-slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}

.news-slider-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--bf-primary);
  z-index: 0;
}

.news-slider-nav button {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--bf-primary);
  background: #fff;
  color: var(--bf-primary);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--bf-transition), border-color var(--bf-transition), color var(--bf-transition);
}

.news-slider-nav button:hover,
.news-slider-nav button:focus-visible {
  background: var(--bf-primary);
  border-color: var(--bf-primary);
  color: #fff;
  outline: none;
}

.bf-faq {
  background: var(--bf-surface);
}

.bf-faq .accordion-item {
  border: 1px solid var(--bf-border-2);
  border-radius: var(--bf-radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.bf-faq .accordion-button {
  font-family: var(--bf-font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--bf-dark);
  background: #fff;
  box-shadow: none;
  padding: 16px 20px;
  gap: 16px;
  text-transform: none;
}

.bf-faq .accordion-button:not(.collapsed) {
  background: rgba(0, 161, 198, 0.05);
  color: var(--bf-primary);
}

.bf-faq .accordion-button:hover {
  color: var(--bf-primary);
}

.bf-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--bf-primary);
}

.bf-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300a1c6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bf-faq .accordion-body {
  font-size: 14px;
  color: var(--bf-text);
  padding: 0 20px 20px;
  text-transform: none;
}

.bf-faq .accordion-body ul {
  padding-left: 20px;
  margin: 8px 0;
}

.bf-faq .accordion-body li {
  margin-bottom: 4px;
  font-size: 14px;
}

.bf-faq #faqAccordion > .bf-faq-cat {
  font-family: var(--bf-font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: #333333;
  text-transform: none;
  letter-spacing: normal;
  margin: 1.5rem 0 0.6rem;
}
.bf-faq #faqAccordion > .bf-faq-cat:first-child {
  margin-top: 0;
}

.bf-faq-cta {
  max-width: 730px;
  margin: 32px 0 0;
  background: #fff;
  border: 1px solid var(--bf-border-2);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--bf-radius-sm);
  padding: 28px 28px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 36px;
}
.bf-faq-cta-title,
.bf-faq-cta-text { grid-column: 1; }
.bf-faq-cta > .bf-faq-cta-text { margin-bottom: 0; }
.bf-faq-cta > a {
  grid-column: 2;
  grid-row: 1 / span 2;
  white-space: nowrap;
  margin: 0;

  padding: 12px 30px;
  border-width: 2px;
  line-height: 24px;
}
.bf-faq-cta > a:hover {
  background: var(--bf-accent);
  color: #fff;
}
@media (max-width: 767.98px) {
  .bf-faq-cta {
    grid-template-columns: 1fr;
  }
  .bf-faq-cta > a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 18px;
    white-space: normal;
  }
}
.bf-faq-cta-title {
  font-family: var(--bf-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bf-text);
  text-transform: none;
  margin: 0 0 8px;
}

.bf-faq-cta > :last-child { margin-bottom: 0; }
.bf-faq-cta-text {
  font-size: 15px;
  color: var(--bf-text);
  text-transform: none;
  margin: 0 0 18px;
}

.bf-faq-cta-wide {
  max-width: none;
}

.bf-cta-section {
  background: transparent;
  padding: 30px 0;
}

.bf-cta-section h2 { color: var(--bf-text); }
.bf-cta-section p { text-transform: none; }
.bf-cta-section .row { --bs-gutter-x: 1.5rem; }

.bf-cta-section .row > div:first-child { flex: 0 0 auto; width: auto; max-width: none; text-align: left; }

.bf-cta-circle-wrap {
  position: relative;
  width: 109px;
  aspect-ratio: 1 / 1;
  margin: 0;
}
.bf-cta-circle-ring {
  width: 100%;
  height: 100%;
  animation: ctaSpin 9s ease-in-out infinite;
}
.bf-cta-circle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  object-fit: contain;
}

.bf-cta-icon-1 { animation: ctaScale1 9s ease infinite; }
.bf-cta-icon-2 { animation: ctaScale2 9s ease infinite; }
.bf-cta-icon-3 { animation: ctaScale3 9s ease infinite; }

@keyframes ctaSpin {
  0%, 30%   { transform: rotate(0deg); }
  33%, 63%  { transform: rotate(120deg); }
  66%, 96%  { transform: rotate(240deg); }
  100%      { transform: rotate(360deg); }
}

@keyframes ctaScale1 {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  5%   { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  28%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  33%  { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes ctaScale2 {
  0%, 30%  { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  38%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  61%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  66%  { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes ctaScale3 {
  0%, 63%  { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  71%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  94%  { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

.bf-contact-section {
  background: var(--bf-dark);
  color: #fff;
}

.bf-contact-section .bf-section-title { color: var(--bf-primary); font-size: var(--bf-section-title-size); }

.bf-form-heading {
  font-family: var(--bf-font-body);
  font-size: 18px;
  font-weight: 700;
  color: #1d2b37 !important;
  margin-bottom: 12px;
  text-transform: none;
}

.bf-required { color: var(--bf-accent); }

.bf-btn-submit {
  background: var(--bf-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  text-transform: none;
  font-family: var(--bf-font-display);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
}
.bf-btn-submit:hover {
  background: var(--bf-accent-hover);
  color: #fff;
}

.bf-form-subtext {
  font-size: 13px;
  color: #6b7785;
  text-transform: none;
}

.bf-contact-form .form-control,
.bf-contact-form .form-select {
  border: 1px solid var(--bf-border-input);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  background: #ffffff;
  color: #1d2b37;
  height: 52px;
  transition: border-color var(--bf-transition), box-shadow var(--bf-transition);
}

.bf-contact-form .form-control::placeholder {
  color: #9aa7b5;
}

.bf-contact-form textarea.form-control {
  height: auto;
  resize: none;
}

.bf-contact-form .form-control:focus,
.bf-contact-form .form-select:focus {
  border-color: var(--bf-primary);
  box-shadow: 0 0 0 3px rgba(0, 161, 198, 0.15);
  background: #ffffff;
  color: #1d2b37;
}

.bf-contact-form .form-check-label {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.bf-contact-form .form-check-input {
  width: 15px;
  height: 15px;
  background-color: #f8f8f8;
  border: none;
  border-radius: 2.25px;
  margin-top: 5px;
  margin-right: 8px;
}

.bf-contact-form .form-check-input:checked {
  background-color: #f8f8f8;
  border-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2300a1c6' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.bf-contact-form .field-error {
  color: var(--bf-danger);
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.bf-contact-form .is-invalid + .field-error,
.bf-contact-form .is-invalid ~ .field-error {
  display: block;
}

.bf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.bf-chips:last-of-type { margin-bottom: 0; }
.bf-chip-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.bf-chip {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--bf-border-input);
  background: #ffffff;
  color: #1d2b37;
  cursor: pointer;
  user-select: none;
  text-transform: none;
  margin: 0;
  position: relative;
  transition: border-color var(--bf-transition), background var(--bf-transition), color var(--bf-transition), padding var(--bf-transition);
}
.bf-chip:hover { border-color: var(--bf-primary); }
.bf-chip-input:checked + .bf-chip {
  border-color: var(--bf-primary);
  padding-left: 40px;
}
.bf-chip-input:checked + .bf-chip::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffb600' fill-rule='evenodd' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.bf-chip-input:focus-visible + .bf-chip {
  box-shadow: 0 0 0 3px rgba(0, 161, 198, 0.25);
}

#contactformulier h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.bf-ticker {
  background: #fff;
  color: #748494;
  overflow: hidden;
  padding: 0 24px;
  white-space: nowrap;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.bf-ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 65s linear infinite;
}

.bf-ticker:hover .bf-ticker-inner {
  animation-play-state: paused;
}

.bf-ticker-item {
  padding: 0 32px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
}

.bf-ticker-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bf-primary);
  flex-shrink: 0;
}

.bf-ticker-label {
  color: var(--bf-primary);
  font-weight: 700;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bf-footer {
  background: var(--bf-dark);
  color: #748494;
  padding: 48px 0 0;
}

.bf-footer h5 {
  color: var(--bf-primary);
  font-size: 16px;
  font-family: var(--bf-font-display);
  font-weight: 900;
  margin-bottom: 16px;
}

.bf-footer a {
  color: #748494;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color var(--bf-transition);
}

.bf-footer a:hover { color: #fff; }

.bf-footer ul { list-style: none; padding: 0; margin: 0; }
.bf-footer ul li { margin-bottom: 8px; font-size: 14px; }

.bf-footer .footer-brand img { width: 195px; height: auto; margin-bottom: 12px; }

.bf-footer .footer-tagline {
  color: var(--bf-line-light);
  font-size: 12px;
  margin: 0;
  padding: 0;
  font-family: var(--bf-font-body);
  font-weight: 300;
  line-height: 1.4;
}

.bf-subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  margin-top: 32px;
  font-size: 13px;
}

.bf-subfooter a { font-size: 13px; }

.bf-sticky-widget {
  position: fixed;
  right: 0;

  top: 57%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--bf-accent);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 0;
  background: transparent;
}

@keyframes bf-sticky-pulse {
  0% { transform: scale(1); }
  25% { transform: scale(0.92); }
  50% { transform: scale(1.15); }
  75% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.bf-sticky-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  background: #fff;
  color: var(--bf-accent);
  text-decoration: none;
  transition: all var(--bf-transition);
  font-size: 20px;
  border: none;
}

.bf-sticky-icon:hover {
  color: var(--bf-accent) !important;
  background: #fff !important;
}

.bf-sticky-icon i,
.bf-sticky-icon img,
.bf-sticky-icon svg {
  animation: bf-sticky-pulse 3s ease-in-out infinite;
}

.bf-sticky-item { position: relative; }
.bf-sticky-item:first-child .bf-sticky-icon { border-radius: 10px 0 0 0; }
.bf-sticky-widget > :last-child .bf-sticky-icon { border-radius: 0 0 0 10px; }

.bf-sticky-label {
  position: absolute;
  right: 53px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #fff;
  color: var(--bf-accent);
  font-family: var(--bf-font-display);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--bf-accent);
  border-right: none;
  border-radius: 8px 0 0 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  text-decoration: none;
}

a.bf-sticky-label:hover {
  color: var(--bf-accent);
  text-decoration: none;
}

.bf-sticky-item:hover > .bf-sticky-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.bf-sticky-panel {
  position: absolute;
  right: 54px;
  top: -1px;
  width: 320px;
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.bf-sticky-item:hover > .bf-sticky-panel,
.bf-sticky-widget .bf-sticky-panel.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

.bf-sticky-panel.bf-sticky-dismissed {
  display: none !important;
}

.bf-sticky-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bf-sticky-panel-title {
  font-family: var(--bf-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bf-primary);
}

.bf-sticky-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;

  padding: 8px;
  margin: -8px;
  line-height: 1;
}

.bf-sticky-panel .form-control {
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
}

.bf-sticky-panel .form-control:focus,
.bf-sticky-panel .form-control:focus-visible {
  border-color: #ddd !important;
  box-shadow: none !important;
  outline: none !important;
}

.bf-sticky-panel .form-control::placeholder {
  color: #999 !important;
  opacity: 1 !important;
}

@media (hover: none) {
  .bf-sticky-panel .form-control,
  .bf-contact-form .form-control,
  .bf-contact-form .form-select {
    font-size: 16px;
  }
}

.bf-sticky-panel .bf-btn-accent {
  background: var(--bf-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
}

.bf-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s, filter 0.3s;
  z-index: 1050;
}
.bf-back-to-top img { width: 100%; height: 100%; object-fit: contain; }
.bf-back-to-top.on-dark {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.4));
}

.bf-back-to-top.visible { opacity: 1; visibility: visible; }
.bf-back-to-top:hover { transform: scale(1.1); }

.bf-breadcrumb { font-size: 13px; color: var(--bf-subtle); }
.bf-breadcrumb a { color: var(--bf-subtle); text-decoration: none; }
.bf-breadcrumb a:hover { color: var(--bf-primary); }

.bf-detail-header {
  background: var(--bf-dark);
  background-image: url('/assets/img/toptaken.svg');
  background-position: 50% -20px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 56px 0 64px;
  color: #fff;
}

.bf-detail-header .bf-breadcrumb { color: #cacaca; margin-top: 30px; font-size: 15px; }
.bf-detail-header .bf-breadcrumb a { color: #fff; font-weight: 600; font-size: 15px; }
.bf-detail-header .bf-breadcrumb a:hover { color: #fff; }

.bf-detail-header h1 {
  font-size: 24px;
  color: #fff;
  margin: 0;
}

.bf-section-surface {
  background: #f9fbff !important;
}

.bf-section-dark {
  background: var(--bf-dark, #1d2b37);
  background-image: url('/assets/img/bg-quickscan.png');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.bf-section-dark h2 { color: #fff; }
.bf-section-dark p,
.bf-section-dark li { color: rgba(255,255,255,0.85); }
.bf-section-dark a { color: var(--bf-primary); }
.bf-section-dark .bf-check-list li::before { color: var(--bf-primary); }
.bf-section-dark .bf-numbered-list { color: rgba(255,255,255,0.85); }

.bf-section-dark .bf-service-card { color: var(--bf-text); }
.bf-section-dark .bf-service-card h3 { color: var(--bf-text); }
.bf-section-dark .bf-service-card p { color: var(--bf-muted); }
.bf-section-dark .bf-service-card li { color: var(--bf-muted); }

.bf-numbered-list {
  list-style: none;
  padding-left: 0;
  margin-left: 18px;
}

.bf-numbered-list li {
  margin-bottom: 0;
  line-height: 26.1px;
  font-size: 15px;
}

.bf-numbered-list li::before {
  content: "▪";
  color: var(--bf-primary, #00a1c6);
  display: inline-block;
  width: 17px;
  margin-left: -17px;
  font-size: 17px;
  line-height: 29.58px;
}

.bf-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.bf-bullet-list li {
  margin-bottom: 2px;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.bf-bullet-list li:last-child {
  margin-bottom: 0;
}

.bf-bullet-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: var(--bf-primary);
  font-size: 12px;
  line-height: 1.9;
}

.bf-section p:has(+ ul),
.bf-section p:has(+ ol) {
  margin-bottom: 0;
}
.bf-section p + ul,
.bf-section p + ol {
  margin-top: 0;
  padding-top: 0;
}

.bf-check-list {
  list-style: none;
  padding-left: 0;
}

.bf-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.bf-check-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bf-primary);
  font-size: 18px;
  font-weight: 700;
}

.bf-quote-img {
  max-width: 570px;
  width: 100%;
  height: auto;
}

.bf-quote-tekst {
  position: relative;
  max-width: 760px;
  margin: 58px auto 0;
  padding: 26px 34px;
  background: #fff;
  border: 1px solid #cfe9f2;
  border-radius: 0;
  text-align: center;
}

.bf-quote-tekst::before {
  content: "\201C";
  position: absolute;
  bottom: calc(100% - 3px);
  left: 50%;
  transform: translateX(-50%);
  font-family: Caveat, cursive;
  font-weight: 600;
  font-size: 52px;
  line-height: 0;
  color: var(--bf-primary);
}

.bf-quote-tekst p {
  margin: 0;
  font-family: Caveat, cursive;

  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 22px);
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--bf-dark);
}

.swiper-button-next, .swiper-button-prev { color: var(--bf-primary) !important; }
.swiper-pagination-bullet-active { background: var(--bf-primary) !important; }

@media (max-width: 1024px) {
  .bf-hero { min-height: 300px; }
  .bf-hero-heading { font-size: 28px; line-height: 34px; padding-top: 60px; }

  .bf-section { padding: 24px 0; }
  .bf-section-compact-bottom { margin-bottom: -12px; }
}

@media (max-width: 767.98px) {
  .bf-detail-header {
    padding: 24px 0 36px;
    background-position: 50% 0;
  }

  .bf-detail-header h1 {
    font-size: 22px;
    line-height: 30.8px;
    letter-spacing: -0.1px;
  }

  .bf-hero {
    min-height: 0;
    overflow: visible;
    position: relative;
    padding-top: 1px;
  }
  .bf-hero-heading {
    font-size: 22px;
    line-height: 30.8px;
    letter-spacing: 0.1px;
    padding-top: 0;
    margin: 0;
    max-width: none;
    position: relative;
    z-index: 2;
  }

  .bf-hero-bg,
  .bf-hero-icons {
    display: none !important;
  }

  .bf-hero-illustration-wrap {
    display: block;
    margin: 16px auto 0;
    padding: 0 var(--bs-gutter-x, 0.75rem);
  }
  .bf-hero-illustration {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .bf-hero-intro {
    margin-top: 16px;
    margin-bottom: 0;
    max-width: none;
  }

  .bf-sticky-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .bf-sticky-icon img,
  .bf-sticky-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .bf-animation-wrapper {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;

    -webkit-mask-image: linear-gradient(to right, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, #000 88%, transparent 100%);
  }
  .bf-animation-wrapper .bf-animation-iframe {

    min-width: 600px;
    width: 600px;
  }

  #ontwikkelproces .bf-animation-wrapper {
    overflow-x: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  #ontwikkelproces .bf-animation-iframe {
    min-width: 0 !important;
    width: 100% !important;
  }
  .bf-hero-icon { width: 35px; height: 35px; }
  .bf-section { padding: 20px 0; }
  .bf-section-compact-bottom { margin-bottom: -10px; }
  .bf-topbar { font-size: 12px; }
  .bf-topbar .bf-btn-accent { display: block; margin: 8px auto 0; }

  .bf-ticker-inner { animation-duration: 28s; }
  .bf-footer .row > [class*="col-"] { margin-bottom: 24px; }
  .bf-subfooter { text-align: center; }
  .bf-subfooter .d-flex { flex-direction: column; gap: 8px; }

  .bf-diensten-section .row > .col-md-4,
  #voorbeeldprojecten .row > .col-md-4 {
    width: 100%;
    max-width: 100%;
  }

  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
  }
  .bf-back-to-top {
    width: 44px;
    height: 44px;
  }

  .row > [class*="col-lg-"][style*="max-width"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.bf-wegwijzer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #dde5ec;
}
.bf-wegwijzer-arrow {
  flex: 0 0 auto;
  color: var(--bf-primary, #00a3c4);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.65;
}
.bf-wegwijzer p { margin: 0; }
.bf-wegwijzer a {
  color: var(--bf-primary, #00a3c4);
  font-weight: 600;
  text-decoration: none;
}
.bf-wegwijzer a:hover { text-decoration: underline; }

.bf-animation-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 0 0;
  overflow: hidden;
  background: transparent;
}

.bf-animation-iframe {
  display: block;
  width: 100%;
  aspect-ratio: 960 / 580;
  border: none;
}

@media (max-width: 991.98px) {
  .bf-section .container > .row:has(iframe[src*="quickscan-animatie"]) + p {
    margin-top: 28px;
  }
}

@media (max-width: 767.98px) {
  iframe[src*="baseflow-animatie"],
  iframe[src*="portflow-animatie"] {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}
@media (min-width: 768px) {
  iframe[src*="baseflow-animatie"],
  iframe[src*="portflow-animatie"] {
    margin-left: -7px;
  }
}

@media (max-width: 767.98px) {
  .bf-animation-wrapper:has(iframe[src*="connectflow-werking"]) {
    overflow-x: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .bf-animation-wrapper:has(iframe[src*="connectflow-werking"]) .bf-animation-iframe {
    min-width: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 575.98px) {
  .bf-moniflow-embed {
    aspect-ratio: 24 / 25 !important;
  }
}

iframe {
  color-scheme: light;
}

.bf-form-column-label {
  font-family: var(--bf-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--bf-primary) !important;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p, li, .accordion-body, .card-body p, .bf-section-text,
.bf-service-card p, .bf-news-card p,
.bf-footer .tagline, .bf-subfooter,
.bf-topbar, .bf-ticker-item, .bf-term, .bf-hero-intro,
.bf-form-heading, .bf-form-subtext, .form-check-label,
.bf-card-link, label, .form-label {
  text-transform: none;
}

#project-filter {
  text-align: center;
  margin-bottom: 40px;
}
#project-filter .inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
#project-filter .cbp-filter-item {
  display: inline-block;
  cursor: pointer;
  font-family: var(--bf-font-display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 28px;
  color: var(--bf-dark);
  padding: 6px 16px;
  transition: color 0.2s;
}
#project-filter .cbp-filter-item:hover,
#project-filter .cbp-filter-item.active {
  color: var(--bf-primary);
}
#project-filter .cbp-filter-item > span {
  position: relative;
}
#project-filter .cbp-filter-item > span:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--bf-accent);
  opacity: 0;
  transition: opacity 0.2s;
}
#project-filter .cbp-filter-item.active > span:after {
  opacity: 0;
}
#project-filter .cbp-filter-item.active {
  color: var(--bf-primary);
  font-weight: 900;
}

.project-box .project-image {
  position: relative;
}
.project-box .project-image > .inner {
  position: relative;
  overflow: hidden;
}
.project-box .project-image > .inner img {
  width: 100%;
  height: auto;
  display: block;
}

.project-box .project-image > .inner:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--bf-accent);
  display: block;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.95);
  transition: transform ease 0.35s, opacity ease 0.35s;
}
.project-box .project-image:hover > .inner:after {
  transform: scale(1);
  opacity: 0.9;
}

.project-box .project-text .title {
  opacity: 0;
  font-size: 16px;
  padding: 0 0 12px;
  margin: 0 0 0 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
  transition-duration: 0.35s;
  transition-property: opacity, padding, margin;
}
.project-box:hover .project-text .title {
  margin-left: 0;
  opacity: 1;
}
.project-box .project-text .title a {
  color: #fff !important;
  text-decoration: none;
}

a.project-box.style-2 {
  display: block;
  text-decoration: none;
}

.project-box.style-2 .project-image > .title {
  font-family: var(--bf-font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.1px;
  margin: 13px 0 6px 16px;
  color: var(--bf-text);
  text-transform: uppercase;
  transition: color ease 0.3s;
}

.project-box.style-2 .project-image > .terms {
  font-family: var(--bf-font-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--bf-subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 13px 16px;
}

.project-box .project-image > .inner:after {
  display: none !important;
}

.project-box .project-image .project-text {
  display: none !important;
}

.project-box .project-image > .inner {
  aspect-ratio: 5 / 2;
}
.project-box .project-image > .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bf-project-meta .label {
  color: #00a1c6;
  font-weight: 700;
}
.bf-project-meta p {
  margin-bottom: 5px;
}
.bf-project-meta .value {
  font-weight: 700;
}

.grecaptcha-badge {
  visibility: hidden !important;
}
.bf-recaptcha-notice {
  font-size: 11px;
  color: #748494;
  margin-top: 8px;
  margin-bottom: 0;
}

.bf-recaptcha-notice a,
.bf-recaptcha-notice a:hover {
  color: var(--bf-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bf-recaptcha-notice + .bf-recaptcha-notice { margin-top: 12px; }

@media (min-width: 992px) {

  main > section > .container {
    padding-right: 60px;
  }

  .bf-navbar .collapse.navbar-collapse,
  .bf-navbar .navbar-collapse.collapse,
  header.bf-navbar .navbar-collapse,
  #mainNav .navbar-collapse,
  #navbarNav.collapse {
    display: flex !important;
    flex-basis: auto !important;
    visibility: visible !important;
    height: auto !important;
  }
  .bf-navbar .navbar-toggler,
  #mainNav .navbar-toggler {
    display: none !important;
  }
  .bf-navbar .navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .bf-footer .row {
    justify-content: space-between !important;
  }
  .bf-footer .row > .col-lg-3:first-child {
    flex: 0 0 calc(25% - 6px) !important;
    max-width: calc(25% - 6px) !important;
  }
  .bf-footer .row > .col-lg-2,
  .bf-footer .row > .col-lg-3:last-child {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
  }

  .bf-navbar .navbar-brand {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
    margin-right: 0 !important;
  }
  .bf-navbar .navbar-collapse {
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    flex-basis: 71% !important;
    max-width: 71% !important;
    width: 71% !important;
    justify-content: flex-start !important;
  }
  .bf-navbar .navbar-nav {
    width: 100% !important;
    justify-content: space-between !important;
  }
  header.bf-navbar .navbar .navbar-nav .nav-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .bf-navbar .nav-link:focus,
  .bf-navbar .nav-link:focus-visible,
  .bf-navbar .dropdown-toggle:focus,
  .bf-navbar .dropdown-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }

  .bf-navbar .dropdown-menu .dropdown-item {
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    color: #333 !important;
  }
  .bf-navbar .dropdown-menu .dropdown-item:hover {
    color: var(--bf-primary, #00a1c6) !important;
  }

  .bf-vb-col-btn {
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 24px;
    padding-left: 15px;
    text-align: right;
  }
}

@media (min-width: 992px) and (max-width: 1119.98px) {
  .bf-vb-col-text { flex: 0 0 56%; max-width: 56%; }
  .bf-vb-col-btn  { flex: 0 0 26%; max-width: 26%; }
}

.bf-hero-bg,
.bf-hero-icons {

  transform-origin: 50% 50%;
}

@media (max-width: 1199.98px) and (min-width: 768px) {

  .bf-hero {
    overflow-x: clip;
    overflow-y: visible;
    position: relative;

    padding-top: 1px;
  }

  .bf-hero-bg,
  .bf-hero-icons {
    display: none !important;
  }
  .bf-hero-stack {
    display: grid;
    grid-template-columns: 1fr;
  }
  .bf-hero-stack > .container {
    grid-area: 1 / 1;
    min-width: 0;
    align-self: start;
  }
  .bf-hero-stack > .bf-hero-illustration-wrap { z-index: 0; }
  .bf-hero-stack > .container:not(.bf-hero-illustration-wrap) { z-index: 2; }

  .bf-hero-illustration-wrap {
    display: block;
    margin: 0;
    padding: 0 var(--bs-gutter-x, 0.75rem);
  }
  .bf-hero-illustration {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .bf-hero-illustration-wrap a { pointer-events: auto; }

  .bf-hero-heading {
    margin-left: calc(5vw - 12px);
    font-size: 28px !important;
    line-height: 34px !important;
    padding-top: 20px;
    margin-top: 0 !important;
    margin-bottom: 0;
    pointer-events: none;

    text-shadow: 0 0 6px rgba(255, 255, 255, 0.95), 0 0 14px rgba(255, 255, 255, 0.85);
  }
}

@media (max-width: 1199.98px) and (min-width: 1100px) {
  :root { --bf-hero-scale: 0.92; }
  .bf-hero-bg, .bf-hero-icons { top: -143px; }
  .bf-toptaak-optimalisatie { left: 78.3vw; width: 82px; height: 84px; }

  .bf-hero-heading { font-size: 30px !important; line-height: 38px !important; }

  .bf-hero-heading {
    max-width: 60vw;
    margin-top: 60px;
  }
}
@media (max-width: 1099.98px) and (min-width: 1000px) {
  :root { --bf-hero-scale: 0.82; }
  .bf-hero-bg, .bf-hero-icons { top: -157px; }
  .bf-toptaak-optimalisatie { left: 81.7vw; width: 85px; height: 87px; }
}

@media (max-width: 999.98px) and (min-width: 992px) {
  :root { --bf-hero-scale: 0.72; }
  .bf-hero-bg, .bf-hero-icons { top: -195px; }
  .bf-toptaak-optimalisatie { left: 86.1vw; width: 93px; height: 95px; }
}

@media (max-width: 991.98px) and (min-width: 950px) {
  :root { --bf-hero-scale: 0.72; }
  .bf-hero-bg, .bf-hero-icons { top: -145px; }
  .bf-toptaak-optimalisatie { left: 86.1vw; width: 93px; height: 95px; }

  .bf-hero-heading { font-size: 32px !important; line-height: 40px !important; }

  .bf-hero-heading {
    max-width: 67.7vw;
    margin-top: 56px;
  }
}
@media (max-width: 949.98px) and (min-width: 900px) {
  :root { --bf-hero-scale: 0.72; }
  .bf-hero-bg, .bf-hero-icons { top: -156px; }
  .bf-toptaak-optimalisatie { left: 86.1vw; width: 85px; height: 86px; }

  .bf-hero-heading { font-size: 28px !important; line-height: 36px !important; }

  .bf-hero-heading {
    max-width: 67.7vw;
    margin-top: 46px;
  }
}
@media (max-width: 899.98px) and (min-width: 820px) {
  :root { --bf-hero-scale: 0.6; }
  .bf-hero-bg, .bf-hero-icons { top: -171px; }
  .bf-toptaak-optimalisatie { left: 93.3vw; width: 92px; height: 95px; }

  .bf-hero-heading { font-size: 26px !important; line-height: 33px !important; }

  .bf-hero-heading {
    max-width: 67.7vw;
    margin-top: 42px;
  }
}
@media (max-width: 819.98px) and (min-width: 768px) {

  :root { --bf-hero-scale: 0.6; }
  .bf-hero-bg, .bf-hero-icons { top: -114px; }
  .bf-toptaak-optimalisatie { left: 93.3vw; width: 87px; height: 88px; }

  .bf-hero-heading { font-size: 32px !important; line-height: 41px !important; }

  .bf-hero-heading {
    max-width: 86.2vw;
    margin-top: 18px;
  }
}
@media (max-width: 767.98px) and (min-width: 600px) {
  :root { --bf-hero-scale: 0.5; }
  .bf-hero-bg, .bf-hero-icons { top: -147px; }
  .bf-toptaak-optimalisatie { left: 102vw; width: 80px; height: 84px; }

  .bf-hero-heading { font-size: 26px !important; line-height: 32px !important; }

  .bf-hero-heading {
    max-width: 86.2vw;
    margin-top: 14px;
  }
}
@media (max-width: 599.98px) and (min-width: 480px) {
  :root { --bf-hero-scale: 0.5; }
  .bf-hero-bg, .bf-hero-icons { top: -164px; }
  .bf-toptaak-optimalisatie { left: 102vw; width: 64px; height: 66px; }

  .bf-hero-heading { font-size: 20px !important; line-height: 26px !important; }

  .bf-hero-heading {
    max-width: 86.2vw;
    margin-top: 12px;
  }
}
@media (max-width: 479.98px) {
  :root { --bf-hero-scale: 0.32; }
  .bf-toptaak-optimalisatie { left: 131.25vw; width: 78px; height: 81px; }

}

@media (max-width: 1099.98px) and (min-width: 992px) {
  .bf-hero-heading {
    max-width: 60vw;
    margin-top: 53px;
  }
}

.bf-nav-overlay  { display: none; }
.bf-drawer-brand { display: none; }
.bf-drawer-close { display: none; }

@media (max-width: 991.98px) {

  .bf-diensten-section .row > .col-md-4,
  #voorbeeldprojecten .row > .col-md-4 {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%;
  }
}

@media (max-width: 767.98px) {
  .bf-diensten-section .row > .col-md-4,
  #voorbeeldprojecten .row > .col-md-4,
  .bf-diensten-section .row > [class*="col-md-"],
  #voorbeeldprojecten .row > [class*="col-md-"] {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .bf-diensten-section .container {
    padding-left: 19.5px;
    padding-right: 19.5px;
  }
}

@media (max-width: 991.98px) {

  .bf-navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(85vw, 320px);
    height: 100vh !important;
    max-width: 100%;
    background: #1d2b37;
    z-index: 10000;
    display: block !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    padding: 32px 24px 24px;
    overflow-y: auto;

    margin: 0 !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  }

  .bf-navbar .navbar-collapse.show,
  .bf-navbar .navbar-collapse.collapsing {
    transform: translateX(0);
  }

  html.bf-resizing .bf-navbar .navbar-collapse {
    transition: none !important;
  }

  .bf-drawer-brand {
    display: block;
    margin: 4px 0 24px;
    text-align: left;
  }
  .bf-drawer-brand img {
    width: 140px;
    height: auto;
    display: block;
  }

  .navbar-collapse.show ~ .bf-drawer-close,
  .navbar-collapse.collapsing ~ .bf-drawer-close {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
  }
  .bf-drawer-close:hover,
  .bf-drawer-close:focus {
    color: var(--bf-primary, #00a1c6);
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] {
    display: none;
  }

  .bf-navbar .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    gap: 0;
    padding-left: 0 !important;
    margin-left: 0 !important;
    list-style: none;
  }
  header.bf-navbar .navbar .navbar-nav .nav-item {

    margin: 0 !important;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  header.bf-navbar .navbar .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  header.bf-navbar .navbar .navbar-nav .nav-item .nav-link {

    padding: 16px 0 16px 11px !important;
    line-height: 1.3 !important;
    color: #fff !important;
    width: 100%;
  }
  header.bf-navbar .navbar .navbar-nav .nav-item .nav-link:hover,
  header.bf-navbar .navbar .navbar-nav .nav-item .nav-link:focus,
  header.bf-navbar .navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--bf-primary, #00a1c6) !important;
  }

  .bf-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(29, 43, 55, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    cursor: pointer;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .bf-navbar:has(.navbar-collapse.show) .bf-nav-overlay,
  .bf-navbar:has(.navbar-collapse.collapsing) .bf-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .bf-topbar {
    display: none;
  }

  body { padding-top: var(--bf-navbar-height) !important; }
  .bf-navbar { top: 0 !important; }

  .bf-faq .row > .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

.bf-blog-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 30px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 161, 198, .14);
  border-radius: 16px;
  background: #f0f9fc;
}

.bf-blog-filter .bf-filter-row {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin: 0;
  padding: 0;
}

.bf-blog-filter .bf-chip {
  flex: 0 0 auto;
  min-height: 34px;
  margin: 0;
  padding: 7px 14px;
  font-family: var(--bf-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--bf-subtle);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition:
    color var(--bf-transition),
    border-color var(--bf-transition),
    background var(--bf-transition),
    box-shadow var(--bf-transition);
}
.bf-blog-filter .bf-chip:hover {
  color: var(--bf-text);
  background: rgba(255, 255, 255, .7);
}
.bf-blog-filter .bf-chip:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 161, 198, .28);
}
.bf-blog-filter .bf-chip.is-active,
.bf-blog-filter .bf-chip[aria-pressed="true"] {
  color: #006e87;
  font-weight: 600;
  border-color: rgba(0, 161, 198, .3);
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 80, 100, .12);
}

.bf-blog-filter .bf-filter-meta {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 2px 6px 2px 14px;
  border-left: 1px solid rgba(0, 80, 100, .1);
  font-family: var(--bf-font-body);
  font-size: 13px;
  color: var(--bf-subtle);
  white-space: nowrap;
}
.bf-blog-filter .bf-filter-count strong {
  color: var(--bf-text);
  font-weight: 700;
}
.bf-blog-filter .bf-filter-reset {
  font-family: var(--bf-font-body);
  font-size: 13px;
  color: var(--bf-primary);
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}
.bf-blog-filter .bf-filter-reset:hover { text-decoration: underline; }
.bf-blog-filter .bf-filter-reset:focus-visible {
  outline: 2px solid rgba(0, 161, 198, .4);
  outline-offset: 3px;
}

.bf-blog-filter + .bf-product-grid { margin-top: 0; }

@media (max-width: 767px) {
  .bf-blog-filter {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    padding: 8px;
    border-radius: 14px;
  }
  .bf-blog-filter .bf-filter-row {
    width: 100%;
  }
  .bf-blog-filter .bf-chip {
    min-height: 36px;
  }
  .bf-blog-filter .bf-filter-meta {
    justify-content: space-between;
    margin: 0;
    padding: 7px 4px 1px;
    border-top: 1px solid rgba(0, 80, 100, .1);
    border-left: 0;
  }
}

.bf-blog-empty {
  text-align: center;
  margin-top: 24px;
  padding: 36px 20px;
  color: #748494;
  border: 1px dashed #d7e0e7;
  border-radius: 14px;
  background: #f9fbfc;
}
.bf-blog-empty p { margin-bottom: 16px; }

.bf-blog-card[hidden],
.bf-product-card[hidden] { display: none !important; }

.bf-voordeel-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bf-voordeel-card { background: #fff; border: 1px solid #e8eef4; border-radius: 16px; padding: 28px 24px 24px; }
.bf-voordeel-card .bf-voordeel-kop { color: var(--bf-text); font-weight: 600; font-size: 15.5px; line-height: 1.3; margin: 0 0 18px; text-transform: none; }
.bf-voordeel-lijst { list-style: none; margin: 0; padding: 0; }
.bf-voordeel-lijst li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.55; margin: 0 0 12px; text-transform: none; }
.bf-voordeel-lijst li:last-child { margin-bottom: 0; }
.bf-voordeel-lijst li::before { content: "\2022"; color: var(--bf-primary); position: absolute; left: 0; top: -1px; font-size: 15px; }
.bf-voordeel-titel { color: var(--bf-primary); font-weight: 500; }
@media (max-width: 768px) { .bf-voordeel-cards { grid-template-columns: 1fr; gap: 16px; } }

.bf-cta-subline {
  font-family: var(--bf-font-body);
  font-size: 13px;
  font-weight: 300;
  color: #6b7785 !important;
  line-height: 22.62px;
  text-transform: none !important;
  margin-top: 8px !important;
}

:root { --bf-primary-light: #00cbf9; }

body .bf-voordeel-card,
body .bf-news-card,
body .bf-product-card,
body .bf-team-card,
body .bf-feature-block,
body .project-card,
body .bf-service-card:not(.bf-diensten-stack *) {
  border: 1px solid rgba(16, 26, 34, .10);
  border-radius: 16px;
  background: #fff;
}
body .bf-voordeel-card:hover,
body .bf-news-card:hover,
body .bf-product-card:hover,
body .bf-team-card:hover,
body .bf-feature-block:hover,
body .project-card:hover,
body .bf-service-card:not(.bf-diensten-stack *):hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 40px rgba(8, 25, 36, .08);
  border-color: var(--bf-primary);
}

body .bf-section:not(.bf-diensten-section) h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

body .bf-section .bf-term {
  border-bottom: 1px dotted var(--bf-primary);
  text-decoration: none;
}

body .bf-section p a,
body .bf-section li a,
body .bf-cta-section p a,
body .bf-cta-section li a {
  color: var(--bf-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

body .bf-section .bf-bullet-list,
body .bf-section .bf-voordeel-lijst,
body .bf-section .bf-numbered-list,
body .bf-section .bf-check-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
body .bf-section .bf-bullet-list li,
body .bf-section .bf-voordeel-lijst li,
body .bf-section .bf-numbered-list li,
body .bf-section .bf-check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 4px;
  line-height: 1.74;
}
body .bf-section .bf-bullet-list li::before,
body .bf-section .bf-voordeel-lijst li::before,
body .bf-section .bf-numbered-list li::before,
body .bf-section .bf-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  margin-left: 0;
  border-radius: 2px;
  background: var(--bf-primary);
}

body .bf-cta-subline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body .bf-cta-subline::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bf-primary);
}

body .bf-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

body .bf-section-dark .bf-term { border-bottom-color: var(--bf-primary-light); }
body .bf-section-dark p a, body .bf-section-dark li a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

body .bf-section-dark .bf-service-card .bf-term { border-bottom-color: var(--bf-primary); }
body .bf-section-dark .bf-service-card p a,
body .bf-section-dark .bf-service-card li a { color: var(--bf-primary); }

.ww-pin-wrap{position:relative;}
.ww-pin{position:static;}

.ww-layout{display:grid;grid-template-columns:420px 1fr;gap:48px;align-items:start;width:100%;}

.ww-anchor-text{display:grid;}
.ww-anchor-text > p{grid-area:1 / 1;margin:0;max-width:48ch;transition:opacity .6s ease, transform .6s ease;}
.anchor-a{opacity:1;transform:none;}
.anchor-a.hide{opacity:0;transform:translateY(-12px);pointer-events:none;}
.anchor-b{opacity:0;transform:translateY(12px);pointer-events:none;}
.anchor-b.show{opacity:1;transform:none;pointer-events:auto;}

.ww-stage{display:grid;}
.ww-stage > *{grid-area:1 / 1;}
.ww-cards{display:grid;gap:14px;align-content:start;pointer-events:none;}

.ww-card{background:#fff;border:1px solid rgba(16,26,34,.10);border-radius:16px;padding:24px 26px 26px;opacity:0;transform:translateY(24px);transition:opacity .6s ease, transform .6s ease;}
.ww-card.in{opacity:1;transform:none;pointer-events:auto;}
.ww-card:not(.in){pointer-events:none;}
.ww-card:hover{transform:translateY(-6px);box-shadow:0 14px 40px rgba(8,25,36,.08);border-color:var(--bf-primary);transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;}

.ww-card h3{color:var(--bf-text);font-family:var(--bf-font-display);font-weight:900;font-size:18px;line-height:1.1;letter-spacing:-.01em;margin:0 0 8px;}
.ww-card p{font-size:15px;line-height:1.55;margin:0;}

.ww-method{padding:18px 0 0;}
.ww-method-inner{max-width:760px;margin:0 auto;opacity:0;transform:translateY(28px);transition:opacity .7s ease, transform .7s ease;}
.ww-method-inner.in{opacity:1;transform:none;}

@media (max-width:991.98px){
  .ww-layout{grid-template-columns:1fr;gap:26px;}
  .ww-card{padding:20px 22px 22px;}
}
@media (prefers-reduced-motion:reduce){
  .ww-card,.ww-anchor-text > p,.ww-method-inner{transform:none;}
}

.ww-anim{max-height:0; opacity:0; overflow:hidden; margin:0 auto; max-width:760px;
  transition:max-height .6s ease, opacity .55s ease, margin-top .6s ease;}
.ww-anim.in{max-height:400px; opacity:1; margin-top:18px;}
@media (prefers-reduced-motion:reduce){ .ww-anim{transition:none;} }

::selection { background: var(--bf-primary); color: #fff; }
::-moz-selection { background: var(--bf-primary); color: #fff; }

iframe {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--bf-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.bf-skip-link {
  position: absolute;
  left: 8px;
  top: -56px;
  z-index: 10000000;
  padding: 8px 16px;
  background: var(--bf-primary);
  color: #fff;
  font-family: var(--bf-font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: top .2s ease;
}
.bf-skip-link:focus { top: 8px; }
.bf-skip-link:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .bf-skip-link { transition: none; } }

#bf-blog-cards > .bf-blog-featured { flex: 0 0 100%; max-width: 100%; }
.bf-featured-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 280px;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(16, 26, 34, 0.10);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.bf-featured-card:hover {
  border-color: var(--bf-primary, #00a1c6);
  box-shadow: 0 12px 34px rgba(0, 63, 95, 0.10);
  transform: translateY(-4px);
}

.bf-featured-card::before,
.bf-featured-card::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.bf-featured-card::before {
  left: -95px; width: 350px; height: 350px;
  border: 1px dashed rgba(16, 26, 34, 0.07);
}
.bf-featured-card::after {
  left: -35px; width: 230px; height: 230px;
  border: 1px solid rgba(16, 26, 34, 0.05);
}
.bf-featured-content {
  position: relative;
  z-index: 1;
  flex: 1 1 54%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
}
.bf-featured-media {
  position: relative;
  z-index: 1;
  flex: 0 0 46%;
  align-self: stretch;
  background: #f9fbff;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bf-featured-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.bf-featured-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--bf-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bf-accent, #ffb600);
  margin-bottom: 14px;
}
.bf-featured-title {
  font-family: var(--bf-font-display);
  font-weight: 900;
  color: var(--bf-dark, #1d2b37);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.15;
  margin: 0 0 14px;
  text-transform: none;
}
.bf-featured-teaser {
  color: var(--bf-text, #333333);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bf-featured-card .bf-featured-teaser {
  margin-bottom: 14px;
  flex-shrink: 0;
}
.bf-featured-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--bf-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--bf-primary, #00a1c6);
}
.bf-featured-link::after {
  content: "\2192";
  transition: transform .2s;
}
.bf-featured-card:hover .bf-featured-link::after { transform: translateX(3px); }

@media (min-width: 768px) {
  .bf-featured-card { height: 300px; }
}

@media (max-width: 767.98px) {
  .bf-featured-card { flex-direction: column; }
  .bf-featured-content { flex-basis: auto; padding: 26px 24px; }
  .bf-featured-media { flex-basis: auto; width: 100%; height: 200px; }
  .bf-featured-card::before, .bf-featured-card::after { display: none; }
}

.bf-proces-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }

.bf-proces-steps + p,
.bf-proces-steps-4 + p { margin-top: 30px; }
.bf-proces-step {
  position: relative; background: #fff; border: 1px solid rgba(16,26,34,.10);
  border-radius: 18px; padding: 34px 26px 26px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.bf-proces-step:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(16,26,34,.10); border-color: var(--bf-primary); }
.bf-proces-step .bf-proces-num {
  position: absolute; top: -22px; left: 26px; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff;
  background: linear-gradient(135deg, var(--bf-primary-light), var(--bf-primary));
  box-shadow: 0 8px 20px rgba(0,161,198,.38);
}
.bf-proces-step h3 { color: var(--bf-dark); font-weight: 900; font-size: 17px; margin: 14px 0 8px; line-height: 1.25; }
.bf-proces-step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--bf-text); }
.bf-proces-step p a { color: var(--bf-primary); text-decoration: underline; text-underline-offset: 2px; }
.bf-proces-step.bf-proces-finish { background: linear-gradient(160deg, #12212e, var(--bf-dark)); border-color: transparent; }
.bf-proces-step.bf-proces-finish .bf-proces-num { background: linear-gradient(135deg, #ffcf4d, var(--bf-accent)); box-shadow: 0 8px 20px rgba(255,182,0,.4); color: var(--bf-dark); }
.bf-proces-step.bf-proces-finish h3 { color: #fff; }
.bf-proces-step.bf-proces-finish p { color: #c7d2dc; }
@media (max-width: 820px) { .bf-proces-steps { grid-template-columns: 1fr; } }

.bf-proces-steps-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 1000px) { .bf-proces-steps-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .bf-proces-steps-4 { grid-template-columns: 1fr; } }

@media (max-width: 991.98px) {
  .row.g-5 { --bs-gutter-x: 1.5rem; }
}

@media (max-width: 991.98px) {
  .bf-sticky-panel { max-width: calc(100vw - 68px); }
}

.bf-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.bf-stat {
  background: #fff;
  border: 1px solid rgba(16,26,34,.10);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(16,26,34,.05);
}
.bf-stat-num {
  display: block;
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
  color: var(--bf-primary);
  letter-spacing: -0.5px;
}
.bf-stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--bf-text);
}
@media (max-width: 560px) {
  .bf-stats { grid-template-columns: 1fr; gap: 16px; }
}

.bf-stat-highlight {
  display: flex;
  align-items: center;
  gap: 34px;
  background: var(--bf-surface);
  border: 1px solid rgba(16,26,34,.10);
  border-radius: 18px;
  padding: 32px 36px;
  margin-top: 8px;
  box-shadow: 0 18px 50px rgba(16,26,34,.06);
}
.bf-stat-highlight-figure { flex: 0 0 auto; min-width: 200px; text-align: center; }
.bf-stat-highlight-num {
  display: block;
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1;
  color: var(--bf-primary);
  letter-spacing: -1px;
}
.bf-stat-highlight-unit {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bf-muted);
}
.bf-stat-highlight-body { margin: 0; color: var(--bf-text); }
@media (max-width: 700px) {
  .bf-stat-highlight { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; }
  .bf-stat-highlight-figure { min-width: 0; text-align: left; }
}

.bf-inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  margin-top: 26px;
  padding: 22px 28px;
  border-radius: 16px;
  background: var(--bf-surface);
  border: 1px solid rgba(16,26,34,.10);
}
.bf-inline-cta p { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--bf-dark); }
.bf-inline-cta .bf-btn-accent { flex: 0 0 auto; white-space: nowrap; color: #fff; }

.bf-section-dark .bf-inline-cta { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.bf-section-dark .bf-inline-cta p { color: #fff; }
@media (max-width: 575px) {
  .bf-inline-cta { padding: 20px 22px; }
  .bf-inline-cta .bf-btn-accent { width: 100%; text-align: center; }
}

.bf-wijspijl { display: inline-flex; align-items: center; margin-left: 8px; vertical-align: middle; color: var(--bf-primary); }
.bf-wijspijl .bf-arrow-down { display: none; }
.bf-wijspijl .bf-arrow-right { animation: bfNudgeX 1.5s ease-in-out infinite; }
@media (max-width: 991.98px) {
  .bf-wijspijl .bf-arrow-right { display: none; }
  .bf-wijspijl .bf-arrow-down { display: inline-block; animation: bfNudgeY 1.5s ease-in-out infinite; }
}
@keyframes bfNudgeX { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@keyframes bfNudgeY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) {
  .bf-wijspijl .bf-arrow-right,
  .bf-wijspijl .bf-arrow-down { animation: none; }
}

p.bf-ww-wijs { margin-bottom: 0; }
.ww-anchor-text + p.bf-ww-wijs { margin-top: 22px; }

.bf-project-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px 32px; }
.bf-project-meta p { margin-bottom: 0; }
@media (max-width: 767.98px) {
  .bf-project-meta { grid-template-columns: 1fr; gap: 4px; }
}

.bf-schets { margin: 28px 0 0; max-width: 860px; }
.bf-schets img { width: 100%; height: auto; display: block; border-radius: 16px; }

[class*="col-"] > .bf-schets { margin: 0; max-width: 100%; }

.project-card {
  display: flex;
  flex-direction: column;
}
.project-card .bf-card-link {
  align-self: flex-start;
  margin: auto 24px 20px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bf-text);
  border: 1px solid var(--bf-text);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all var(--bf-transition);
}
.project-card .bf-card-link:hover {
  background: var(--bf-text);
  color: #fff;
}

.bf-koppel-lijst {
  margin: 0;
  columns: 2;
  column-gap: 34px;
}
.bf-koppel-lijst > div {
  break-inside: avoid;
  margin-bottom: 13px;
}

.bf-koppel-lijst dt {
  font-family: var(--bf-font-display);
  font-weight: 700;
  color: var(--bf-text);
  margin-bottom: 2px;
}
.bf-koppel-lijst dd {
  margin: 0;
  color: var(--bf-text);
}

.bf-koppel-lijst dd .sep {
  color: var(--bf-primary);
}
@media (max-width: 767.98px) {
  .bf-koppel-lijst { columns: 1; }
}

.bf-modal-head {
  border-bottom: 1px solid rgba(16, 26, 34, .10);
  padding: 18px 40px 0;
  align-items: flex-start;
  gap: 20px;
}
.bf-modal-head .btn-close {
  flex: 0 0 auto;
  margin: 6px 0 0 auto;
}
.bf-modal-tabs {
  flex-wrap: wrap;
  margin-bottom: -1px;
}
.bf-modal-tabs .nav-item + .nav-item { margin-left: 26px; }
.bf-modal-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px 13px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: none;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--bf-muted);
  transition: color .18s ease, border-color .18s ease;
}
.bf-modal-tabs .nav-link:hover { color: var(--bf-text); }
.bf-modal-tabs .nav-link.active {
  color: var(--bf-text);
  border-bottom-color: var(--bf-primary);
}
.bf-tab-count {
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(0, 161, 198, .12);
  color: var(--bf-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.bf-modal-tabs .nav-link.active .bf-tab-count {
  background: var(--bf-primary);
  color: #fff;
}
@media (max-width: 575.98px) {
  .bf-modal-head { padding: 14px 22px 12px; gap: 8px; flex-wrap: nowrap; }
}

@media (max-width: 991.98px) {
  .bf-modal-tabs {
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    margin-bottom: 0;
    gap: 4px;
  }
  .bf-modal-tabs .nav-item { width: 100%; }
  .bf-modal-tabs .nav-item + .nav-item { margin-left: 0; }
  .bf-modal-tabs .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 9px 12px;
    border-bottom: 0;
    border-radius: 8px;
    font-size: 14px;
  }
  .bf-modal-tabs .nav-link.active { background: rgba(0, 161, 198, .09); }
}

.modal .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d2b37'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px auto;
  filter: none;
  opacity: .5;
  transition: opacity .18s ease;
}
.modal .btn-close:hover { opacity: 1; }
.bf-btn-busy {
  position: relative;
  pointer-events: none;
  cursor: progress;
}

.bf-btn-busy > * {
  opacity: 0.35;
}

.bf-btn-busy::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 1;
  animation: bf-btn-spin 0.6s linear infinite;
}

@keyframes bf-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bf-btn-busy::after {
    animation-duration: 2s;
  }
}

body.bf-verzenden,
body.bf-verzenden * {
  cursor: progress !important;
}
