/* ============================================================
   OM&C — Old Metals & Cables — Main Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  color: #313131;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  --green:      #32653D;
  --dark:       #101A15;
  --dark-hero:  #1c1e26;
  --grey:       #313131;
  --mid:        #888b8e;
  --light:      #bdbdbd;
  --border:     #e8e8e8;
  --pad-x:      152px;
  --section-heading: 48px;
}

/* ------------------------------------------------------------
   NAVIGATION
   ------------------------------------------------------------ */
#site-nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  z-index: 100;
}

.nav-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── Desktop nav links ── */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 24px;
}

.nav-link {
  font-weight: 400;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #313131;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: #32653D;
  background: #f4f9f5;
}

.nav-link.is-active,
.nav-dropdown-trigger.is-active {
  color: #32653D;
  font-weight: 600;
}

.nav-dropdown-trigger.is-active .nav-dropdown-arrow {
  stroke: #32653D;
}

.nav-dropdown a.is-active {
  color: #32653D;
  font-weight: 600;
  background: #f4f9f5;
}

/* ── Dropdown item ── */
.nav-item {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #313131;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-trigger:hover,
.nav-item--dropdown:hover .nav-dropdown-trigger,
.nav-item--dropdown.is-open .nav-dropdown-trigger {
  color: #32653D;
  background: #f4f9f5;
}

.nav-dropdown-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-item--dropdown:hover .nav-dropdown-arrow,
.nav-item--dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  padding: 14px 8px 8px;
  z-index: 200;
  flex-direction: column;
  gap: 2px;
}

/* Bridge the gap so mouse can move from trigger to dropdown without losing hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background: #f4f9f5;
  color: #32653D;
}

/* ── Nav right ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  font-size: 13px;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ── Taalswitch ── */
.nav-lang {
  position: relative;
}

.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  color: #313131;
  background: none;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.nav-lang-btn:hover {
  border-color: #32653D;
  color: #32653D;
}

.nav-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
  padding: 6px;
  flex-direction: column;
  gap: 2px;
  min-width: 64px;
  z-index: 200;
}

.nav-lang-dropdown.is-open {
  display: flex;
}

.nav-lang-dropdown a {
  font-size: 13px;
  font-weight: 400;
  color: #313131;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}

.nav-lang-dropdown a:hover,
.nav-lang-dropdown a.active {
  background: #f4f9f5;
  color: #32653D;
  font-weight: 600;
}

/* ── Hamburger button ── */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #313131;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger → X animatie */
.nav-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 24px 24px;
  z-index: 99;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.nav-mobile-menu.is-open {
  display: flex;
}

.nav-mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: #313131;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}

.nav-mobile-link:hover {
  color: #32653D;
}

/* Mobile accordion (Diensten) */
.nav-mobile-item {
  border-bottom: 1px solid #f0f0f0;
}

.nav-mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #313131;
  background: none;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-accordion-trigger svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-mobile-item.is-open .nav-mobile-accordion-trigger svg {
  transform: rotate(180deg);
}

.nav-mobile-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 16px;
  gap: 2px;
}

.nav-mobile-item.is-open .nav-mobile-sub {
  display: flex;
}

.nav-mobile-sub a {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  padding: 8px 0;
}

.nav-mobile-sub a:hover {
  color: #32653D;
}

/* Mobile lang switch */
.nav-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 16px 0 8px;
}

.nav-mobile-lang a {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  transition: color 0.15s, border-color 0.15s;
}

.nav-mobile-lang a:hover,
.nav-mobile-lang a.active {
  color: #32653D;
  border-color: #32653D;
}

/* CTA in mobile drawer */
.nav-mobile-cta {
  margin-top: 12px;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn-green {
  display: inline-block;
  background: #32653D;
  color: #fff;
  border-radius: 71px;
  padding: 12px 22px;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
  line-height: 1.4;
}

.btn-green:hover {
  background: #265030;
  color: #fff;
}

.btn-split {
  display: inline-flex;
  height: 59px;
  border-radius: 71px;
  overflow: hidden;
  background: #1c1e26;
  border: none;
  text-decoration: none;
  align-items: stretch;
}

.btn-split-left {
  background: #32653D;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.btn-split-right {
  background: transparent;
  padding: 0 36px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease, opacity 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.slider-arrow:hover {
  background: #f5f5f5;
  border-color: #aaa;
}

.slider-arrow:active {
  transform: scale(0.96);
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  background: #fff;
}

.hero-content {
  padding: 120px var(--pad-x) 60px;
  text-align: center;
}

.hero h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 1.36;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1c1e26;
  max-width: 1034px;
  margin: 0 auto 24px;
}

.hero-h1-dark {
  color: #1c1e26;
}

.hero-h1-green {
  color: #32653D;
}

.hero-sub {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #1c1e26;
  max-width: 618px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.reviews-bar .stars {
  display: flex;
  gap: 2px;
}

.reviews-bar .stars svg {
  width: 12px;
  height: 12px;
  fill: #ffd119;
}

.reviews-bar-text {
  font-size: 12px;
  color: #888b8e;
}

.hero-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.hero-partner-prefix {
  font-weight: 500;
  font-size: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #aaa;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-partner-logo {
  height: 28px;
  width: auto;
  opacity: 0.5;
}

.hero-partner-bir {
  height: 22px;
  width: auto;
  opacity: 0.5;
}

.hero-partner-sep {
  width: 1px;
  height: 32px;
  background: #ccc;
  flex-shrink: 0;
}

.hero-kabel {
  width: 100%;
  overflow: hidden;
}

.hero-kabel img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 340px;
}

/* ------------------------------------------------------------
   METALEN (dark section)
   ------------------------------------------------------------ */
.section-metalen {
  background: #101A15;
  padding: 60px var(--pad-x) 100px;
}

.metalen-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  align-items: center;
}

.metalen-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metalen-trust-item img {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  flex-shrink: 0;
}

.metalen-trust-line1 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #bdbdbd;
  display: block;
}

.metalen-trust-line2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  display: block;
  margin-top: 4px;
}

.metalen-trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.metalen-inner {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  min-height: 620px;
}

.metalen-photo-wrap {
  flex: 0 0 607px;
  position: relative;
}

.metalen-photo {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.metalen-photo.is-active {
  opacity: 1;
}

.metalen-content {
  flex: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.metalen-eyebrow {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.16;
  color: #bdbdbd;
  margin-bottom: 24px;
}

.metalen-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 1.16;
  color: #fff;
  margin-bottom: 40px;
}

.metalen-items {
  display: flex;
  flex-direction: column;
}

.metalen-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(189, 189, 189, 0.3);
  cursor: pointer;
  transition: padding-left 0.2s ease;
}

.metalen-item:first-child {
  border-top: none;
}

.metalen-item:hover {
  padding-left: 8px;
}

.metalen-item-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.16;
  color: #bdbdbd;
  transition: color 0.2s ease;
}

.metalen-item.is-active .metalen-item-name {
  color: #fff;
}

.metalen-item-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #bdbdbd;
  max-width: 477px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.28s ease,
              margin-top 0.28s ease;
  opacity: 0;
  margin-top: 0;
}

.metalen-item-desc > span {
  overflow: hidden;
  min-height: 0;
}

.metalen-item.is-active .metalen-item-desc {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 8px;
}

/* ------------------------------------------------------------
   SERVICES SLIDER
   ------------------------------------------------------------ */
.section-services {
  padding: 80px 0;
  background: #fff;
  overflow-x: hidden;
}

.services-header {
  padding: 0 var(--pad-x);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.services-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.services-eyebrow {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.16;
  color: #888b8e;
  margin-bottom: 8px;
}

.services-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: #313131;
}

.services-track-wrap {
  padding: 0 var(--pad-x);
  overflow: visible;
}

.services-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.services-track::-webkit-scrollbar { display: none; }
.services-track:active { cursor: grabbing; }

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  /* 3 full cards + ~50px peek of 4th: subtract gap + peek from available width */
  flex: 0 0 calc((100vw - 2 * var(--pad-x) - 2 * 28px - 78px) / 3);
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
}

.service-card-img {
  width: 100%;
  height: 250px;
  background: #101a15 center / cover no-repeat;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}

.service-card-body {
  padding: 28px;
  flex: 1;
}

.service-card-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #313131;
  margin-bottom: 12px;
}

.service-card-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #888b8e;
}

.services-arrows {
  display: flex;
  gap: 8px;
}

.services-nav {
  padding: 32px var(--pad-x) 0;
}

.services-nav .slider-progress {
  max-width: none;
}

.slider-progress {
  flex: 1;
  height: 18px; /* expanded hit area */
  background: transparent;
  position: relative;
  max-width: 800px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

/* Visual track is just 2px, centered inside the hit area */
.slider-progress::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: #e8e8e8;
  border-radius: 4px;
}

.slider-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 4px;
  width: 30%;
  background: #313131;
  border-radius: 4px;
  transition: left 0.3s ease;
}

/* ------------------------------------------------------------
   MAP SECTION
   ------------------------------------------------------------ */
.section-map {
  padding: 80px var(--pad-x);
}

.map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 691px;
  display: flex;
  align-items: stretch;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
}

.map-content {
  position: relative;
  z-index: 1;
  width: 560px;
  flex-shrink: 0;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-block {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
}

.map-block--services {
  background: #101A15;
}
.map-block--services .map-services-label {
  color: rgba(255,255,255,0.5);
}
.map-block--services .map-services-list li {
  color: #fff;
}

.map-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.map-title-dark {
  color: #313131;
}

.map-title-green {
  color: #32653D;
}

.map-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #313131;
}

.map-block--services .map-services-label {
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.map-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #313131;
  border: none;
  padding-bottom: 0;
}

.map-services-list li,
.map-services-list li + li {
  border: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}

.map-service-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32653D;
}

.map-block--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.map-cta-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #313131;
  max-width: 160px;
}

.map-legend {
  display: none !important;
  position: absolute;
  top: 30px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 5px 4px 10px -2px rgba(0, 0, 0, 0.15);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.map-legend-title {
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #313131;
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #32653D;
  flex-shrink: 0;
}

.map-legend-dot--region {
  opacity: 0.2;
  border: 2px solid #32653D;
  background: transparent;
}

.map-legend-line {
  width: 20px;
  height: 2px;
  background: #888;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   WHY SECTION
   ------------------------------------------------------------ */
.section-why {
  padding: 80px var(--pad-x);
  background: #fff;
}

.why-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: #313131;
  max-width: 870px;
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: 496px 1fr;
  gap: 80px;
  align-items: start;
}

.why-photo {
  height: 600px;
  border-radius: 10px;
  background: center / cover no-repeat;
  position: sticky;
  top: 100px;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: #fbfbfb;
  border: 1px solid #c4c4c4;
  border-radius: 20px;
  padding: 38px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(50, 101, 61, 0.1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  stroke: var(--green);
}
.why-card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.why-card h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: #313131;
  margin-bottom: 16px;
}

.why-card p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #888b8e;
}

