/**
 * Theme Name: YOOtheme
 * Theme URI: https://yootheme.com
 * Description: A powerful, flexible and elegant website builder that allows you to create complex pages within minutes and customize every aspect of the theme.
 * Version: 5.0.28
 * Author: YOOtheme
 * Author URI: https://yootheme.com
 * Update URI: https://api.yootheme.com/v1/package/yootheme_wp?v=5.0.28
 * Requires PHP: 7.4
 * Requires at least: 6.1
 */

/* =============================================================
   0. CSS VARIABLES – Design tokens matching beta-industrie.nl
============================================================= */
:root {
/*   --bi-green:       #3FA535; */
  --bi-green:       #3DAF2C;
  --bi-green-dark:  #2a6e2e;
/*   --bi-blue:        #1A4B8C; */
  --bi-blue:        #005DB9;
  --bi-blue-dark:   #153c74;
  --bi-light-blue:  #00B3E3;
  --bi-orange:      #e67e22;	
  --bi-gray:        #32373c;
  --bi-light-bg:    #f4f7fa;
  --bi-light-green: #f0f7f0;
  --bi-border:      #c8d6e5;
  --bi-white:       #ffffff;
  --bi-text:        #32373c;
  --bi-muted:       #6b7280;

  --bi-radius:      10px;
  --bi-radius-btn:  6px;
  --bi-trans:       0.18s ease;

  --bi-max-w:       1160px;
  --bi-pad-h:       32px;
  --bi-pad-v:       80px;
}


/* =============================================================
   1. GLOBAL UTILITIES
============================================================= */

/* --- Container ---
   YooTheme handles this via Section max-width settings.
   Use .bi-container only if wrapping content manually. */
.bi-container {
  max-width: var(--bi-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bi-pad-h);
  padding-right: var(--bi-pad-h);
  width: 100%;
  box-sizing: border-box;
}

/* --- Grid ---
   YooTheme Grid element handles columns natively.
   These classes add gap and alignment on top. */
.bi-grid { display: grid; gap: 20px; }
.bi-grid--2col  { grid-template-columns: repeat(2, 1fr); }
.bi-grid--3col  { grid-template-columns: repeat(3, 1fr); }
.bi-grid--4col  { grid-template-columns: repeat(4, 1fr); }
.bi-grid--gap-large  { gap: 56px; }
.bi-grid--valign-center { align-items: center; }

/* --- Buttons ---
   YooTheme: add "Button" element, apply class via Button > Advanced > Class
   Available: bi-btn--green / bi-btn--blue / bi-btn--outline-white /
              bi-btn--outline-dark / bi-btn--white */
.bi-btn {
  display: inline-block;
  padding: 13px 26px;
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--bi-radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--bi-trans), color var(--bi-trans),
              border-color var(--bi-trans), transform var(--bi-trans),
              box-shadow var(--bi-trans);
  line-height: 1;
}
.bi-btn:hover { transform: translateY(-2px); }

.bi-btn--green {
  background: var(--bi-green);
  color: var(--bi-white);
  border-color: var(--bi-green);
  box-shadow: 0 4px 14px rgba(63,165,53,.28);
}
.bi-btn--green:hover {
  background: var(--bi-green-dark);
  border-color: var(--bi-green-dark);
  box-shadow: 0 6px 18px rgba(63,165,53,.40);
  color: var(--bi-white);
}

.bi-btn--blue {
  background: var(--bi-blue);
  color: var(--bi-white);
  border-color: var(--bi-blue);
}
.bi-btn--blue:hover {
  background: var(--bi-blue-dark);
  border-color: var(--bi-blue-dark);
  color: var(--bi-white);
}

.bi-btn--outline-white {
  background: rgba(255,255,255,.12);
  color: var(--bi-white);
  border-color: rgba(255,255,255,.55);
}
.bi-btn--outline-white:hover {
  background: rgba(255,255,255,.22);
  border-color: var(--bi-white);
  color: var(--bi-white);
}