.why-card-btn {
  position: absolute;
  top: 38px;
  right: 38px;
  width: 46px;
  height: 47px;
  border-radius: 8px;
  border: 1px solid #a2a19e;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: #313131;
  transition: background 0.2s, border-color 0.2s;
}

.why-card-btn:hover {
  background: #f0f0f0;
}

.why-card-btn svg {
  width: 16px;
  height: 16px;
}

/* ------------------------------------------------------------
   QUOTE
   ------------------------------------------------------------ */
.section-quote-wrap {
  padding: 40px var(--pad-x) 80px;
}

.section-quote {
  border-radius: 20px;
  overflow: hidden;
  min-height: 567px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  /* light scrim overall + strong fade at bottom */
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.92) 100%);
}

.quote-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.quote-author {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-top: 24px;
  margin-bottom: 0;
  opacity: 0.8;
  text-align: center;
}

.quote-text {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: #fff;
  max-width: 1037px;
  margin: 0 auto;
  text-align: center;
}

/* ------------------------------------------------------------
   BLOG
   ------------------------------------------------------------ */
.section-blog {
  padding: 80px var(--pad-x);
  background: #fff;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blog-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.blog-eyebrow {
  display: none;
}

.blog-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: #313131;
}

/* Scrollable track — same pattern as services */
.blog-track-wrap {
  overflow-x: visible;
  overflow-y: hidden;
}

.blog-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  padding-bottom: 4px;
  padding-right: 2px;
}

.blog-track::-webkit-scrollbar { display: none; }
.blog-track:active { cursor: grabbing; }

.blog-nav {
  margin-top: 32px;
}

.blog-nav .slider-progress {
  max-width: 100%;
}

.blog-card {
  /* 3 full cards + ~50px peek of 4th */
  flex: 0 0 calc((100vw - 2 * var(--pad-x) - 2 * 28px - 78px) / 3);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #e8e8e8 center / cover;
}

.blog-card-body {
  padding: 24px 28px 32px;
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #32653D;
  margin-bottom: 12px;
}

.blog-card-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #313131;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #888b8e;
  margin-bottom: 20px;
}

.blog-card-meta {
  font-size: 12px;
  color: #888b8e;
}

.blog-footer {
  margin-top: 40px;
  text-align: center;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.section-faq {
  background: #fbfbfb;
  padding: 80px var(--pad-x);
}

.faq-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: #313131;
  position: sticky;
  top: 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item,
.faq-row {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child,
.faq-row:first-child {
  border-top: 1px solid var(--border);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #313131;
  flex: 1;
}

.faq-plus {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: #313131;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.faq-toggle[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.28s ease;
  opacity: 0;
}

.faq-answer.is-open {
  max-height: 600px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 4px 0 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #888b8e;
}

/* ------------------------------------------------------------
   EBOOK
   ------------------------------------------------------------ */
.section-ebook {
  padding: 80px var(--pad-x);
  background: #fff;
}

.ebook-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #c4c4c4;
  border-radius: 20px;
  overflow: hidden;
  min-height: 532px;
}

.ebook-content {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ebook-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #313131;
  max-width: 545px;
  margin-bottom: 40px;
}

.ebook-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #888b8e;
  margin-bottom: 48px;
}

.ebook-img-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
}

.ebook-btn {
  align-self: flex-start;
}

/* Blog / Reviews — "bekijk alle" buttons (alleen mobiel) */
.blog-all-wrap,
.reviews-all-wrap {
  display: none;
}


/* ------------------------------------------------------------
   REVIEWS
   ------------------------------------------------------------ */
.section-reviews {
  background: #101A15;
  padding: 80px var(--pad-x);
  min-height: 600px;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.reviews-eyebrow {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.16;
  color: #bdbdbd;
  margin-bottom: 8px;
}

.reviews-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: #fff;
}

.reviews-track-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 380px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 36px;
  scroll-snap-align: start;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #ffd119;
}

.review-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #32653D center / cover;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.review-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.reviews-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 0 0;
}

.review-glogo {
  width: 120px;
  height: 40px;
  background-image: url('../images/google-reviews.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  margin-left: auto;
  opacity: 0.7;
}

/* Dark-section slider arrow overrides */
.section-reviews .slider-arrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.section-reviews .slider-arrow svg {
  stroke: #fff;
  fill: none;
}

.section-reviews .slider-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section-reviews .slider-progress {
  background: rgba(255, 255, 255, 0.15);
}

.section-reviews .slider-fill {
  background: #fff;
}

/* ------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------ */
.section-contact {
  background: #32653D;
  padding: 240px var(--pad-x) 80px;
  min-height: 900px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.16;
  color: #fff;
  margin-bottom: 24px;
}

.contact-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.contact-text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.contact-trust-items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.contact-trust-item svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-top: -320px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-card h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #313131;
  margin-bottom: 8px;
}

.contact-form-card .form-sub {
  font-size: 14px;
  color: #888b8e;
  margin-bottom: 32px;
}

/* ------------------------------------------------------------
   PRICING / NEWSLETTER
   ------------------------------------------------------------ */
.section-pricing {
  padding: 80px var(--pad-x) 0;
  margin-top: -160px;
  position: relative;
  z-index: 20;
}

.pricing-banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: center / cover no-repeat;
  min-height: 280px;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.pricing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px;
}

.pricing-left {
  max-width: 500px;
  flex-shrink: 0;
}

.pricing-left h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  white-space: pre-line;
}

.pricing-left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-right {
  flex-shrink: 0;
  width: 400px;
}

.pricing-privacy {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.pricing-privacy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.pricing-form-fallback .pricing-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-input {
  border-radius: 71px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 24px;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  width: 240px;
  outline: none;
  transition: border-color 0.2s;
  max-width: 100%;
}

.pricing-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer {
  background: #101A15;
  padding: 80px var(--pad-x) 32px;
  margin-top: -236px;
  padding-top: 361px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 39px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.footer-social:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social svg {
  fill: #fff;
  color: #fff;
  width: 14px;
  height: 14px;
}

.footer-brand h5,
.footer-col h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.footer-legal-nav a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   GRAVITY FORMS STYLING
   ------------------------------------------------------------ */
.gform_wrapper {
  font-family: 'Inter', system-ui, sans-serif;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 400;
  font-size: 13px;
  font-family: 'Inter', system-ui, sans-serif;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #313131;
  -webkit-appearance: none;
  appearance: none;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: #32653D;
  box-shadow: 0 0 0 3px rgba(50, 101, 61, 0.08);
}

.gform_wrapper textarea {
  min-height: 80px;
  resize: vertical;
}

.gform_wrapper label {
  font-weight: 500;
  font-size: 13px;
  color: #313131;
  display: block;
  margin-bottom: 4px;
}

.gform_wrapper .gfield {
  margin-bottom: 12px;
}

.gform_wrapper .gfield_required {
  color: #32653D;
}

.gform_wrapper .gfield_description,
.gform_wrapper .gfield_error .validation_message {
  font-size: 12px;
  margin-top: 4px;
}

.gform_wrapper .gfield_error .validation_message {
  color: #c0392b;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
  border-color: #c0392b;
}

/* Submit button */
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
  background: #32653D;
  color: #fff;
  border-radius: 71px;
  padding: 16px 32px;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  line-height: 1.4;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
  background: #265030;
}

/* Half-width fields (two-column grid) */
.gform_wrapper .gform_fields {
  clear: both;
}

.gform_wrapper .gfield.gf-half {
  float: left;
  width: calc(50% - 8px);
  margin-right: 16px;
}

.gform_wrapper .gfield.gf-half:nth-child(even) {
  margin-right: 0;
}

.gform_wrapper .gfield.gf-half + .gfield:not(.gf-half) {
  clear: both;
}

/* Checkboxes */
.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gform_wrapper .gfield_checkbox input[type="checkbox"],
.gform_wrapper .gfield_radio input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #c4c4c4;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.gform_wrapper .gfield_checkbox input[type="checkbox"]:checked {
  background: #32653D;
  border-color: #32653D;
}

.gform_wrapper .gfield_checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.gform_wrapper .gfield_radio input[type="radio"] {
  border-radius: 50%;
}

.gform_wrapper .gfield_radio input[type="radio"]:checked {
  border-color: #32653D;
  background: #fff;
}

.gform_wrapper .gfield_radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32653D;
}

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  font-weight: 400;
  font-size: 14px;
  color: #313131;
  cursor: pointer;
  margin-bottom: 0;
}

/* Confirmation message */
.gform_confirmation_wrapper,
.gform_confirmation_message {
  background: #f0f7f1;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 16px 20px;
  color: #32653D;
  font-size: 15px;
  line-height: 1.5;
}

/* Contact card overrides */
.contact-form-card .gform_wrapper input[type="text"],
.contact-form-card .gform_wrapper input[type="email"],
.contact-form-card .gform_wrapper input[type="tel"],
.contact-form-card .gform_wrapper textarea,
.contact-form-card .gform_wrapper select {
  background: #fff !important;
  border-color: #c4c4c4 !important;
  color: #313131 !important;
  padding: 9px 12px !important;
  font-size: 13px !important;
}
.contact-form-card .gform_wrapper textarea {
  min-height: 72px !important;
}
.contact-form-card .gform_wrapper .gfield {
  margin-bottom: 12px !important;
}
.contact-form-card .gform_wrapper label,
.contact-form-card .gform_wrapper .gfield_label {
  font-size: 13px !important;
  margin-bottom: 4px !important;
}

/* Pricing/newsletter banner overrides (dark transparent bg) */
.pricing-banner .gform_wrapper input[type="text"],
.pricing-banner .gform_wrapper input[type="email"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 71px;
  padding: 14px 24px;
}

.pricing-banner .gform_wrapper input[type="text"]::placeholder,
.pricing-banner .gform_wrapper input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-banner .gform_wrapper label {
  color: #fff;
}

.pricing-banner .gform_wrapper .gform_button,
.pricing-banner .gform_wrapper input[type="submit"] {
  background: #32653D;
  border-radius: 71px;
}

/* ------------------------------------------------------------
   ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------
   UTILITY CLASSES
   ------------------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------------------------
   RESPONSIVE — TABLET (max-width: 1200px)
   ------------------------------------------------------------ */