.bi-btn--outline-dark {
  background: transparent;
  color: var(--bi-gray);
  border-color: var(--bi-gray);
}
.bi-btn--outline-dark:hover {
  background: var(--bi-gray);
  color: var(--bi-white);
}

.bi-btn--white {
  background: var(--bi-white);
  color: var(--bi-green);
  border-color: var(--bi-white);
  font-weight: 700;
}
.bi-btn--white:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: var(--bi-green-dark);
}

/* --- Button Group --- */
.bi-btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bi-btn-group--col { flex-direction: column; align-items: flex-start; }
.bi-btn-group--center { justify-content: center; }

/* --- Image Placeholders (remove in production) --- */
.bi-img-placeholder {
  background: var(--bi-border);
  border-radius: var(--bi-radius);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #888; font-size: 13px; line-height: 1.5;
  width: 100%; aspect-ratio: 1/1;
}
.bi-img-placeholder--hero { aspect-ratio: 4/3; border-radius: 12px; }
.bi-img-placeholder--sm   { aspect-ratio: 1/1; height: 130px; width: 130px; margin: 0 auto; }
.bi-img-placeholder--dark { background: rgba(255,255,255,.15); color: rgba(255,255,255,.6); }


/* =============================================================
   2. SHARED COMPONENTS
============================================================= */

/* Section label (small uppercase green tag above headings) */
.bi-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--bi-green);
  margin-bottom: 12px;
}

/* Section header block (centered, above card grids) */
.bi-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.bi-section-header .bi-section-label { display: block; }

.bi-section-title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--bi-gray);
  margin: 0 0 16px;
  line-height: 1.2;
}

.bi-section-subtitle {
  font-size: 17px;
  color: var(--bi-muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content block (used in 2-col text/image sections) */
.bi-content-title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--bi-gray);
  margin: 0 0 20px;
  line-height: 1.2;
}

.bi-content-text {
  font-size: 16px;
  line-height: 1.78;
  color: var(--bi-text);
  margin: 0 0 20px;
}


/* =============================================================
   3. HERO SECTION
   YooTheme Section class: bi-hero
   Background: dark WKO/water photo via Section background settings
   Padding: xlarge
============================================================= */
.bi-hero {
  background: var(--bi-blue);
  background-size: cover;
  background-position: center;
  padding: var(--bi-pad-v) var(--bi-pad-h);
  position: relative;
  overflow: hidden;
}

/* Dark overlay on background image */
.bi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10,25,50,.75) 55%, rgba(10,25,50,.35) 100%);
  z-index: 0;
}

.bi-hero .bi-container { position: relative; z-index: 1; }

/* 2-column hero grid */
.bi-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left: text */
.bi-hero__left { display: flex; flex-direction: column; }

.bi-hero__tag {
  display: inline-block;
  background: rgba(63,165,53,.20);
  border: 1px solid rgba(63,165,53,.45);
  color: #9be494;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 22px;
  width: fit-content;
}

.bi-hero__title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--bi-white);
  line-height: 1.05;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.bi-hero__title-accent {
  color: var(--bi-green);
}

.bi-hero__intro {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,.85);
  line-height: 1.70;
  margin: 0 0 36px;
  max-width: 520px;
}

/* Inline stats row (3 numbers in hero) */
.bi-hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.bi-cycle-card {
    border: 1px solid var(--bi-border);
    border-radius: 10px;
    padding: 20px;
	transition:.3s;
}

.bi-cycle-card:hover{
	border: 1px solid var(--bi-blue);
	transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 75, 140, .10);
}