@media (max-width: 1200px) {
  :root {
    --pad-x: 60px;
    --section-heading: 40px;
  }

  /* Hero */
  .hero-content {
    padding: 80px var(--pad-x) 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  /* Metalen */
  .metalen-inner {
    flex-direction: column;
    min-height: auto;
  }

  .metalen-photo-wrap {
    flex: 0 0 auto;
    height: 400px;
    width: 100%;
  }

  .metalen-photo {
    border-radius: 10px 10px 0 0;
  }

  .metalen-content {
    padding: 40px;
  }

  /* Services */
  .services-track-wrap {
    padding-left: 200px;
  }

  .services-fade {
    width: 200px;
  }

  /* Map */
  .map-card {
    flex-direction: column;
    min-height: auto;
  }

  .map-bg {
    position: relative;
    height: 400px;
  }

  .map-content {
    position: relative;
    width: 100%;
    padding: 40px;
  }

  .map-legend {
    position: static;
    align-self: flex-start;
    margin-top: 0;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-photo {
    height: 400px;
    position: static;
  }

  /* Quote */
  .quote-text {
    font-size: 36px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-title {
    position: static;
  }

  /* Ebook */
  .ebook-content {
    padding: 44px 48px;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    margin-top: 0;
  }

  /* Pricing */
  .pricing-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 48px;
  }

  .pricing-right {
    width: 100%;
  }

  .pricing-input {
    width: 100%;
  }

  .pricing-form-fallback .pricing-form-row {
    flex-direction: column;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ------------------------------------------------------------
   RESPONSIVE — MOBILE (max-width: 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --section-heading: 28px;
  }

  /* Global border-radius: 20px → 10px */
  .service-card, .why-card, .metalen-card, .review-card, .blog-card,
  .contact-form-card, .ebook-wrap, .map-card, .faq-card,
  .pricing-card, .pricing-banner {
    border-radius: 10px !important;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-right .nav-cta {
    display: none !important;
  }

  .nav-lang {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding: 60px var(--pad-x) 32px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-partners {
    gap: 16px;
  }

  .hero-partner-sep {
    display: none;
  }

  /* Metalen */
  .section-metalen {
    padding: 40px var(--pad-x) 48px;
  }

  .metalen-trust {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .metalen-trust-sep {
    display: none;
  }

  .metalen-inner {
    border-radius: 10px;
  }

  .metalen-photo-wrap {
    height: 220px;
  }

  .metalen-content {
    padding: 20px 20px 24px;
  }

  .metalen-eyebrow {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .metalen-title {
    margin-bottom: 16px;
  }

  .metalen-item {
    padding: 12px 0;
  }

  .metalen-item-name {
    font-size: 16px;
  }

  .metalen-item-desc {
    font-size: 14px;
  }

  /* Services */
  .section-services {
    padding: 48px 0;
  }

  .services-header {
    padding: 0 var(--pad-x);
  }

  .services-track-wrap {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .services-fade {
    display: none;
  }

  .services-track {
    padding-left: 0;
    padding-right: 0;
  }

  .service-card {
    border-radius: 10px !important;
  }

  .service-card-img {
    height: 150px !important;
    border-radius: 10px 10px 0 0 !important;
  }

  .service-card-title {
    font-size: 16px !important;
    min-height: unset !important;
  }

  .service-card-body {
    padding: 16px 18px 20px !important;
  }

  .services-eyebrow {
    font-size: 16px;
  }

  .services-nav {
    padding: 24px var(--pad-x) 0;
  }

  /* Map */
  .section-map {
    padding: 32px var(--pad-x);
  }

  .map-bg {
    height: 240px;
  }

  .map-content {
    padding: 24px;
  }

  .map-block--cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Why */
  .section-why {
    padding: 48px var(--pad-x);
  }

  .why-title {
    margin-bottom: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-photo {
    height: 260px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 24px;
  }

  .why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .why-card p {
    font-size: 15px;
  }

  /* Quote */
  .section-quote-wrap {
    padding: 32px var(--pad-x) 48px;
  }

  .quote-inner {
    padding: 36px 24px;
  }

  .quote-text {
    font-size: 24px;
  }

  .quote-author {
    font-size: 15px;
    margin-top: 16px;
  }

  /* Blog */
  .section-blog {
    padding: 48px var(--pad-x);
  }

  .blog-header {
    margin-bottom: 28px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-nav {
    margin-top: 20px;
  }

  /* FAQ */
  .section-faq {
    padding: 48px var(--pad-x);
  }

  .faq-q {
    font-size: 16px;
  }

  .faq-toggle {
    padding: 16px 0;
  }

  /* Ebook */
  .section-ebook {
    padding: 48px var(--pad-x);
  }

  .ebook-card {
    grid-template-columns: 1fr;
  }

  .ebook-img-wrap {
    order: -1;
    min-height: 220px;
  }

  .ebook-content {
    padding: 28px 24px;
    order: 1;
  }

  .ebook-content p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* Reviews */
  .section-reviews {
    padding: 48px var(--pad-x);
    min-height: unset;
  }

  .reviews-header {
    margin-bottom: 28px;
  }

  .review-card {
    flex: 0 0 300px;
    padding: 20px;
  }

  /* Contact */
  .section-contact {
    padding: 48px var(--pad-x) 64px;
  }

  .contact-form-card {
    padding: 28px 20px;
    margin-top: 0;
  }

  /* Pricing */
  .section-pricing {
    margin-top: -40px;
  }

  .pricing-inner {
    padding: 32px 24px;
    gap: 24px;
  }

  .pricing-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .pricing-left p {
    font-size: 14px;
  }

  .pricing-right {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  footer {
    padding: 48px var(--pad-x) 24px;
  }

  /* GForms mobile — all fields full width */
  .gform_wrapper .gfield.gf-half {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .contact-form-card .gform_fields .gfield:nth-child(2),
  .contact-form-card .gform_fields .gfield:nth-child(3) {
    grid-column: 1 / -1 !important;
  }
  .contact-form-card .gfield_checkbox,
  .contact-form-card .gfield_checkbox ul {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Algemeen: niets mag buiten de viewport steken ── */
  section, footer, nav {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Why-title + map-title + map-text: verberg geforceerde <br> op mobiel */
  .why-title br,
  .map-title br,
  .map-text br { display: none; }

  /* Map CTA: max-width weg zodat tekst niet wraps */
  .map-cta-text { max-width: none !important; }
  .map-block--cta { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Alle buttons volle breedte op mobiel */
  .btn-green,
  .btn-split,
  .btn-reviews-all,
  .blog-all-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Why cards: verberg icons en pijlen */
  .why-card-icon,
  .why-card-btn { display: none !important; }

  /* Map: minder padding en gap */
  .map-content {
    width: 100% !important;
    padding: 12px 0 0 !important;
    gap: 8px !important;
  }
  .map-block {
    padding: 16px !important;
    border-radius: 12px !important;
  }

  /* ── Sliders → verticale stapel op mobiel ── */

  /* Verberg pijlen en progress bars */
  .services-arrows,
  .blog-arrows,
  .services-nav,
  .blog-nav,
  .reviews-left .reviews-nav {
    display: none !important;
  }

  /* Services: track scrollt niet meer, kaarten stapelen */
  .services-track-wrap {
    overflow: hidden;
    padding: 0 var(--pad-x);
    max-width: 100%;
  }
  .services-track {
    flex-direction: column !important;
    overflow: hidden !important;
    gap: 16px !important;
    cursor: default !important;
    scroll-snap-type: none !important;
  }
  .service-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .service-card-img { height: 220px !important; }

  /* Blog: zelfde aanpak */
  .blog-track-wrap {
    overflow: hidden;
    max-width: 100%;
  }
  .blog-track {
    flex-direction: column !important;
    overflow: hidden !important;
    gap: 16px !important;
    cursor: default !important;
    scroll-snap-type: none !important;
  }
  .blog-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .blog-card-img { height: 200px; }
  .blog-card:nth-child(n+3) { display: none !important; }
  .blog-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .blog-all-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Reviews: stapel, max 3 kaarten */
  .section-reviews {
    min-height: auto;
    padding: 60px var(--pad-x);
  }
  .reviews-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .reviews-track-wrap {
    margin-right: 0 !important;
    overflow: hidden;
    max-width: 100%;
  }
  .reviews-track {
    flex-direction: column !important;
    overflow: hidden !important;
    gap: 16px !important;
    cursor: default !important;
    scroll-snap-type: none !important;
  }
  .section-reviews .review-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .section-reviews .review-card:nth-child(n+4) {
    display: none !important;
  }
  .reviews-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .btn-reviews-all {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 71px;
    padding: 14px 28px;
    font-size: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    text-decoration: none;
    transition: border-color 0.2s;
  }
  .btn-reviews-all:hover { border-color: #fff; }

  /* Contact — reduce extreme padding, reset form overlap */
  .section-contact {
    padding: 60px var(--pad-x) 80px;
    min-height: auto;
  }
  .contact-form-card {
    margin-top: 0 !important;
    padding: 28px 20px;
    order: 2;
  }
  .contact-text {
    order: 1;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  /* Pricing — reset overlap, eigen achtergrond op mobiel */
  .section-pricing {
    margin-top: 0;
    padding: 40px var(--pad-x) 0;
    background: #101A15;
  }

  /* Footer — reset negative margin */
  footer {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 24px;
  }

  /* Sliders arrows — smaller */
  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  /* Service/blog header stacking */
  .services-header,
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .services-arrows,
  .blog-arrows {
    align-self: flex-start;
  }
}

/* ------------------------------------------------------------
   PRINT
   ------------------------------------------------------------ */
@media print {
  #site-nav,
  .services-nav,
  .reviews-nav,
  .nav-mobile-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }
}

/* ════════════════════════════════════════════
   CSS PATCH — Structurele fixes na vergelijking Figma vs WP
   ════════════════════════════════════════════ */

/* ── HERO ── */
.hero-h1-dark  { color: #1c1e26; display: inline; }
.hero-h1-green { color: #32653D; display: inline; }
.hero-partners { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 44px; padding: 16px 0; flex-wrap: wrap; }
.hero-partner-logo { height: 28px; width: auto; opacity: .5; object-fit: contain; }
.hero-partner-bir  { height: 22px; width: auto; opacity: .5; object-fit: contain; }
.hero-partner-sep  { width: 1px; height: 32px; background: #ccc; }
.hero-partner-text { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-partner-prefix { font: 500 11px/.8 'Inter'; color: #aaa; letter-spacing: .12em; text-transform: uppercase; }
.hero-kabel { width: 100%; overflow: hidden; line-height: 0; }
.hero-kabel img { width: 100%; height: auto; max-height: 360px; object-fit: cover; display: block; }

/* ── METALEN CONTENT ACHTERGROND ── */
.metalen-content { background: transparent; }

/* ── WHY SECTIE TWEEKLEURIGE TITEL ── */
.why-title-dark { color: #313131; }
.why-title-grey { color: #888b8e; }
.why-title { font: 700 48px/1.16 'Inter'; margin-bottom: 56px; max-width: 870px; }

/* ── REVIEWS — Witte kaarten (Figma-stijl) ── */
.reviews-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}
.reviews-left { display: flex; flex-direction: column; gap: 32px; }
.reviews-left .reviews-title { font: 700 48px/1.16 'Inter'; color: #fff; max-width: 280px; }
.reviews-left .reviews-nav { display: flex; gap: 14px; }
.reviews-left .reviews-nav button {
    width: 46px; height: 47px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.3); background: transparent;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color .2s;
}
.reviews-left .reviews-nav button:hover { border-color: #fff; }
.reviews-left .reviews-nav button svg { stroke: #fff; fill: none; stroke-width: 1.4; stroke-linecap: round; }
.reviews-track-wrap { overflow: hidden; margin-right: calc(-1 * var(--pad-x)); }
.reviews-track {
    display: flex; gap: 24px;
    overflow-x: auto; scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
}
.reviews-track::-webkit-scrollbar { display: none; }

/* Override: witte kaarten op donkere achtergrond */
.section-reviews .review-card {
    flex: 0 0 calc((100vw - var(--pad-x) - 340px - 60px - 2 * 24px) / 3);
    background: #fff !important;
    border: none !important;
    border-radius: 11px;
    padding: 24px 26px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
    scroll-snap-align: start;
}

.section-reviews .review-header { display: flex; align-items: center; gap: 12px; }
.section-reviews .review-avatar { width: 45px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.section-reviews .review-name { font: 500 14px/1 'Inter'; color: #4b4b4b; }
.section-reviews .review-stars { display: flex; gap: 4px; margin-top: 6px; }
.section-reviews .review-stars svg { width: 18px; height: 18px; fill: #ffd119; }
.section-reviews .review-glogo {
    position: absolute; top: 7px; right: 7px;
    width: 19px; height: 20px;
    background-size: contain; background-repeat: no-repeat; background-position: center;
}
.section-reviews .review-body { font: 400 14px/1.6 'Inter'; color: #313131; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.section-reviews .review-body.is-expanded { display: block; overflow: visible; -webkit-line-clamp: unset; }
.section-reviews .review-more { font: 400 14px/1 'Inter'; color: #32653D; cursor: pointer; margin-top: 12px; display: inline-block; }
.section-reviews .review-more:hover { text-decoration: underline; }
.section-reviews .review-more.is-hidden { display: none; }

/* ── BLOG — featured image als img-tag ── */
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-img { height: 256px; border-radius: 15px; overflow: hidden; background: #e8e8e8; margin-bottom: 28px; }
.blog-card h4 a { text-decoration: none; color: #313131; }
.blog-card h4 a:hover { color: #32653D; }

/* ── EBOOK — mockup afbeelding correct positioneren ── */

/* ── CONTACT — form card op maat voor GF ── */
.contact-form-card .gform_wrapper { margin: 0; }
.contact-form-card .gform_heading { display: none; }
.contact-form-card .gform_body { margin: 0; }

/* GF checkboxen in contact ── */
.gf-checkboxes .gfield_checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.gfield_checkbox li { display: flex; align-items: center; gap: 8px; }
.gfield_checkbox li label { font: 400 14px/1 'Inter'; color: #313131; cursor: pointer; }
.gfield_checkbox li input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: #32653D;
    cursor: pointer; flex-shrink: 0;
}

/* GF half-breedte velden ── */
.gform_wrapper .gf-half { display: inline-block; width: calc(50% - 8px); vertical-align: top; }
.gform_wrapper .gf-half + .gf-half { margin-left: 16px; }

/* ── PRICING — GF inline formulier ── */
.section-pricing .gform_wrapper { width: 100%; }
.section-pricing .gform_wrapper .gfield_label { color: rgba(255,255,255,.7); }
.section-pricing .gform_wrapper input[type="email"] {
    background: rgba(255,255,255,.1) !important;
    border: 1px solid rgba(255,255,255,.3) !important;
    border-radius: 71px !important;
    color: #fff !important;
    padding: 14px 24px !important;
}
.section-pricing .gform_wrapper input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.section-pricing .gform_wrapper .gform_footer { margin-top: 8px; }
.section-pricing .gform_wrapper input[type="submit"] {
    background: #32653D !important; color: #fff !important;
    border-radius: 71px !important; padding: 14px 28px !important;
    font: 400 14px/1 'Inter' !important;
}
.pricing-privacy { font: 400 11px/1.5 'Inter'; color: rgba(255,255,255,.45); margin-top: 12px; }
.pricing-privacy a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* ── SERVICES — eyebrow boven titel ── */
.services-eyebrow { display: block; }

/* ── RESPONSIVE PATCHES ── */
@media (max-width: 1100px) {
    .reviews-inner { grid-template-columns: 1fr; }
    .reviews-left { flex-direction: row; align-items: center; justify-content: space-between; }
    .reviews-left .reviews-title { max-width: 100%; }
}
@media (max-width: 768px) {
    .hero-kabel img { max-height: 160px; object-position: center center; }
    .hero-kabel::after { height: 30%; }
    .section-metalen { margin-top: -60px; }
    .reviews-left { flex-direction: column; align-items: flex-start; }
    .gf-checkboxes .gfield_checkbox { grid-template-columns: 1fr; }
    .gform_wrapper .gf-half { width: 100%; }
    .gform_wrapper .gf-half + .gf-half { margin-left: 0; }
}

/* ── GRAVITY FORMS — override blue brand color to OM&C green ── */
.gform_wrapper,
.gform-theme {
    --gf-color-primary: #32653D !important;
    --gf-color-primary-rgb: 50, 101, 61 !important;
    --gf-color-primary-darker: #265030 !important;
    --gf-color-primary-lighter: #4a8c5b !important;
    --gf-color-in-ctrl-primary: #32653D !important;
    --gf-color-in-ctrl-primary-rgb: 50, 101, 61 !important;
    --gf-color-in-ctrl-primary-darker: #265030 !important;
    --gf-color-in-ctrl-primary-lighter: #4a8c5b !important;
}

/* GF submit button */
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_footer .gform_button,
.gform_wrapper .gform_page_footer input[type="submit"],
.gform_wrapper .gform_page_footer .gform_button {
    background: #32653D !important;
    color: #fff !important;
    border-radius: 71px !important;
    padding: 16px 36px !important;
    font: 400 14px/1 'Inter', sans-serif !important;
    border: none !important;
    letter-spacing: 0 !important;
}

/* GF focus ring */
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: #32653D !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(50,101,61,.1) !important;
}

/* GF (Required) label — hide or translate */
.gfield_required_text { display: none; }
.gfield_required_asterisk::before { content: '*'; color: #32653D; }

/* Contact form grid layout */
.contact-form-card .gform_fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 16px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.contact-form-card .gform_fields .gfield {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* All fields full width by default */
.contact-form-card .gfield {
    grid-column: 1 / -1 !important;
    float: none !important;
    width: auto !important;
    margin-right: 0 !important;
}

/* Field 2 (email) and 3 (telefoon) = half width */
.contact-form-card .gform_fields .gfield:nth-child(2) {
    grid-column: 1 !important;
}
.contact-form-card .gform_fields .gfield:nth-child(3) {
    grid-column: 2 !important;
}

/* Diensten checkboxes: 3 columns, 2 rows */
.contact-form-card .gfield_checkbox,
.contact-form-card .gfield_checkbox ul {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px 16px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.contact-form-card .gform_footer {
    grid-column: 1 / -1 !important;
}

/* Blog card layout cleanup */
.blog-card {
    display: flex;
    flex-direction: column;
}
.blog-card-img-link { display: block; text-decoration: none; }
.blog-card-body { padding: 24px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-title { font: 600 20px/1.3 'Inter'; color: #313131; margin: 0; }
.blog-card-title a { text-decoration: none; color: #313131; }
.blog-card-title a:hover { color: #32653D; }
.blog-card-excerpt { font: 400 14px/1.6 'Inter'; color: #888b8e; margin: 0; flex: 1; }
.blog-card-meta { font: 400 12px/1 'Inter'; color: #bdbdbd; margin-top: auto; }

/* ════════════════════════════════════════════
   HERO OVERRIDES — sliding pill, kabel split, feel-better details
   ════════════════════════════════════════════ */

/* ── text-wrap on headings (prevents widows) ── */
h1, h2, h3, h4 { text-wrap: balance; }

/* ── Unified section heading scale (all sections except hero) ── */
.metalen-title,
.services-title,
.map-title,
.why-title,
.faq-title,
.blog-title,
.ebook-content h2,
.reviews-left .reviews-title,
.contact-text h2 {
  font-size: var(--section-heading) !important;
  line-height: 1.16;
}

/* ── touch-action on interactives (prevents double-tap zoom delay) ── */
.btn-split, .btn-green, .slider-arrow, .faq-toggle, .metalen-item {
    touch-action: manipulation;
}

/* ────────────────────────────────────────────
   SLIDING PILL BUTTON
   ──────────────────────────────────────────── */
.btn-split {
    position: relative;
    display: inline-flex;
    border-radius: 71px;
    overflow: hidden;
    background: #1c1e26;
    height: auto;
    min-height: 56px;
    align-items: stretch;
    /* scale-on-press feedback */
    transition: transform 0.12s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,.22);
    cursor: pointer;
}

.btn-split:active { transform: scale(0.97); }

/* ── The green pill: GPU-composited translateX ── */
.btn-split::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc(50% - 5px);  /* exactly half, minus left inset */
    background: #32653D;
    border-radius: 71px;
    /*
     * translateX(100%) moves by the pseudo's own width = calc(50% - 5px),
     * placing its left edge at exactly 50% of the container.
     * Right edge lands at 100% - 5px (symmetrical inset). ✓
     */
    transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

/* Pill slides to right half when hovering right button */
.btn-split:has(.btn-split-right:hover)::before {
    transform: translateX(100%);
}

/* Divider removed */
.btn-split::after {
    display: none;
}

.btn-split-left,
.btn-split-right {
    position: relative;
    z-index: 2;
    background: transparent !important;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 0;          /* gap managed by arrow transform below */
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-decoration: none;
    /* focus-visible ring */
    outline: none;
}

.btn-split-left:focus-visible,
.btn-split-right:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
    border-radius: 66px;
}

/* ── Arrow: hidden → slides in on hover (opacity + translateX, no layout shift) ── */
.btn-split-left svg,
.btn-split-right svg {
    opacity: 0;
    transform: translateX(-8px);
    margin-left: 0;
    width: 0;
    overflow: hidden;
    /* transition only GPU-composited properties */
    transition:
        opacity 0.18s ease,
        transform 0.26s cubic-bezier(0.34, 1.2, 0.64, 1),
        width 0.26s cubic-bezier(0.34, 1.2, 0.64, 1),
        margin-left 0.26s cubic-bezier(0.34, 1.2, 0.64, 1);
    will-change: opacity, transform;
    flex-shrink: 0;
}

.btn-split-left:hover svg,
.btn-split-right:hover svg {
    opacity: 1;
    transform: translateX(0);
    width: 14px;
    margin-left: 8px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .btn-split::before,
    .btn-split::after,
    .btn-split-left svg,
    .btn-split-right svg {
        transition: none !important;
    }
    .btn-split:active { transform: none; }
}

/* ────────────────────────────────────────────
   REVIEWS BAR — legibility fix
   ──────────────────────────────────────────── */
.reviews-bar-score {
    font: 500 13px/1 'Inter';
    color: #313131;
    letter-spacing: -0.01em;
}

.hero .reviews-bar { margin-top: 20px; }

/* g-logo sizing */
.g-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* ────────────────────────────────────────────
   KABEL — full-width, top-aligned, section divider
   ──────────────────────────────────────────── */
.hero-kabel {
    width: 100%;
    display: block;
    line-height: 0;
    overflow: hidden;
    /* no padding, no margin — flush against the dark section below */
}

.hero-kabel img {
    width: 100%;
    height: auto;
    min-height: 180px;
    max-height: none !important;
    object-fit: cover;
    object-position: top center;
    display: block;
    position: relative;
    z-index: 1;
}

/* Section-metalen overlaps up into the kabel area */
.section-metalen {
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

/* ────────────────────────────────────────────
   HERO — remove old partner strip positioning
   ──────────────────────────────────────────── */
.hero-partners { display: none; } /* removed from PHP, guard against cached output */

/* ────────────────────────────────────────────
   KABEL — gradient overlay: fade white bottom → dark
   Hides the white sky/bottom area of kabel.png and
   blends the image directly into the dark metalen bg
   ──────────────────────────────────────────── */
.hero-kabel {
    position: relative;
}

.hero-kabel::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 38%;
    background: #101A15;
    pointer-events: none;
}

/* ────────────────────────────────────────────
   TRUST LABELS — full-width SVG badges in white
   ──────────────────────────────────────────── */
.metalen-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 0 40px 40px;
    flex-wrap: wrap;
    border: none;
}

.trust-label-svg {
    filter: brightness(0) invert(1);
    height: 56px;
    width: auto;
    display: block;
    opacity: 0.95;
    flex-shrink: 0;
}

.trust-label-svg--2 {
    height: 56px;
}

/* No separator between labels */
.metalen-trust-sep {
    display: none;
}

/* Hide old text-based children if any stale cached HTML comes through */
.metalen-trust-item { display: none; }
.metalen-trust-line1,
.metalen-trust-line2 { display: none; }

@media (max-width: 600px) {
    .metalen-trust {
        flex-direction: column;
        gap: 32px;
        padding: 28px 24px 44px;
    }
    .trust-label-svg,
    .trust-label-svg--2 {
        height: 40px;
    }

    /* Hero */
    .hero h1 { font-size: 28px; }
    .btn-split { font-size: 13px; }

    /* Diensten checkboxes: 1 column on small phones */
    .contact-form-card .gfield_checkbox,
    .contact-form-card .gfield_checkbox ul {
        grid-template-columns: 1fr !important;
    }

    /* Ebook */
    .ebook-content { padding: 28px 20px; }
    .ebook-content h2 { font-size: 22px; }

    /* FAQ */
    .faq-q { font-size: 15px; }

    /* Quote */
    .quote-text { font-size: 20px; line-height: 1.4; }
    .quote-inner { padding: 40px 16px; }

    /* Nav logo smaller */
    .nav-logo { width: 140px; height: auto; }
}

/* ────────────────────────────────────────────
   KABEL — mobile overrides (must come last to beat global rules)
   ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-kabel img {
        max-height: 160px !important;
        object-position: center center !important;
    }
    .hero-kabel::after {
        height: 30% !important;
    }
    .section-metalen {
        margin-top: -50px !important;
    }

    /* Hero buttons: stack vertically on mobile */
    .btn-split {
        flex-direction: column !important;
        width: 100% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }
    /* Hide the sliding pill pseudo-element */
    .btn-split::before,
    .btn-split::after {
        display: none !important;
    }
    .btn-split-left {
        background: #32653D !important;
        border-radius: 12px 12px 0 0 !important;
        justify-content: center !important;
        padding: 16px 24px !important;
        white-space: normal !important;
        text-align: center !important;
    }
    .btn-split-right {
        background: #252830 !important;
        border-radius: 0 0 12px 12px !important;
        justify-content: center !important;
        padding: 16px 24px !important;
        white-space: normal !important;
        text-align: center !important;
    }
    /* Always show arrows on mobile (no hover state) */
    .btn-split-left svg,
    .btn-split-right svg {
        opacity: 1 !important;
        transform: translateX(0) !important;
        margin-left: 8px !important;
    }
}

/* ════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   Elements tagged with [data-anim] via JS.
   body.js-anim hides them until observed.
════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes omc-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes omc-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Base hidden state (only when JS is active) ── */
body.js-anim [data-anim] {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}

/* ── Visible state ── */
body.js-anim [data-anim].is-visible {
    animation: omc-fade-up 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--anim-delay, 0ms);
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    body.js-anim [data-anim] {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* ════════════════════════════════════════════
   INNER PAGES — page-hero & section components
════════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
    position: relative;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--pad-x) 80px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,18,12,0.82) 0%, rgba(10,18,12,0.45) 55%, rgba(10,18,12,0.2) 100%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.page-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7eba8a;
    margin: 0 0 16px;
}

.page-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 20px;
}

.page-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    margin: 0 0 36px;
    max-width: 560px;
}

.page-hero-cta {
    display: inline-block;
}

/* ── Inner page section base ── */
.ip-section {
    padding: 80px var(--pad-x);
    background: #fff;
}

.ip-section--alt {
    background: #f7f7f5;
}

.ip-section--dark {
    background: #101a15;
}

.ip-wrap {
    width: 100%;
}

.ip-wrap--center {
    text-align: center;
}

.ip-wrap--center .ip-lead {
    margin-left: auto;
    margin-right: auto;
}

.ip-wrap--narrow {
    max-width: 760px;
    margin: 0 auto;
}

.ip-wrap--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ip-wrap--flip {
    direction: rtl;
}

.ip-wrap--flip > * {
    direction: ltr;
}

/* ── Typography ── */
.ip-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #32653d;
    margin: 0 0 14px;
}

.ip-eyebrow--light {
    color: #7eba8a;
}

.ip-heading {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #101a15;
    margin: 0 0 20px;
}

.ip-heading--light {
    color: #fff;
}

.ip-lead {
    font-size: 18px;
    line-height: 1.65;
    color: #4a4e53;
    margin: 0 0 28px;
    max-width: 860px;
}

.ip-lead--muted {
    color: rgba(255,255,255,0.68);
}

.ip-lead.ip-center {
    margin-left: auto;
    margin-right: auto;
}

.ip-body {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4e53;
    margin: 0 0 24px;
}

/* ── Checklist ── */
.ip-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ip-checks li {
    font-size: 15px;
    color: #2e3235;
    padding-left: 28px;
    position: relative;
}

.ip-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #32653d;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

.ip-checks--light li {
    color: rgba(255,255,255,0.85);
}

.ip-checks--light li::before {
    background-color: #7eba8a;
}

.ip-cta-btn {
    display: inline-block;
    margin-top: 32px;
}

/* ── Steps grid ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.step-item {
    padding: 40px 32px;
    background: #f7f7f5;
    border-radius: 20px;
    position: relative;
}

.step-num {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: #e8ede9;
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 12px;
    line-height: 1.3;
}

.step-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0;
}

/* ── Split section image ── */
.ip-split-img {
    height: 480px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.ip-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* ── Materials grid ── */
.materials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.material-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #e8f0e9;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #2a5233;
}

/* ── Stats row ── */
.ip-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 56px;
}

.ip-stats-row--4 {
    grid-template-columns: repeat(4, 1fr);
}

.ip-stat {
    text-align: center;
}

.ip-stat-val {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.ip-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* ── Features grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.feature-card {
    padding: 32px 28px;
    background: #f7f7f5;
    border-radius: 20px;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16,26,21,0.10);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: #e8f0e9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #32653d;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 10px;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0;
}

/* ── Timeline ── */
.timeline {
    margin-top: 48px;
    position: relative;
    padding-left: 36px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e0e8e1;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #32653d;
    border: 3px solid #f7f7f5;
    flex-shrink: 0;
}

.timeline-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 8px;
}

.timeline-body p {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0;
}

/* ── Container cards ── */
.container-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.container-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #e8ede9;
    overflow: hidden;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s;
}

.container-card:hover {
    transform: translateY(-4px);
    border-color: #32653d;
}

.container-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.container-card-body {
    padding: 28px 28px 32px;
}

.container-title {
    font-size: 18px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 12px;
}

.container-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0;
}

/* ── Sortering comparison ── */
.sortering-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.sortering-item {
    padding: 32px 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 160px;
}

.sortering-item--mid {
    background: rgba(50,101,61,0.3);
    border-color: rgba(50,101,61,0.5);
}

.sortering-item--top {
    background: #32653d;
    border-color: #32653d;
}

.sortering-metal {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.sortering-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.sortering-item--top .sortering-label {
    color: rgba(255,255,255,0.8);
}

.sortering-divider {
    font-size: 24px;
    color: rgba(255,255,255,0.25);
}

/* ── Values grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.value-card {
    padding: 40px 32px;
    background: #f7f7f5;
    border-radius: 20px;
}

.value-num {
    font-size: 44px;
    font-weight: 900;
    color: #e0e8e1;
    line-height: 1;
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 12px;
}

.value-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0;
}

/* ── Clients grid ── */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}

.client-item {
    padding: 28px 48px;
    background: #f7f7f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.client-item:hover {
    background: #101a15;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(16,26,21,0.18);
}

.client-logo {
    max-height: 48px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.25s;
}

.client-item:hover .client-logo {
    filter: brightness(0) invert(1);
}

/* ── Projects grid ── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.project-card {
    padding: 36px 32px;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #e8ede9;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16,26,21,0.09);
}

.project-sector {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #32653d;
    margin-bottom: 12px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 12px;
    line-height: 1.3;
}

.project-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0 0 20px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #e8f0e9;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #2a5233;
}

/* ── Sectors grid ── */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}

.sector-item {
    padding: 32px 28px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.sector-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sector-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.52);
}

/* ── Inner page FAQ ── */
.ip-faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e8ede9;
}

.ip-faq-row {
    border-bottom: 1px solid #e8ede9;
}

.ip-faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #101a15;
    text-align: left;
    transition: color 0.2s;
}

.ip-faq-toggle:hover {
    color: #32653d;
}

.ip-faq-toggle[aria-expanded="true"] {
    color: #32653d;
}

.ip-faq-plus {
    font-size: 22px;
    line-height: 1;
    color: #32653d;
    flex-shrink: 0;
    font-weight: 400;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.ip-faq-toggle[aria-expanded="true"] .ip-faq-plus {
    transform: rotate(45deg);
}

.ip-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    opacity: 0;
}

.ip-faq-answer.is-open {
    max-height: 400px;
    opacity: 1;
}

.ip-faq-inner {
    padding: 4px 0 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7176;
}

/* ────────────────────────────────────────────
   INNER PAGES — Mobile
   ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ip-stats-row--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 0 var(--pad-x) 56px;
        min-height: 460px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-sub {
        font-size: 16px;
    }

    .ip-section {
        padding: 56px var(--pad-x);
    }

    .ip-heading {
        font-size: 28px;
    }

    .ip-lead {
        font-size: 16px;
    }

    .ip-wrap--split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ip-wrap--flip {
        direction: ltr;
    }

    .ip-split-img {
        height: 260px;
        border-radius: 14px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ip-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .ip-stats-row--4 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .ip-stat-val {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .container-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sectors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sortering-grid {
        flex-direction: column;
        align-items: center;
    }

    .sortering-divider {
        transform: rotate(90deg);
    }

    .clients-grid {
        gap: 14px;
    }

    .client-item {
        padding: 20px 32px;
        min-width: 140px;
        height: 80px;
    }
    .client-logo {
        max-height: 36px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .ip-stats-row,
    .ip-stats-row--4 {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════
   HOVER MICRO-INTERACTIONS
════════════════════════════════════════════ */

/* Nav: shadow when scrolled */
#site-nav.is-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    transition: box-shadow 0.3s ease;
}

/* Service card: image zoom only — no lift, no heavy shadow */
.service-card {
    transition: box-shadow 0.25s ease;
}
.service-card:hover {
    transform: none;
    box-shadow: none;
}
.service-card.has-img-zoom .service-card-img {
    overflow: hidden;
}
.service-card.has-img-zoom .service-card-img img,
.service-card.has-img-zoom .service-card-img {
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    transform-origin: center;
}
.service-card.has-img-zoom:hover .service-card-img {
    transform: scale(1.04);
}

/* Blog card: image zoom + lift */
.blog-card {
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,.10);
}
.blog-card.has-img-zoom .blog-card-img {
    overflow: hidden;
}
.blog-card.has-img-zoom .blog-card-img img {
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.blog-card.has-img-zoom:hover .blog-card-img img {
    transform: scale(1.06);
}

/* Why card: green left border on hover */
.why-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.09);
    border-color: #32653D;
}

/* Review card: lift */
.review-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,.10);
}

/* FAQ row: highlight on hover */
.faq-row {
    transition: background 0.18s ease;
    border-radius: 8px;
}
.faq-row:hover {
    background: #f9faf9;
}

/* Metalen item: already has padding-left, add color accent */
.metalen-item {
    transition: padding-left 0.2s ease, border-color 0.2s ease;
}
.metalen-item.is-active {
    border-bottom-color: rgba(50,101,61,.4);
}

/* Buttons: scale on press */
.btn-green {
    transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}
.btn-green:hover {
    background: #2a5634;
    box-shadow: 0 4px 16px rgba(50,101,61,.3);
}
.btn-green:active {
    transform: scale(0.96);
}

/* Map services list items */
.map-services-list li {
    transition: transform 0.18s ease;
}
.map-services-list li:hover {
    transform: translateX(4px);
}

/* Footer links */
.footer-col a {
    transition: color 0.15s ease, transform 0.15s ease;
    display: inline-block;
}
.footer-col a:hover {
    color: #7fc98a;
    transform: translateX(3px);
}

/* Social icons */
.footer-social {
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-social:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Nav lang dropdown links */
.nav-dropdown a,
.nav-lang-dropdown a {
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.nav-dropdown a:hover {
    transform: translateX(3px);
}

/* ════════════════════════════════════════════
   INNER PAGE — overlap fix for contact / pricing
   On inner pages the reviews section is absent,
   so remove the negative-margin overlap pattern.
════════════════════════════════════════════ */
.section-contact--inner {
    padding-top: 80px !important;
    min-height: 0 !important;
}
.section-contact--inner .contact-form-card {
    margin-top: 0 !important;
}
.section-pricing--inner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ════════════════════════════════════════════
   DIENSTEN OVERVIEW PAGE
════════════════════════════════════════════ */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.dienst-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #e8ede9;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
}

.dienst-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(16,26,21,0.10);
}

.dienst-card-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.dienst-card-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dienst-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 10px;
    line-height: 1.25;
}

.dienst-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0 0 20px;
    flex: 1;
}

.dienst-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #32653d;
    transition: gap 0.2s;
}

/* ════════════════════════════════════════════
   NIEUWS PAGE
════════════════════════════════════════════ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #e8ede9;
    overflow: hidden;
    transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(16,26,21,0.10);
}

.news-card-img-link {
    display: block;
}

.news-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.news-card-body {
    padding: 24px 24px 28px;
}

.news-card-date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aab0b5;
    margin: 0 0 10px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
}

.news-card-title a {
    color: #101a15;
    text-decoration: none;
    transition: color 0.15s;
}

.news-card-title a:hover {
    color: #32653d;
}

.news-card-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #6b7176;
    margin: 0 0 16px;
}

.news-card-more {
    font-size: 13px;
    font-weight: 600;
    color: #32653d;
    text-decoration: none;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.news-pagination a,
.news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid #e8ede9;
    color: #2e3235;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.news-pagination a:hover,
.news-pagination .current {
    background: #32653d;
    border-color: #32653d;
    color: #fff;
}

.news-empty {
    padding: 80px 0;
    text-align: center;
    color: #888;
    font-size: 16px;
}

/* ── Mobile: diensten & news ── */
@media (max-width: 1024px) {
    .diensten-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .diensten-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .dienst-card-img {
        height: 200px;
    }
}

/* ════════════════════════════════════════════
   VISUAL POLISH  v2.1  —  Inner page upgrades
════════════════════════════════════════════ */

/* ── Dark section: radial green glow ── */
.ip-section--dark {
    position: relative;
    overflow: hidden;
}
.ip-section--dark::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50,101,61,0.13) 0%, transparent 65%);
    top: -200px;
    right: -80px;
    pointer-events: none;
    z-index: 0;
}
.ip-section--dark::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50,101,61,0.07) 0%, transparent 70%);
    bottom: -100px;
    left: 5%;
    pointer-events: none;
    z-index: 0;
}
.ip-section--dark .ip-wrap {
    position: relative;
    z-index: 1;
}

/* ── Eyebrow: short accent line ── */
.ip-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ip-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    flex-shrink: 0;
    opacity: 0.7;
}
.ip-wrap--center .ip-eyebrow {
    justify-content: center;
}
.ip-wrap--center .ip-eyebrow::before {
    display: none;
}

/* ── Stats: larger numbers, top rule ── */
.ip-stat {
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-top: 24px;
}
.ip-stat-val {
    font-size: clamp(44px, 5.5vw, 68px);
    letter-spacing: -0.03em;
}
.ip-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

/* ── Step cards: top accent border ── */
.step-item {
    border-top: 3px solid #e0e8e1;
    transition: border-top-color 0.22s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.22s cubic-bezier(0.22,1,0.36,1);
}
.step-item:hover {
    border-top-color: #32653d;
    box-shadow: 0 8px 32px rgba(16,26,21,0.09);
}
.step-num {
    font-size: 52px;
    color: #d8e4d9;
}

/* ── Feature cards: top accent + icon hover ── */
.feature-card {
    border-top: 3px solid #e0e8e1;
    transition: border-top-color 0.22s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.22s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover {
    border-top-color: #32653d;
    transform: none;
    box-shadow: 0 8px 32px rgba(16,26,21,0.09);
}
.feature-icon-wrap {
    background: linear-gradient(135deg, #eaf2eb 0%, #d6eada 100%);
    transition: background 0.22s, transform 0.22s cubic-bezier(0.22,1,0.36,1);
    width: 56px;
    height: 56px;
    border-radius: 16px;
}
.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #32653d 0%, #285231 100%);
    transform: scale(1.08) rotate(-2deg);
    color: #fff;
}
.feature-card:hover .feature-icon-wrap svg {
    stroke: #fff;
}

/* ── Value cards: border accent on hover ── */
.value-card {
    border: 1.5px solid #e8ede9;
    transition: border-color 0.22s, box-shadow 0.22s;
}
.value-card:hover {
    border-color: #32653d;
    box-shadow: 0 8px 32px rgba(16,26,21,0.08);
}
.value-num {
    font-size: 48px;
    color: #cdd8ce;
}

/* ── Project cards: left accent on hover ── */
.project-card {
    border-left: 3px solid transparent;
    transition: border-left-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.project-card:hover {
    border-left-color: #32653d;
    transform: none;
    box-shadow: 0 8px 32px rgba(16,26,21,0.09);
}

/* ── Sector items: left accent + hover glow ── */
.sector-item {
    border-left: 3px solid transparent;
    transition: border-left-color 0.22s, background 0.22s;
}
.sector-item:hover {
    border-left-color: #7eba8a;
    background: rgba(255,255,255,0.08);
}

/* ── Sortering: elevated top item ── */
.sortering-item--top {
    transform: scale(1.07);
    box-shadow: 0 12px 40px rgba(50,101,61,0.32);
}

/* ── Client items: logo card style ── */
.client-item {
    background: #fff;
    border: 1.5px solid #e8ede9;
}
.client-item:hover {
    background: #101a15;
    border-color: #101a15;
}

/* ── Split image: depth shadow + subtle outline ── */
.ip-split-img {
    box-shadow: 0 24px 64px rgba(16,26,21,0.14), 0 4px 16px rgba(16,26,21,0.08);
    outline: 1px solid rgba(16,26,21,0.06);
}

/* ── Container cards: hover shadow ── */
.container-card:hover {
    box-shadow: 0 8px 32px rgba(16,26,21,0.09);
}

/* ── Timeline: gradient line + dot glow ── */
.timeline::before {
    background: linear-gradient(to bottom, #32653d 0%, #d8e4d9 100%);
}
.timeline-dot {
    background: #32653d;
    box-shadow: 0 0 0 5px rgba(50,101,61,0.12), 0 0 0 9px rgba(50,101,61,0.05);
}

/* ── Page hero: subtle green overlay tint ── */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(50,101,61,0.07) 0%,
        transparent 45%,
        rgba(16,26,21,0.25) 100%
    );
    pointer-events: none;
    z-index: 1;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
}

/* ════════════════════════════════════════════
   NEWSLETTER / PRIJZEN SECTION  —  Inner pages
════════════════════════════════════════════ */
.section-nl {
    background: #101a15;
    position: relative;
    overflow: hidden;
    padding: 80px var(--pad-x);
}
.section-nl::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50,101,61,0.16) 0%, transparent 65%);
    top: -150px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.section-nl-deco {
    position: absolute;
    right: calc(var(--pad-x) - 20px);
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(80px, 13vw, 160px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    pointer-events: none;
    user-select: none;
    line-height: 0.9;
    white-space: nowrap;
    z-index: 0;
}

.section-nl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-nl-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7eba8a;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-nl-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #7eba8a;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-nl-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.section-nl-subtitle {
    font-size: 16px;
    line-height: 1.68;
    color: rgba(255,255,255,0.56);
    margin: 0 0 32px;
    max-width: 440px;
}

.section-nl-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.section-nl-checks li {
    font-size: 14px;
    color: rgba(255,255,255,0.70);
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}
.section-nl-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #32653d;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

.section-nl-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 44px 40px;
}

.section-nl-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.section-nl-form-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.42);
    margin: 0 0 28px;
}

/* Gravity Forms inside nl card */
.section-nl-form-card .gform_wrapper { width: 100%; }
.section-nl-form-card .gfield_label,
.section-nl-form-card .gform_wrapper label {
    color: rgba(255,255,255,.58) !important;
    font-size: 13px !important;
}
.section-nl-form-card .gform_wrapper input[type="email"],
.section-nl-form-card .gform_wrapper input[type="text"] {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    width: 100% !important;
    transition: border-color 0.2s !important;
}
.section-nl-form-card .gform_wrapper input[type="email"]:focus,
.section-nl-form-card .gform_wrapper input[type="text"]:focus {
    border-color: rgba(50,101,61,0.6) !important;
    outline: none !important;
}
.section-nl-form-card .gform_wrapper input[type="email"]::placeholder,
.section-nl-form-card .gform_wrapper input[type="text"]::placeholder {
    color: rgba(255,255,255,0.28) !important;
}
.section-nl-form-card .gform_wrapper input[type="submit"],
.section-nl-form-card .gform_wrapper .gform_button {
    background: #32653d !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    width: 100% !important;
    margin-top: 6px !important;
    font-family: inherit !important;
}
.section-nl-form-card .gform_wrapper input[type="submit"]:hover,
.section-nl-form-card .gform_wrapper .gform_button:hover {
    background: #285231 !important;
}

/* Fallback form inside nl card */
.section-nl-form-card .pricing-form-fallback {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section-nl-form-card .pricing-form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-nl-form-card .pricing-input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}
.section-nl-form-card .pricing-input:focus {
    border-color: rgba(50,101,61,0.6);
}
.section-nl-form-card .pricing-input::placeholder {
    color: rgba(255,255,255,0.28);
}
.section-nl-form-card .btn-green {
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
    display: block;
}

.section-nl-privacy {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    line-height: 1.6;
    margin-top: 16px;
}
.section-nl-privacy a {
    color: rgba(255,255,255,0.48);
    text-decoration: underline;
}

/* ── Mobile: newsletter section ── */
@media (max-width: 1024px) {
    .section-nl {
        padding: 72px 60px;
    }
    .section-nl-content {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .section-nl-deco {
        display: none;
    }
    .section-nl-subtitle {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .section-nl {
        padding: 60px 24px;
    }
    .section-nl-form-card {
        padding: 28px 24px;
    }
}

/* ════════════════════════════════════════════
   FOOTER  —  inner pages: remove overlap
════════════════════════════════════════════ */
body:not(.home) footer {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

.section-nl {
    position: relative;
    z-index: 20;
}

/* ════════════════════════════════════════════
   SINGLE POST  —  Editorial template
════════════════════════════════════════════ */

/* ── Post hero ── */
.post-hero {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16,26,21,0.35) 0%,
        rgba(16,26,21,0.65) 60%,
        rgba(16,26,21,0.88) 100%
    );
}
.post-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 56px var(--pad-x);
    max-width: 860px;
}
.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.post-back:hover {
    color: #fff;
}
.post-hero-cats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.post-cat-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #32653d;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}
.post-hero-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 20px;
    text-wrap: balance;
}
.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.58);
}
.post-hero-sep {
    opacity: 0.4;
}
.post-hero-date,
.post-hero-read {
    font-size: 14px;
}

/* ── Article wrapper ── */
.post-article {
    background: #fff;
    padding: 72px var(--pad-x);
}
.post-article-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* ── Article typography ── */
.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2e3235;
}
.post-content > * + * {
    margin-top: 1.4em;
}
.post-content h2 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #101a15;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
.post-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #101a15;
    margin-top: 1.8em;
    margin-bottom: 0.4em;
}
.post-content p {
    margin: 0;
    color: #3a3f44;
}
.post-content ul,
.post-content ol {
    padding-left: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.post-content ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    color: #3a3f44;
}
.post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #32653d;
}
.post-content ol {
    padding-left: 1.6em;
}
.post-content ol li {
    color: #3a3f44;
}
.post-content strong {
    font-weight: 700;
    color: #101a15;
}
.post-content a {
    color: #32653d;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.post-content a:hover {
    color: #285231;
}
.post-content blockquote {
    border-left: 3px solid #32653d;
    margin: 0;
    padding: 4px 0 4px 24px;
    font-size: 20px;
    font-style: italic;
    color: #4a4e53;
    line-height: 1.6;
}
.post-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    outline: 1px solid rgba(16,26,21,0.06);
}
.post-content figure {
    margin: 0;
}
.post-content figcaption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}
.post-content hr {
    border: none;
    border-top: 1px solid #e8ede9;
    margin: 2em 0;
}