.bi-cycle-icon.uk-margin-small-bottom{
	background-color: var(--bi-blue);
    border-radius: 100%;
    text-align: center;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bi-cycle-icon.orange-bg.uk-margin-small-bottom{
	background-color:var(--bi-orange)
}

.bi-cycle-icon.green-bg.uk-margin-small-bottom{
	background-color:var(--bi-green)
}

.bi-cycle-icon.uk-margin-small-bottom img {
    width: 40px;
    height: 40px;
}

.bi-hero-stat {
  display: flex;
  flex-direction: column;
}

.bi-hero-stat__number {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--bi-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bi-hero-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,.60);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Dividers between stats */
.bi-hero-stat + .bi-hero-stat {
  border-left: 1px solid rgba(255,255,255,.20);
  padding-left: 32px;
}

/* Right: image area */
.bi-hero__right { position: relative; }

.bi-hero__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.bi-hero__img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Badge overlay on hero image */
.bi-hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bi-white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bi-hero__badge-number {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--bi-gray);
  line-height: 1;
}

.bi-hero__badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--bi-muted);
  line-height: 1.4;
}


/* =============================================================
   4. INTRO STRIP – WAT IS WKO?
   YooTheme Section class: bi-intro-strip
   Background: white | Padding: large
============================================================= */
.bi-intro-strip {
  background: var(--bi-white);
  padding: var(--bi-pad-v) var(--bi-pad-h);
}

.bi-intro-strip__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bi-intro-strip__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Cycle items (Winter / Zomer / De rol van filtratie) */
.bi-cycle-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bi-border);
}

.bi-cycle-item:last-child {
  border-bottom: none;
}

/* Icon circle */
.bi-cycle-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bi-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bi-cycle-item__icon--summer { background: #e67e22; }
.bi-cycle-item__icon--filter { background: var(--bi-green); }

.bi-cycle-item__body { flex: 1; }

.bi-cycle-item__season {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--bi-gray);
  margin-bottom: 6px;
}

.bi-cycle-item__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bi-muted);
  margin: 0;
}

/* YooTheme: When using "Card" elements for cycle items,
   apply "bi-cycle-item" class to the Card wrapper */


/* =============================================================
   5. VOORDELEN SECTION (6 advantage cards)
   YooTheme Section class: bi-voordelen
   Background: #f4f7fa | Padding: large
============================================================= */
.bi-voordelen {
  background: var(--bi-light-bg);
  padding: var(--bi-pad-v) var(--bi-pad-h);
}

.bi-voordeel-card {
  background: var(--bi-blue);
  border-radius: var(--bi-radius);
  padding: 32px 28px;
  border: 1px solid var(--bi-blue);
  position: relative;
  transition: transform var(--bi-trans), box-shadow var(--bi-trans);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}

.bi-voordeel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,75,140,.10);
}

/* Decorative top border on hover */
.bi-voordeel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bi-light-blue);
  transform: scaleX(0);
  transition: transform var(--bi-trans);
  transform-origin: left;
}
.bi-voordeel-card:hover::before { transform: scaleX(1); }

.bi-voordeel-card__number {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(63,165,53,.14);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.bi-voordeel-card__title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--bi-white);
  margin: 0 0 12px;
  line-height: 1.3;
}

.bi-voordeel-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--bi-white);
  margin: 0 0 16px;
}

/* Highlight badge (500 m³/pu, 100% hergebruik, RVS 316) */
.bi-voordeel-highlight {
  display: inline-block;
  background: var(--bi-light-blue);
  color: var(--bi-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  padding: 5px 14px;
  border: 1px solid rgb(255 255 255 / 53%);
}


/* =============================================================
   6. TOEPASSINGEN / ICP SECTION (4 sector cards)
   YooTheme Section class: bi-toepassingen
   Background: white | Padding: large
============================================================= */
.bi-toepassingen {
  background: var(--bi-white);
  padding: var(--bi-pad-v) var(--bi-pad-h);
}

.bi-icp-card {
  background: var(--bi-white);
  border-radius: var(--bi-radius);
  padding: 32px 24px;
  border: 1px solid var(--bi-border);
  transition: transform var(--bi-trans), box-shadow var(--bi-trans), border-color var(--bi-trans);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  text-align:center;
}

.bi-icp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(63,165,53,.12);
  border-color: rgba(63,165,53,.35);
}

.bi-icp-card__icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(63,165,53,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
	padding:10px;
  margin:0 auto;
}