/* ── Post footer row ── */
.post-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #e8ede9;
}
.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #32653d;
    text-decoration: none;
    transition: gap 0.2s;
}
.post-back-link:hover {
    gap: 12px;
}
.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}
.post-share-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.post-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f7f7f5;
    color: #2e3235;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.post-share-btn:hover {
    background: #101a15;
    color: #fff;
}

/* ── Related posts ── */
.post-related {
    background: #f7f7f5;
    padding: 80px var(--pad-x);
}
.post-related-inner {
    width: 100%;
}
.post-related-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #101a15;
    margin: 0 0 48px;
}
.post-related-grid {
    margin-top: 0;
}

/* ── Mobile: single post ── */
@media (max-width: 1024px) {
    .post-hero-inner {
        padding: 48px 60px;
    }
    .post-article {
        padding: 60px 60px;
    }
    .post-related {
        padding: 60px 60px;
    }
}
@media (max-width: 768px) {
    .post-hero {
        min-height: 400px;
    }
    .post-hero-inner {
        padding: 40px 24px;
    }
    .post-article {
        padding: 48px 24px;
    }
    .post-related {
        padding: 48px 24px;
    }
    .post-footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .post-content {
        font-size: 17px;
    }
    .post-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Contact inner pages: vertically center text block ── */
.section-contact--inner .contact-inner {
    align-items: center;
}

/* ── Timeline (onze aanpak: ons verhaal) ── */
.ip-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 16px;
}