.bi-icp-card__icon {
  width: 32px;
  height: 32px;
}

.bi-icp-card__sector {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bi-green);
  margin-bottom: 8px;
}

.bi-icp-card__title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--bi-gray);
  margin: 0 0 12px;
  line-height: 1.3;
}

.bi-icp-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bi-muted);
  margin: 0;
}


/* =============================================================
   7. SPECS SECTION (Specs table + How it works)
   YooTheme Section class: bi-specs
   Background: #f4f7fa | Padding: large
============================================================= */
.bi-specs {
  background: var(--bi-light-bg);
  padding: var(--bi-pad-v) var(--bi-pad-h);
}

/* Left: specs table panel */
.bi-specs__visual {
  background: var(--bi-blue);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(26,75,140,.25);
}

.bi-specs__table-title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 0px;
}

/* Individual spec row */
.bi-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  gap: 12px;
}

.bi-spec-row:last-child { border-bottom: none; }

.bi-spec-name {
  font-size: 14px;
  color: rgba(255,255,255,.70);
  flex: 1;
  line-height: 1.4;
}

.bi-spec-value {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--bi-white);
  text-align: right;
  white-space: nowrap;
}

.bi-spec-value small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  display: block;
  text-align: right;
}

/* Right: how it works content */
.bi-specs__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Check list */
.bi-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.bi-specs-list li {
  padding: 10px 0 10px 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bi-text);
  border-bottom: 1px solid var(--bi-border);
  position: relative;
}

.bi-specs-list li:last-child { border-bottom: none; }

.bi-specs-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--bi-green);
  font-weight: 700;
  font-size: 14px;
}


/* =============================================================
   8. SOCIAL PROOF SECTION
   YooTheme Section class: bi-social-proof
   Background: #1A4B8C (dark blue) | Padding: large
============================================================= */
.bi-social-proof {
  background: var(--bi-blue);
  padding: var(--bi-pad-v) var(--bi-pad-h);
  text-align: center;
}

.bi-social-proof__statement {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--bi-white);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bi-social-proof__accent {
  color: #9be494; /* light green accent in dark bg */
}

.bi-social-proof__sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin: 0 0 56px;
  line-height: 1.6;
}

.bi-proof-numbers { margin-top: 0; }

.bi-proof-num {
  padding: 20px 16px;
  text-align: center;
}

/* Vertical dividers between proof numbers (desktop) */
@media (min-width: 961px) {
  .bi-proof-num + .bi-proof-num {
    border-left: 1px solid rgba(255,255,255,.15);
  }
}

.bi-proof-num__val {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--bi-white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bi-proof-num__desc {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  line-height: 1.4;
}

/* YooTheme Counter element override */
.bi-social-proof .uk-counter-number,
.bi-social-proof .uk-counter {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  font-weight: 800 !important;
  color: var(--bi-white) !important;
}


/* =============================================================
   9. CTA SECTION
   YooTheme Section class: bi-cta
   Background: #3FA535 (green) | Padding: large
============================================================= */
.bi-cta {
  background: var(--bi-green);
  padding: var(--bi-pad-v) var(--bi-pad-h);
}

.bi-cta__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bi-cta__title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--bi-white);
  margin: 0 0 16px;
  line-height: 1.2;
}

.bi-cta__desc {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

.bi-cta__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.bi-cta__right .bi-btn-group--col {
  align-items: flex-start;
}

.bi-cta__phone {
  font-size: 15px;
  color: rgba(255,255,255,.80);
}

.bi-cta__phone-link {
  color: var(--bi-white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.50);
  transition: border-color var(--bi-trans);
}
.bi-cta__phone-link:hover { border-color: var(--bi-white); }


/* =============================================================
   10. PRODUCTS SECTION
   YooTheme Section class: bi-products
   Background: white | Padding: large
============================================================= */
.bi-products {
  background: var(--bi-white);
  padding: var(--bi-pad-v) var(--bi-pad-h);
}

.bi-product-card {
  background: var(--bi-white);
  border-radius: var(--bi-radius);
  border: 1px solid var(--bi-border);
  padding: 20px;
  text-align: center;
  transition: transform var(--bi-trans), box-shadow var(--bi-trans), border-color var(--bi-trans);
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.bi-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26,75,140,.10);
  border-color: var(--bi-blue);
}

.bi-product-card__img {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.bi-product-card__title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--bi-gray);
  margin: 0 0 10px;
  line-height: 1.4;
}

.bi-product-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--bi-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--bi-trans);
}
.bi-product-card__link:hover { color: var(--bi-green); }


/* =============================================================
   11. NEWS SECTION
   YooTheme Section class: bi-news
   Background: #f4f7fa | Padding: large
============================================================= */
.bi-news {
  background: var(--bi-light-bg);
  padding: var(--bi-pad-v) var(--bi-pad-h);
}

.bi-news-card {
  background: var(--bi-white);
  border-radius: var(--bi-radius);
  border: 1px solid var(--bi-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--bi-trans), box-shadow var(--bi-trans);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  padding:0px !important;
}

.bi-news-card-lable,.bi-news-card__title,.bi-news-card__excerpt,.bi-learn-more{
	padding-left:15px;	
}
div.bi-learn-more{
	margin-bottom:10px !important;
}
.bi-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,75,140,.12);
}

.bi-news-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bi-border);
}

.bi-news-card__img .bi-img-placeholder {
  aspect-ratio: auto; height: 100%; border-radius: 0;
}

.bi-news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bi-news-card:hover .bi-news-card__img img { transform: scale(1.04); }

.bi-news-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bi-news-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bi-green);
  background: rgba(63,165,53,.08);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.bi-news-card__title {
  font-family: Gilroy, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--bi-gray);
  margin: 0 0 10px;
  line-height: 1.4;
  flex: 1;
}

.bi-news-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bi-muted);
  margin: 0 0 20px;
}

.bi-news-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--bi-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--bi-trans);
  margin-top: auto;
}
.bi-news-card__link:hover { color: var(--bi-green); }


/* =============================================================
   12. RESPONSIVE BREAKPOINTS
============================================================= */
@media (max-width: 960px) {
  :root {
    --bi-pad-v: 60px;
    --bi-pad-h: 24px;
  }

  /* Hero: stack to single column */
  .bi-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .bi-hero__right { order: -1; }
  .bi-hero__img-wrap { max-width: 560px; margin: 0 auto; }

  /* 2-col grids → 1 col */
  .bi-intro-strip .bi-grid--2col,
  .bi-specs .bi-grid--2col,
  .bi-cta .bi-grid--2col { grid-template-columns: 1fr; gap: 40px; }

  /* 3-col → 2 col */
  .bi-grid--3col { grid-template-columns: repeat(2, 1fr); }

  /* 4-col → 2 col */
  .bi-grid--4col { grid-template-columns: repeat(2, 1fr); }

  .bi-grid--gap-large { gap: 32px; }

  /* Specs: visual above content */
  .bi-specs .bi-grid--2col > *:first-child { order: -1; }
}

@media (max-width: 640px) {
  :root {
    --bi-pad-v: 48px;
    --bi-pad-h: 20px;
  }

  .bi-grid--2col,
  .bi-grid--3col,
  .bi-grid--4col { grid-template-columns: 1fr; }

  .bi-hero__stats { flex-direction: column; gap: 16px; }
  .bi-hero-stat + .bi-hero-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; }

  .bi-section-title { font-size: 24px; }

  .bi-voordeel-card,
  .bi-icp-card { padding: 24px 20px; }

  .bi-proof-num__val { font-size: 36px; }

  .bi-specs__visual { padding: 24px 20px; }

  .bi-cta__right .bi-btn-group--col { align-items: stretch; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Focus states for keyboard navigation */
.bi-btn:focus-visible { outline: 3px solid var(--bi-green); outline-offset: 3px; }