.timeline-item {
    position: relative;
    padding: 0 0 36px 32px;
    border-left: 2px solid #e2ece3;
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green, #32653d);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--green, #32653d);
}

.timeline-year {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green, #32653d);
    margin-bottom: 6px;
}

.timeline-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5a4f;
}

/* ── Mission grid (onze aanpak: missie) ── */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    transition: background 0.25s, transform 0.25s;
}

.mission-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: rgba(50,101,61,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ec48a;
    margin: 0 0 20px 0;
    flex-shrink: 0;
}

.mission-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.mission-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(247,247,245,0.6);
    margin: 0;
}

@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ip-timeline {
        margin-top: 40px;
        padding-left: 8px;
    }
}

/* ── Sortering stack: bar chart layout ── */
.sortering-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.sortering-row {
    display: grid;
    grid-template-columns: 100px 1fr 110px;
    align-items: center;
    gap: 16px;
}

.sortering-row-metal {
    font-size: 14px;
    font-weight: 600;
    color: rgba(247,247,245,0.7);
    text-align: right;
}

.sortering-row-bar {
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
}

.sortering-row-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 1s cubic-bezier(0.16,1,0.3,1);
}

.sortering-row-fill--1 {
    width: 22%;
    background: rgba(247,247,245,0.3);
}

.sortering-row-fill--2 {
    width: 55%;
    background: #5a9e6a;
}

.sortering-row-fill--3 {
    width: 100%;
    background: var(--green, #32653d);
}

.sortering-row-val {
    font-size: 13px;
    font-weight: 700;
    color: rgba(247,247,245,0.55);
    white-space: nowrap;
}

.sortering-row-fill--3 ~ .sortering-row-val,
.sortering-row:last-child .sortering-row-val {
    color: #7ec48a;
}

.ip-body--muted {
    color: rgba(247,247,245,0.5);
}

@media (max-width: 768px) {
    .sortering-row {
        grid-template-columns: 80px 1fr 90px;
        gap: 10px;
    }
}

/* ── Stats split layout (replaces heavy dark stats section) ── */
.ip-section--stats-split {
    background: #f7f7f5;
    border-top: 1px solid #e8ede9;
    border-bottom: 1px solid #e8ede9;
}

.ip-stats-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.ip-stats-split-left .ip-heading {
    margin-top: 12px;
    margin-bottom: 0;
}

.ip-stats-split-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ip-stat-card {
    padding: 28px 24px;
    border-left: 1px solid #e2ece3;
    border-bottom: 1px solid #e2ece3;
}

.ip-stat-card:nth-child(1),
.ip-stat-card:nth-child(2) {
    border-bottom: 1px solid #e2ece3;
}

.ip-stat-card:nth-child(3),
.ip-stat-card:nth-child(4) {
    border-bottom: none;
}

.ip-stat-card:nth-child(odd) {
    border-left: none;
}

.ip-stat-card .ip-stat-val {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: var(--green, #32653d);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.ip-stat-card .ip-stat-label {
    font-size: 13px;
    color: #6b7a6e;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .ip-stats-split-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Card-style dark section (fiscaal voordeel) ── */
.ip-section--card-dark {
    background: transparent;
    padding-top: 40px;
    padding-bottom: 0;
}

.ip-section--card-dark .ip-wrap {
    background: #101a15;
    border-radius: 20px;
    padding: 64px 80px;
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .ip-section--card-dark .ip-wrap {
        padding: 56px 60px;
    }
}

@media (max-width: 768px) {
    .ip-section--card-dark .ip-wrap {
        padding: 48px 28px;
        border-radius: 16px;
    }
}

/* ── Horizontal steps (afbraak: hoe het loopt) ── */
.hsteps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 56px;
    align-items: start;
}

.hstep {
    position: relative;
    padding-right: 24px;
}

.hstep:last-child {
    padding-right: 0;
}

.hstep-num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--green, #32653d);
    margin-bottom: 16px;
}

.hstep-connector {
    position: absolute;
    top: 7px;
    left: calc(100% - 24px + 12px);
    right: 0;
    height: 1px;
    background: #d0ddd1;
    width: calc(100% - 16px);
    pointer-events: none;
}

/* Number dot */
.hstep-num::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green, #32653d);
    margin-bottom: 10px;
}

.hstep-title {
    font-size: 15px;
    font-weight: 700;
    color: #101a15;
    margin: 0 0 8px;
    line-height: 1.3;
}

.hstep-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7a6e;
    margin: 0;
}

@media (max-width: 900px) {
    .hsteps {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
    .hstep-connector {
        display: none;
    }
}

@media (max-width: 560px) {
    .hsteps {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ════════════════════════════════════════════
   PRIJSLIJST PAGE
════════════════════════════════════════════ */

.prijzen-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0f7f1;
    border: 1px solid #c8e0cc;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    color: #2e4f34;
    margin-bottom: 48px;
    line-height: 1.5;
}

.prijzen-disclaimer svg {
    flex-shrink: 0;
    color: #32653d;
    margin-top: 1px;
}

.prijzen-disclaimer a {
    color: #32653d;
    font-weight: 600;
    text-decoration: underline;
}

.prijzen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prijzen-card {
    background: #fff;
    border: 1.5px solid #e8ede9;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.prijzen-card:hover {
    border-color: #32653d;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(16,26,21,0.08);
}

.prijzen-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f0f4f1;
}

.prijzen-card-icon {
    width: 40px;
    height: 40px;
    background: #f0f7f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #32653d;
    flex-shrink: 0;
}

.prijzen-card-icon--copper { background: #fdf4ec; color: #b5621e; }
.prijzen-card-icon--alu    { background: #f0f4fa; color: #3a5f9e; }
.prijzen-card-icon--misc   { background: #f5f0fa; color: #6b3fa0; }
.prijzen-card-icon--elec   { background: #fef9ec; color: #a07c1a; }

.prijzen-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #101a15;
    margin: 0;
    letter-spacing: -0.01em;
}

.prijzen-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.prijzen-table td {
    padding: 10px 24px;
    border-bottom: 1px solid #f3f6f3;
    color: #3a4a3e;
    line-height: 1.4;
}

.prijzen-table tr:last-child td {
    border-bottom: none;
}

.prijzen-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: #32653d;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.prijzen-on-request {
    color: #8a9a8d !important;
    font-weight: 500 !important;
    font-style: italic;
}

.prijzen-footer-note {
    margin-top: 40px;
    font-size: 14px;
    color: #7a8a7e;
    text-align: center;
    line-height: 1.6;
}

.prijzen-footer-note a {
    color: #32653d;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .prijzen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .prijzen-grid {
        grid-template-columns: 1fr;
    }
    .prijzen-table td {
        padding: 9px 16px;
    }
    .prijzen-card-header {
        padding: 16px 16px 12px;
    }
}

/* ── Services static 3-grid ── */
.section-services--static {
    overflow: visible;
}

.services-static-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 var(--pad-x);
}

.service-card--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card--link:hover .service-card-img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .services-static-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
}

/* ── OFFERTE PAGE ── */
.section-offerte {
  background: #f7f7f5;
  min-height: 100vh;
  padding: 120px var(--pad-x) 100px;
}

.offerte-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Info col */
.offerte-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #32653D;
  margin-bottom: 16px;
}

.offerte-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #101A15;
  margin-bottom: 24px;
}

.offerte-title-green {
  color: #32653D;
}

.offerte-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 48px;
  max-width: 480px;
}

.offerte-contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.offerte-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.offerte-contact-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.offerte-contact-icon svg {
  width: 20px;
  height: 20px;
  color: #32653D;
  stroke: #32653D;
}

.offerte-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offerte-contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
}

.offerte-contact-value {
  font-size: 15px;
  font-weight: 500;
  color: #101A15;
  line-height: 1.5;
  text-decoration: none;
}

a.offerte-contact-value:hover {
  color: #32653D;
}

.offerte-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e2;
}

.offerte-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.offerte-trust-item svg {
  width: 16px;
  height: 16px;
  color: #32653D;
  flex-shrink: 0;
}

/* Form col */
.offerte-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 40px 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  position: sticky;
  top: 100px;
}

.offerte-form-title {
  font-size: 24px;
  font-weight: 700;
  color: #101A15;
  margin-bottom: 8px;
}

.offerte-form-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Reset contact-form-card overlap on offerte page */
.offerte-form-card.contact-form-card {
  margin-top: 0 !important;
}

/* Offerte form textarea taller than contact default */
.offerte-form-card .gform_wrapper textarea {
  min-height: 120px !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .offerte-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .offerte-form-card {
    position: static;
  }
  .section-offerte {
    padding: 100px var(--pad-x) 80px;
  }
}

@media (max-width: 600px) {
  .section-offerte {
    padding: 80px 24px 60px;
  }
  .offerte-form-card {
    padding: 28px 24px 36px;
  }
  .offerte-title {
    font-size: 32px;
  }
}

/* ── EBOOK POPUP ── */
.ebook-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 26, 21, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: ebookFadeIn 0.2s ease;
}

.ebook-popup-overlay[hidden] {
  display: none;
}

@keyframes ebookFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ebook-popup-card {
  background: #fff;
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: ebookSlideUp 0.25s cubic-bezier(0.22,1,0.36,1);
}

@keyframes ebookSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.ebook-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s;
}

.ebook-popup-close:hover {
  background: rgba(0,0,0,0.12);
}

.ebook-popup-img {
  background: #101a15;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ebook-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ebook-popup-content {
  padding: 36px 36px 36px 32px;
}

.ebook-popup-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #32653D;
  margin-bottom: 8px;
}

.ebook-popup-title {
  font-size: 26px;
  font-weight: 800;
  color: #101a15;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ebook-popup-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* GF inside popup */
.ebook-popup-content .gform_wrapper .gfield_label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #313131 !important;
  margin-bottom: 4px !important;
}

.ebook-popup-content .gform_wrapper input[type="text"],
.ebook-popup-content .gform_wrapper input[type="email"] {
  border: 1.5px solid #e5e5e2 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  width: 100% !important;
  background: #fafaf9 !important;
  transition: border-color 0.2s;
}

.ebook-popup-content .gform_wrapper input:focus {
  border-color: #32653D !important;
  background: #fff !important;
  outline: none !important;
}

.ebook-popup-content .gform_wrapper .gform_footer input[type="submit"],
.ebook-popup-content .gform_wrapper .gform_button {
  background: #32653D !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 8px !important;
  transition: background 0.2s !important;
}

.ebook-popup-content .gform_wrapper .gform_footer input[type="submit"]:hover,
.ebook-popup-content .gform_wrapper .gform_button:hover {
  background: #274f30 !important;
}

.ebook-popup-content .gform_confirmation_message {
  color: #32653D;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 0;
  line-height: 1.6;
}

/* Responsive popup */
@media (max-width: 600px) {
  .ebook-popup-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .ebook-popup-img {
    height: 180px;
  }
  .ebook-popup-content {
    padding: 24px 24px 32px;
  }
}

/* ── VIDEO SUPPORT ── */
.omc-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.omc-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.ip-split-img video,
.ip-split-img .omc-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ip-split-img .omc-video-bg video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─────────────────────────────────────────────
   BEDANKT PAGINA
───────────────────────────────────────────── */
.thankyou-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thankyou-wrap {
  text-align: center;
  padding: 100px var(--pad-x) 80px;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}
.thankyou-icon svg { width: 100%; height: 100%; }
.thankyou-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
.thankyou-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.15;
}
.thankyou-sub {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}
.thankyou-contact {
  font-size: 14px;
  color: #999;
  padding: 12px 20px;
  background: #f7f7f5;
  border-radius: 8px;
}
.thankyou-contact a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.thankyou-btn {
  margin-top: 8px;
  text-decoration: none;
}

.thankyou-scrap {
  width: 100%;
  background: #f7f7f5;
  padding: 60px var(--pad-x);
}
.thankyou-scrap-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.thankyou-scrap-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thankyou-scrap-icon {
  font-size: 24px;
  line-height: 1;
}
.thankyou-scrap-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.thankyou-scrap-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.thankyou-scrap-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.thankyou-scrap-card a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────
   404 PAGINA
───────────────────────────────────────────── */
.notfound-page {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notfound-wrap {
  text-align: center;
  padding: 80px var(--pad-x) 60px;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.notfound-number {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}
.notfound-4 {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -4px;
}
.notfound-gear {
  width: clamp(70px, 11vw, 110px);
  height: clamp(70px, 11vw, 110px);
  animation: notfound-spin 8s linear infinite;
  margin: 0 4px;
}
.notfound-gear svg { width: 100%; height: 100%; }
@keyframes notfound-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.notfound-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
.notfound-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}
.notfound-sub {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
}
.notfound-btn {
  margin-top: 8px;
  text-decoration: none;
}

.notfound-links {
  width: 100%;
  padding: 40px var(--pad-x) 80px;
  text-align: center;
}
.notfound-links-label {
  font-size: 13px;
  color: #999;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.notfound-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.notfound-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1.5px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.notfound-link:hover {
  border-color: var(--green);
  color: var(--green);
}
.notfound-link--cta {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 700;
}
.notfound-link--cta:hover {
  background: #274f30;
  border-color: #274f30;
  color: #fff;
}

@media (max-width: 900px) {
  .thankyou-scrap-inner { grid-template-columns: 1fr; max-width: 400px; }
  .thankyou-wrap, .notfound-wrap, .thankyou-scrap, .notfound-links { padding-left: 24px; padding-right: 24px; }
}

/* ------------------------------------------------------------
   LEGAL PAGES (Algemene Voorwaarden & Privacybeleid)
   ------------------------------------------------------------ */
.legal-page {
  background: #fff;
  min-height: 100vh;
  padding: 80px var(--pad-x) 100px;
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-header {
  padding-bottom: 48px;
  border-bottom: 1px solid #e8e8e5;
  margin-bottom: 56px;
}

.legal-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 16px;
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
  margin: 0 0 16px;
}

.legal-meta {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.legal-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 12px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 12px;
}

.legal-body ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal-body ul li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--green);
  text-decoration: underline;
}

.legal-body a:hover {
  color: #274f30;
}

.legal-footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid #e8e8e5;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.legal-link:hover {
  text-decoration: underline;
}

.legal-back {
  font-size: 14px;
  color: #999;
  text-decoration: none;
}

.legal-back:hover {
  color: var(--dark);
}

@media (max-width: 900px) {
  .legal-page { padding: 48px 24px 72px; }
  .footer-legal-nav { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }
  .footer-bottom { justify-content: center; }
}
