/* ============================================================
   LAGERHOF BUSINESS SOLUTIONS — MAIN CSS
   Design: Dutch Constructivist
   Fonts: Playfair Display (headings) + DM Sans (body)
   Colors: Teal #00626A | Light Teal #59A5A3 | Charcoal #1C2B3A | Gold #D59F2B | White #FFFFFF
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --teal:        #00626A;
  --teal-light:  #59A5A3;
  --teal-dark:   #004E55;
  --charcoal:    #1C2B3A;
  --charcoal-80: rgba(28,43,58,0.8);
  --gold:        #D59F2B;
  --gold-dark:   #B8861E;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light-grey:  #F2F1EE;
  --mid-grey:    #E5E3DF;
  --text-muted:  #6B7280;
  --border:      #E5E3DF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);

  --ease-out:   cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout: cubic-bezier(0.77, 0, 0.175, 1);

  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 2rem);
}

html { scroll-behavior: smooth;   overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.lh-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---------- TYPOGRAPHY ---------- */
.lh-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.lh-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--charcoal);
}

.lh-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

.lh-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

.lh-italic { font-style: italic; color: var(--teal); }

.lh-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #4B5563;
}

.lh-body-sm {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- BUTTONS ---------- */
.lh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

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

.lh-btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.lh-btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(213,159,43,0.35);
}

.lh-btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.lh-btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.lh-btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.lh-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
/* Alias: lh-btn-white = white outline button (used in CTA block) */
.lh-btn-white {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white) !important;
}

.lh-btn-outline--light {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.8) !important;
}
.lh-btn-outline--light:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--white) !important;
}
.lh-btn-white:hover {
  background: rgba(255,255,255,0.12);
}
.lh-btn-white svg {
  color: var(--white) !important;
  stroke: var(--white) !important;
}

.lh-btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.lh-btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

/* ---------- SECTION SPACING ---------- */
.lh-section { padding: clamp(4rem, 8vw, 6rem) 0; }
.lh-section-sm { padding: clamp(2rem, 4vw, 3rem) 0; }
.lh-section-lg { padding: clamp(5rem, 10vw, 8rem) 0; }

.lh-section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ---------- TOPBAR ---------- */
.lh-topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  font-family: var(--font-body);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lh-topbar__left { display: flex; align-items: center; gap: 1.5rem; }
.lh-topbar__right { display: flex; align-items: center; gap: 1.5rem; }

.lh-topbar a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 150ms;
}
.lh-topbar a:hover { color: var(--white); }

.lh-topbar__stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
}
.lh-topbar__stars span { color: rgba(255,255,255,0.75); }

/* ---------- NAVBAR ---------- */
.lh-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 200ms var(--ease-out), top 250ms var(--ease-out);
  overflow: visible;
}

.lh-navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lh-navbar__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
  overflow: visible;
}

.lh-navbar__logo img {
  height: 44px;
  width: auto;
}

.lh-navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.lh-navbar__nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: background 150ms, color 150ms;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lh-navbar__nav a:hover {
  background: rgba(0,98,106,0.07);
  color: var(--teal);
}

.lh-navbar__nav .has-dropdown { position: relative; }

.lh-navbar__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 9999;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: all 180ms var(--ease-out);
}

.lh-navbar__nav .has-dropdown:hover .lh-navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lh-navbar__dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
}

.lh-navbar__dropdown a:hover {
  background: rgba(0,98,106,0.07);
  color: var(--teal);
}

.lh-navbar__phone {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
  transition: color 150ms;
}
.lh-navbar__phone:hover { color: var(--teal); }

.lh-navbar__cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
}

/* Mobile hamburger */
.lh-navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.lh-navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 200ms var(--ease-out);
}

.lh-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10001;
  padding: 0;
  overflow-y: auto;
  flex-direction: column;
}
.lh-mobile-menu.open { display: flex; }

/* Mobile menu header (logo + close button) */
.lh-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.lh-mobile-menu__logo img {
  height: 36px;
  width: auto;
}
.lh-mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 150ms;
}
.lh-mobile-menu__close:hover { background: rgba(0,0,0,0.06); }

/* Mobile menu nav */
.lh-mobile-menu__nav {
  flex: 1;
  padding: 0.5rem 0;
  overflow-y: auto;
}

/* Mobile menu items */
.lh-mobile-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--charcoal);
  padding: 0.875rem 1.25rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 150ms, color 150ms;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
.lh-mobile-menu__item:hover {
  background: rgba(0,98,106,0.05);
  color: var(--teal);
}

/* Mobile menu accordion (Oplossingen submenu) */
.lh-mobile-menu__accordion {
  border-bottom: 1px solid var(--border);
}
.lh-mobile-menu__accordion .lh-mobile-menu__item {
  border-bottom: none;
}
.lh-mobile-menu__chevron {
  transition: transform 250ms var(--ease-out);
  flex-shrink: 0;
  color: var(--text-muted);
}
.lh-mobile-menu__accordion.is-open .lh-mobile-menu__chevron {
  transform: rotate(180deg);
}

/* Mobile menu submenu */
.lh-mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  background: #F5F9FB;
  transition: max-height 300ms var(--ease-out);
}
.lh-mobile-menu__sub-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 150ms;
}
.lh-mobile-menu__sub-item:hover { background: rgba(0,98,106,0.06); }
.lh-mobile-menu__sub-item--all {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.lh-mobile-menu__sub-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
}
.lh-mobile-menu__sub-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Mobile menu footer */
.lh-mobile-menu__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  background: var(--white);
}
.lh-mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 150ms;
}
.lh-mobile-menu__phone:hover { color: var(--teal); }
.lh-mobile-menu__cta {
  width: 100%;
  justify-content: center;
}

/* Mobile menu backdrop */
.lh-mobile-menu__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  transition: opacity 250ms var(--ease-out);
}
.lh-mobile-menu__backdrop.open {
  display: block;
  opacity: 1;
}

/* ---------- HERO SECTION ---------- */
.lh-hero {
  background: var(--white);
  padding: clamp(2.55rem, 5.1vw, 4.25rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}

.lh-hero__container {
  position: relative;
}

.lh-hero__spiral {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 380px;
  height: 380px;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  animation: spiralSpin 54s linear infinite;
  transform-origin: center center;
}



.lh-hero__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lh-hero__content { padding-right: 1rem; }

.lh-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lh-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* Microsoft Partner badge in hero */
.lh-hero__ms-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1a2e;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}
.lh-hero__ms-badge::before { display: none; }
.lh-hero__ms-badge span { color: #1a1a2e; font-weight: 600; }

.lh-hero__title { margin-bottom: 1.25rem; }

.lh-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 440px;
}

.lh-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lh-hero__image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
  width: 80%;
  margin-left: auto;
}

.lh-hero__image-wrap img:not(.lh-hero__spiral) {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}

.lh-hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}

.lh-hero__badge-dot {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
}

.lh-hero__badge-dot::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.lh-hero__badge-stat {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.lh-hero__badge-stat em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-body);
}

.lh-hero__badge-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- LOGO BAR ---------- */
.lh-logobar {
  background: #F5F9FB;
  border-top: 1px solid #E8EEF2;
  border-bottom: 1px solid #E8EEF2;
  padding: 2.5rem 0;
  overflow: hidden;
}

.lh-logobar__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6B7E8E;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.lh-logobar__track-wrap {
  overflow: hidden;
  position: relative;
}

.lh-logobar__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: logoScroll 65s linear infinite;
  width: max-content;
}

.lh-logobar__track:hover { animation-play-state: paused; }

.lh-logobar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 100px;
  flex-shrink: 0;
  padding: 0 2rem;
}

.lh-logobar__item img {
  width: 160px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) opacity(0.55);
  transition: filter 250ms var(--ease-out);
}
.lh-logobar__item:hover img {
  filter: grayscale(0) opacity(1);
}



@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .lh-logobar {
    padding: 1.25rem 0;
  }
  .lh-logobar__label {
    margin-bottom: 0.75rem;
  }
  .lh-logobar__item {
    width: 130px;
    height: 60px;
    padding: 0 1rem;
  }
  .lh-logobar__item img {
    width: 90px;
    height: 45px;
  }
}
@keyframes spiralSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---------- DIENSTEN SECTION ---------- */
.lh-diensten { background: var(--white); }

.lh-diensten__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Light card style matching React prototype */
.lh-dienst-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: box-shadow 250ms var(--ease-out), transform 250ms var(--ease-out);
}

.lh-dienst-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.lh-dienst-card__photo {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.lh-dienst-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
  display: block;
}

.lh-dienst-card:hover .lh-dienst-card__photo img { transform: scale(1.04); }

.lh-dienst-card__badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
}

.lh-dienst-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #F5F9FB;
}

.lh-dienst-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.lh-dienst-card__desc {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.lh-dienst-card__meer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 150ms, color 150ms;
}

.lh-dienst-card:hover .lh-dienst-card__meer {
  gap: 0.6rem;
  color: var(--teal-dark);
}

/* ---------- AANPAK SECTION ---------- */
.lh-aanpak { background: #F5F9FB; }

.lh-aanpak__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.lh-aanpak__image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
}

.lh-aanpak__image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.lh-aanpak__stats-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  z-index: 2;
}

.lh-aanpak__stats-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.lh-aanpak__stats-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.lh-aanpak__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lh-aanpak__stat { display: flex; flex-direction: column; }

.lh-aanpak__stat-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.lh-aanpak__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.lh-aanpak__content { padding-left: 0; }

.lh-aanpak__title { margin-bottom: 1.25rem; }

.lh-aanpak__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.lh-aanpak__usps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
/* USP accordion wrapper */
.lh-aanpak__usp {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #E8EEF2;
  overflow: hidden;
  transition: border-color 200ms;
}
/* hover removed - not clickable */
.lh-aanpak__usp.is-open { border-color: rgba(0,98,106,0.4); }

/* Trigger button (the clickable header row) */
.lh-aanpak__usp-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.lh-aanpak__usp-dot-wrap {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(0,98,106,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lh-aanpak__usp-dot-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  stroke: var(--teal);
  flex-shrink: 0;
}
.lh-aanpak__usp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.lh-aanpak__usp-body { flex: 1; }

.lh-aanpak__usp-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

/* Chevron icon */
.lh-usp-chevron {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 250ms cubic-bezier(0.23,1,0.32,1);
}
.lh-aanpak__usp.is-open .lh-usp-chevron {
  transform: rotate(180deg);
}

/* Collapsible panel */
.lh-aanpak__usp-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.23,1,0.32,1), padding 250ms ease;
  padding: 0 0.75rem;
}
.lh-aanpak__usp.is-open .lh-aanpak__usp-panel {
  max-height: 200px;
  padding: 0 0.75rem 0.75rem 3.25rem;
}

.lh-aanpak__usp-desc {
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.lh-aanpak__btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.lh-btn-gold { background: var(--gold); color: var(--white); border: 1.5px solid var(--gold); }
.lh-btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.lh-btn-ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.lh-btn-ghost:hover { background: var(--teal); color: var(--white); }

/* ---------- BRANCHES SECTION ---------- */
.lh-branches { background: var(--charcoal); }

.lh-branches .lh-eyebrow { color: var(--teal-light); }
.lh-branches .lh-h2 { color: var(--white); }
.lh-branches .lh-italic { color: var(--teal-light); }

.lh-branches__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.lh-branches__intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-top: 1rem;
  max-width: 520px;
}

.lh-btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  white-space: nowrap;
}
.lh-btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }

.lh-branches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lh-branch-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 260px;
}

.lh-branch-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.lh-branch-card:hover .lh-branch-card__img { transform: scale(1.04); }

.lh-branch-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,58,0.05) 0%, rgba(28,43,58,0.55) 45%, rgba(28,43,58,0.95) 100%);
}

.lh-branch-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
}

.lh-branch-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.lh-branch-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.lh-branches__cta-mobile { display: none; }
.lh-branches__cta {
  text-align: center;
  margin-top: 2.5rem;
}
.lh-branches__cta .lh-btn {
  display: inline-flex;
}
.lh-branch-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 150ms, color 150ms, gap 150ms;
}

.lh-branch-card:hover .lh-branch-card__link {
  opacity: 1;
  color: var(--teal-light);
  gap: 0.6rem;
}

/* ---------- WERKWIJZE SECTION ---------- */
.lh-werkwijze { background: var(--white); color: var(--charcoal); }

.lh-werkwijze .lh-eyebrow { color: var(--teal); }
.lh-werkwijze .lh-h2 { color: var(--charcoal); }
.lh-werkwijze .lh-italic { color: var(--teal); }

/* Two-column header */
.lh-werkwijze__header {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}

.lh-werkwijze__intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Body: timeline left, photo right */
.lh-werkwijze__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Timeline */
.lh-werkwijze__timeline {
  position: relative;
}

.lh-werkwijze__timeline-line {
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal), #E8EEF2);
  z-index: 0;
}

.lh-step-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.lh-step-row:last-child { margin-bottom: 0; }

.lh-step-row__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F9FB;
  border: 2px solid #E8EEF2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 1;
}

.lh-step-row__number--active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.lh-step-row__content { padding-bottom: 0.5rem; }

.lh-step-row__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.lh-step-row__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Photo */
.lh-werkwijze__photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lh-werkwijze__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* When using background-image instead of img */
.lh-werkwijze__photo[style*="background-image"] {
  min-height: 420px;
}

.lh-werkwijze__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,0.4) 0%, transparent 60%);
}

.lh-werkwijze__photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* ---------- CASES SECTION ---------- */
.lh-cases { background: var(--off-white); }

.lh-cases__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  align-items: stretch;
}
/* Featured case spans both rows in left column */
.lh-cases__grid > .lh-case-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}
/* Side cards go to right column, each in their own row */
.lh-cases__grid > .lh-case-card {
  grid-column: 2;
}

.lh-case-featured {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 100%;
  min-height: calc(215px * 2 + 1.25rem);
}

.lh-case-featured__img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.lh-case-featured:hover .lh-case-featured__img { transform: scale(1.03); }

.lh-case-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,58,0) 0%, rgba(28,43,58,0.5) 40%, rgba(28,43,58,0.92) 100%);
}

.lh-case-featured__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.lh-case-featured__cat {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.lh-case-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.lh-case-featured__excerpt {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lh-case-featured__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 150ms, color 150ms;
}

.lh-case-featured:hover .lh-case-featured__link {
  opacity: 1;
  color: var(--teal-light);
}

.lh-cases__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lh-case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  flex: 1;
  height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.lh-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.lh-case-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 500ms var(--ease-out);
}

.lh-case-card:hover .lh-case-card__img { transform: scale(1.04); }

.lh-case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,30,0.95) 0%, rgba(10,20,30,0.6) 45%, rgba(10,20,30,0.05) 100%);
}

.lh-case-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.lh-case-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.lh-case-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lh-case-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.625rem;
  max-width: 100%;
}

.lh-case-card__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 150ms, color 150ms;
}

.lh-case-card:hover .lh-case-card__link {
  opacity: 1;
  color: var(--teal-light);
}

/* ---------- REVIEWS SECTION ---------- */
.lh-reviews { background: var(--white); }
/* Review cards use off-white bg matching React prototype */
.lh-review-card { background: #F5F9FB; border-color: #E8EEF2; }

.lh-reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.lh-reviews__google-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.lh-reviews__google-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.lh-reviews__score-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.lh-reviews__stars { display: flex; gap: 0.2rem; color: var(--gold); font-size: 1rem; }

.lh-reviews__count { font-size: 0.8125rem; color: var(--text-muted); }

.lh-reviews__google-divider { width: 1px; height: 48px; background: var(--border); }

.lh-reviews__google-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 150ms;
}
.lh-reviews__google-link:hover { color: var(--charcoal); }
.lh-reviews__google-link span { font-weight: 500; }

.lh-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lh-review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow 200ms, transform 200ms;
}



.lh-review-card__stars { display: flex; gap: 0.2rem; color: var(--gold); margin-bottom: 1rem; }

.lh-review-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.lh-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lh-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
  flex-shrink: 0;
  overflow: hidden;
}
.lh-review-card__avatar--img {
  background: transparent;
}
.lh-review-card__avatar--img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.lh-review-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.lh-review-card__company {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- CTA SECTION ---------- */
.lh-cta {
  position: relative;
  padding: clamp(2rem, 3vw, 4.5rem) 0;
  overflow: hidden;
  background: var(--charcoal);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.lh-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,43,58,0.88) 0%, rgba(28,43,58,0.88) 50%, rgba(28,43,58,0.55) 100%);
  z-index: 1;
}

.lh-cta__inner {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.lh-cta__left { width: 100%; }

.lh-cta__eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

.lh-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.lh-cta__title em { font-style: italic; color: var(--teal-light); }

.lh-cta__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 480px;
}

.lh-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.lh-cta__contact-inline,
.lh-cta__contact-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.lh-cta__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lh-cta__contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.lh-cta__contact-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 150ms;
}
a.lh-cta__contact-value:hover { color: var(--teal-light); }


/* ============================================================
   CONTACT EXTRA ELEMENTS (boek-een-demo + contact page)
   ============================================================ */
.lh-contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

/* Contact info card items */
.lh-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.lh-contact__info-item:last-child {
  border-bottom: none;
}
.lh-contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(0,98,106,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.lh-contact__info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
}
.lh-contact__info-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.lh-contact__info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.lh-contact__info-value a {
  color: var(--charcoal);
  text-decoration: none;
}
.lh-contact__info-value a:hover {
  color: var(--teal);
}

.lh-contact__form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}
.lh-contact-faq-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(0,98,106,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,98,106,0.15);
  margin-bottom: -1.5rem;
}
.lh-contact-faq-hint__icon {
  flex-shrink: 0;
  color: var(--teal);
}
.lh-contact-faq-hint__text {
  font-size: 0.9375rem;
  color: var(--charcoal);
}
/* Reduce whitespace below FAQ hint on contact page */
.lh-contact-faq-hint + .vc_row,
.lh-contact-faq-hint ~ .vc_row:first-of-type {
  margin-top: -2rem !important;
}

.lh-contact-faq-hint__link {
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-left: 0.5rem;
}
.lh-contact-faq-hint__link:hover {
  text-decoration: underline;
}
/* Remove white background from the vc_row wrapping the FAQ hint */
.lh-contact-faq-hint {
  margin-bottom: 0;
}
.lh-container:has(.lh-contact-faq-hint) {
  padding-top: 1.5rem !important;
  padding-bottom: 0.25rem !important;
}
.vc_row:has(.lh-contact-faq-hint) {
  background: var(--off-white) !important;
}
@media (max-width: 768px) {
  .lh-contact-faq-hint {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .lh-contact-faq-hint__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .lh-contact-faq-hint__link {
    margin-left: 0;
    display: inline-block;
  }
}
.lh-contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231C2B3A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.lh-contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  grid-column: 1 / -1;
}
.lh-contact-form__checkbox input[type="checkbox"] {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  accent-color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.2rem;
  cursor: pointer;
  vertical-align: top;
}
.lh-contact-form__checkbox-text {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.5;
  cursor: pointer;
}
.lh-contact-form__row--full {
  grid-column: 1 / -1;
}

/* ---------- FOOTER ---------- */
.lh-footer {
  background: #111C26;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.lh-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lh-footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.lh-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.lh-footer__social { display: flex; gap: 0.75rem; }

.lh-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 150ms, color 150ms;
}

.lh-footer__social a:hover {
  background: var(--teal);
  color: var(--white);
}

.lh-footer__col-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.lh-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.lh-footer__links li { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

.lh-footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 150ms;
}

.lh-footer__links a:hover { color: var(--white); }

.lh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.lh-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.lh-footer__flexx {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  opacity: 0.75;
  transition: opacity 150ms;
}
.lh-footer__flexx-logo {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-left: 0.35rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.lh-footer__flexx:hover .lh-footer__flexx-logo {
  opacity: 1;
}
.lh-footer__flexx:hover { opacity: 1; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .lh-diensten__grid { grid-template-columns: repeat(2, 1fr); }
  .lh-branches__grid { grid-template-columns: repeat(2, 1fr); }
  .lh-branches__header { grid-template-columns: 1fr; }
  .lh-werkwijze__header { grid-template-columns: 1fr; }
  .lh-werkwijze__body { grid-template-columns: 1fr; }
  .lh-werkwijze__photo img { height: 320px; }
  .lh-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lh-hero__inner { grid-template-columns: 1fr; }
  .lh-hero__content { padding-right: 0; }
  .lh-hero__image-wrap { order: -1; }
  .lh-aanpak__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .lh-aanpak__image-wrap img { height: 320px; }
  .lh-branches__grid { grid-template-columns: 1fr; gap: 15px; }
  .lh-branches__header-cta { display: none; }
  .lh-branches__cta-mobile {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
  }
  .lh-branches__cta-mobile .lh-btn {
    width: 100%;
    justify-content: center;
  }

  /* Branch card: image on top, text below on mobile */
  .lh-branch-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .lh-branch-card__img {
    position: static;
    width: 100%;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .lh-branch-card__overlay {
    display: none;
  }
  .lh-branch-card__content {
    position: static;
    background: var(--charcoal);
    padding: 1rem 1.25rem;
  }
  .lh-branch-card__title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  .lh-branch-card__desc {
    display: none;
  }
  .lh-cases__grid { grid-template-columns: 1fr; }
  .lh-reviews__grid { grid-template-columns: 1fr; }
  .lh-cta__inner { grid-template-columns: 1fr; }
  .lh-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .lh-navbar__nav,
  .lh-navbar__phone,
  .lh-navbar__cta-wrap { display: none; }
  .lh-navbar__hamburger { display: flex; }
  .lh-mobile-menu__item,
  .lh-mobile-menu__accordion-toggle {
    font-size: 0.9375rem !important;
  }
  .lh-topbar__left { display: flex; }
  .lh-topbar__right { display: none; }
  body { font-size: 0.8125rem; line-height: 1.5; }
  p, li, span, a:not(.lh-btn):not(.lh-cta-btn), td, th, label,
  .lh-page-hero__subtitle, .lh-page-hero__subtitle p,
  .lh-card__text, .lh-card__desc, .lh-section__text,
  .lh-eyebrow, .lh-topbar a, .lh-navbar a,
  .lh-footer p, .lh-footer li, .lh-footer a,
  .lh-faq__answer, .lh-contact__label, .lh-contact__value,
  .lh-case-card__excerpt, .lh-dienst-intro p,
  .lh-kracht__desc, .lh-werkwijze__desc, .lh-branches__desc {
    font-size: 0.8125rem !important;
    line-height: 1.5;
  }
  .lh-mobile-menu__item,
  .lh-mobile-menu__accordion-toggle {
    font-size: 0.8125rem !important;
  }
  .lh-cta__contact-inline,
  .lh-cta__contact-row {
    display: none;
  }
  .lh-cta {
    background-image: none !important;
    background: linear-gradient(135deg, var(--charcoal) 0%, #0d3a42 40%, var(--teal) 100%) !important;
    padding: 2rem 0 !important;
  }
  .lh-cta__overlay {
    background: linear-gradient(135deg, rgba(28,43,58,0.45) 0%, rgba(0,98,106,0.15) 100%);
  }
  .lh-cta__actions {
    margin-top: 1.25rem;
  }
  .lh-cta__title {
    margin-bottom: 0.75rem;
  }
  .lh-cta__text {
    margin-bottom: 1rem;
  }
  .lh-cta__btns {
    margin-bottom: 1.25rem;
  }

  .lh-h2 { line-height: 1.15; }
  .lh-h3 { line-height: 1.2; }
  /* ── Consistent section padding on mobile ── */
  .lh-section     { padding: 2.5rem 0; }
  .lh-section-sm  { padding: 1.75rem 0; }
  .lh-section-lg  { padding: 2.5rem 0; }
  .lh-section-header { margin-bottom: 2rem; }
  /* ── Image wrappers: consistent vertical spacing on mobile ── */
  .lh-aanpak__image-wrap,
  .lh-werkwijze__photo,
  .lh-dienst-geschikt__img-wrap,
  .lh-over-ons-intro__img-wrap,
  .lh-case-featured__img-wrap,
  .lh-page-hero__img-wrap,
  .lh-hero__image-wrap {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* ── Page-hero padding on mobile ── */
  .lh-page-hero { padding: 2.5rem 0; }

  .lh-hero       { padding: 2.5rem 0 1.25rem; }
  .lh-diensten__grid { grid-template-columns: 1fr 1fr; }

  .lh-hero__spiral {
    width: 200px;
    height: 200px;
    bottom: -20px;
    right: -20px;
    opacity: 0.08;
  }
  .lh-page-hero__spiral {
    width: 160px;
    height: 160px;
    bottom: -10px;
    right: -10px;
    opacity: 0.08;
  }
}

@media (max-width: 480px) {
  .lh-diensten__grid { grid-template-columns: 1fr; }
  .lh-reviews__header { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   PAGE HERO (subpagina's)
   ============================================================ */
.lh-page-hero {
  background: var(--charcoal);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.lh-page-hero__inner {
  max-width: 720px;
}
.lh-page-hero .lh-eyebrow {
  color: var(--teal-light);
  margin-bottom: 1rem;
}
.lh-page-hero .lh-h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.lh-page-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================
   DIENST HERO (single-dienst)
   ============================================================ */
.lh-dienst-hero {
  /* Inherits dark charcoal background from .lh-page-hero */
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}
.lh-dienst-hero .lh-page-hero__spiral {
  opacity: 0.12;
}
/* Dark background — outline button uses white */
.lh-dienst-hero .lh-btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.lh-dienst-hero .lh-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lh-dienst-hero__badge {
  display: inline-block;
  color: var(--teal);
  margin-bottom: 1rem;
}
.lh-dienst-hero .lh-h1,
.lh-dienst-hero__content .lh-h1 {
  color: var(--white) !important;
  margin-bottom: 1.25rem;
}
.lh-dienst-hero__lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.lh-dienst-hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.lh-dienst-hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.lh-dienst-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   DIENST BODY (intro + voordelen)
   ============================================================ */
.lh-dienst-body__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.lh-dienst-body__intro .lh-eyebrow {
  margin-bottom: 1rem;
}
.lh-dienst-body__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
}
.lh-dienst-body__text p + p {
  margin-top: 1rem;
}
.lh-dienst-body__voordelen .lh-eyebrow {
  margin-bottom: 1.25rem;
}

/* Voordelen grid */
.lh-dienst-voordelen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.lh-voordeel-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow 200ms var(--ease-out);
}

.lh-voordeel-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lh-voordeel-card__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.lh-voordeel-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 3-column diensten grid variant */
.lh-diensten__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   RESPONSIVE — dienst pages
   ============================================================ */
@media (max-width: 900px) {
  .lh-dienst-hero__inner { grid-template-columns: 1fr; }
  .lh-dienst-hero__img-wrap { display: none; }
  .lh-dienst-body__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lh-diensten__grid--3col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .lh-diensten__grid--3col { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO — with image variant (subpagina's)
   ============================================================ */

.lh-page-hero__spiral {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 380px;
  height: 380px;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
  animation: spiralSpin 72s linear infinite;
  transform-origin: center center;
}

.lh-page-hero__bg-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lh-page-hero__container {
  position: relative;
  z-index: 1;
}

.lh-page-hero__inner {
  max-width: 720px;
}

.lh-page-hero--with-img .lh-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: none;
}

.lh-page-hero__content {
  position: relative;
  z-index: 3;
}

.lh-page-hero__eyebrow {
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.lh-page-hero .lh-eyebrow {
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.lh-page-hero__title,
.lh-page-hero .lh-h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.lh-page-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.lh-page-hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}



.lh-page-hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  z-index: 3;
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}

.lh-page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}



/* ============================================================
   DIENST INTRO (Wat is X?)
   ============================================================ */
/* ================================================
   DIENST DETAIL PAGES — v2 redesign
   Design: editorial, no bullet lists, visual depth
   ================================================ */

/* --- DIENST INTRO --- */
.lh-dienst-intro {
  background: var(--white);
  padding: 5rem 0 4rem;
}
.lh-dienst-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.lh-dienst-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 2rem;
}
.lh-dienst-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lh-dienst-intro__tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--off-white);
  border: 1px solid rgba(42,122,111,0.2);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lh-dienst-intro__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.lh-dienst-intro__text--lead {
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.65;
}
.lh-dienst-intro__subblock {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  border-radius: 0 0.5rem 0.5rem 0;
}
.lh-dienst-intro__subheading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}
.lh-dienst-intro__subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* --- DIENST GESCHIKT --- */
.lh-dienst-geschikt {
  background: var(--off-white);
  padding: 5rem 0;
}
.lh-dienst-geschikt__header {
  margin-bottom: 1rem;
}
.lh-dienst-geschikt__title {
  margin-bottom: 0;
}
.lh-dienst-geschikt__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 0 2rem;
}
/* Desktop: 2-col grid on container — left: heading+intro+criteria, right: image */
.lh-dienst-geschikt .lh-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 4rem;
  align-items: start;
}
.lh-dienst-geschikt__header {
  grid-column: 1;
  grid-row: 1;
}
.lh-dienst-geschikt__intro {
  grid-column: 1;
  grid-row: 2;
}
.lh-dienst-geschikt__body {
  grid-column: 1;
  grid-row: 3;
}
.lh-dienst-geschikt__img-wrap {
  grid-column: 2;
  grid-row: 1 / 4;
}
.lh-dienst-geschikt__criteria {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lh-dienst-geschikt__cta {
  margin-top: 2rem;
}
.lh-dienst-geschikt__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1rem 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.lh-dienst-geschikt__item:last-of-type,
.lh-dienst-geschikt__item:nth-last-of-type(2) {
  border-bottom: none;
}
.lh-dienst-geschikt__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(42,122,111,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 0.1rem;
}
.lh-dienst-geschikt__item-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
  padding-top: 0.45rem;
}
.lh-dienst-geschikt__cta {
  margin-top: 2rem;
}
.lh-dienst-geschikt__img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.lh-dienst-geschikt__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.lh-dienst-geschikt__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,42,51,0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.lh-dienst-geschikt__caption strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}
.lh-dienst-geschikt__caption span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* --- DIENST FUNCTIES --- */
.lh-dienst-functies {
  background: var(--white);
  padding: 5rem 0;
}
.lh-dienst-functies__header {
  margin-bottom: 3.5rem;
}
.lh-dienst-functies__title {
  margin-bottom: 1rem;
}
.lh-dienst-functies__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}
.lh-dienst-functies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  overflow: hidden;
}
.lh-dienst-functies__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.lh-dienst-functies__item:nth-child(even) {
  border-right: none;
}
.lh-dienst-functies__item:nth-last-child(-n+2) {
  border-bottom: none;
}
.lh-dienst-functies__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(42,122,111,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 0.1rem;
}
.lh-dienst-functies__content {
  flex: 1;
}
.lh-dienst-functies__item-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}
.lh-dienst-functies__item-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- DIENST KRACHT --- */
.lh-dienst-kracht {
  background: var(--charcoal);
  padding: 5rem 0;
}
.lh-dienst-kracht__header {
  margin-bottom: 3rem;
}
.lh-dienst-kracht__title {
  color: var(--white);
  margin-bottom: 1rem;
}
.lh-dienst-kracht__intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}
.lh-dienst-kracht__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
.lh-dienst-kracht__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.25rem 2rem;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}

.lh-dienst-kracht__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(42,122,111,0.35);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
  margin-top: -0.25rem;
}
.lh-dienst-kracht__item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.lh-dienst-kracht__item-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}
.lh-dienst-kracht__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.lh-dienst-kracht__cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}


.lh-cta,
.lh-footer,
.lh-topbar,
.lh-faq,
.lh-contact,
.lh-over-ons,
.lh-boek-demo,
.lh-branches-page,
.lh-dienst-hero,
.lh-dienst-intro,
.lh-dienst-geschikt,
.lh-dienst-functies,
.lh-dienst-kracht,
.lh-dienst-cta,
.lh-klantcases-page,
.lh-cases-grid,
.lh-page-hero {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.lh-contact {
  background: var(--off-white);
}

/* ============================================================
   OVER ONS PAGE — v2 redesign (class names match PHP output)
   ============================================================ */

/* Stats bar */
.lh-over-ons-stats {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.lh-over-ons-stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lh-over-ons-stats__item {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lh-over-ons-stats__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.lh-over-ons-stats__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.lh-over-ons-stats__star {
  color: var(--teal);
  font-size: 1.25rem;
  vertical-align: middle;
}
.lh-over-ons-stats__label {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-top: 0.35rem;
  display: block;
  font-weight: 500;
}

/* Intro section */
.lh-over-ons-intro {
  padding: 5rem 0;
  background: var(--white);
}
.lh-over-ons-intro__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.lh-over-ons-intro__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.lh-over-ons-intro__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.lh-over-ons-intro__title em {
  font-style: italic;
  color: var(--teal);
}
.lh-over-ons-intro__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.lh-over-ons-intro__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.lh-over-ons-intro__img-wrap {
  position: relative;
  z-index: 5;
}
.lh-over-ons-intro__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.lh-over-ons-intro__img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.lh-over-ons-intro__img-badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.lh-over-ons-intro__img-badge-label {
  font-size: 0.75rem;
  opacity: 0.85;
  display: block;
  margin-top: 0.2rem;
}

/* Missie statement */
.lh-over-ons-missie {
  background: var(--charcoal);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.lh-over-ons-missie::before {
  display: none;
}
.lh-over-ons-missie__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lh-over-ons-missie__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 2rem;
  display: block;
}
.lh-over-ons-missie__quote {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  font-weight: 600;
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.lh-over-ons-missie__sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* USPs / Waarden */
.lh-over-ons-usps {
  background: var(--off-white);
  padding: 5rem 0;
}
.lh-over-ons-usps__header {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.lh-over-ons-usps__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.lh-over-ons-usps__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.lh-over-ons-usps__intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 100%;
}
.lh-over-ons-usps__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.lh-over-ons__usp {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.lh-over-ons__usp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.lh-over-ons__usp-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0,98,106,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}
.lh-over-ons__usp-icon svg {
  stroke: var(--teal);
}
.lh-over-ons__usp-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.lh-over-ons__usp-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* Team section */
.lh-over-ons-team {
  background: var(--white);
  padding: 5rem 0;
}
.lh-over-ons-team__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: start;
}
.lh-over-ons-team__header {
  position: sticky;
  top: 100px;
}
.lh-over-ons-team__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.lh-over-ons-team__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.lh-over-ons-team__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 2rem;
}
.lh-over-ons-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 200px));
  gap: 1.5rem;
  align-items: start;
}
.lh-over-ons__member {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.lh-over-ons__member-photo {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lh-over-ons__member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lh-over-ons__member-initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
}
.lh-over-ons__member-info {
  padding: 1.25rem;
}
.lh-over-ons__member-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.lh-over-ons__member-role {
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.lh-over-ons__member-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.lh-over-ons__member-linkedin:hover {
  text-decoration: underline;
}

/* Partnerships section */
.lh-over-ons-partnerships {
  background: #eef0ed;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.lh-over-ons-partnerships__inner {
  text-align: center;
}
.lh-over-ons-partnerships__title {
  margin-bottom: 0.75rem;
}
.lh-over-ons-partnerships__desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.lh-over-ons-partnerships__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}
.lh-over-ons-partnerships__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.lh-over-ons-partnerships__logo-item img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Microsoft partner badges */
.lh-over-ons-partner {
  background: var(--off-white);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.lh-over-ons-partner__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lh-over-ons-partner__title {
  margin-bottom: 0.75rem;
}
.lh-over-ons-partner__desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 1.5rem 0 2.5rem;
  text-align: center;
}
.lh-over-ons-partner__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}
.lh-over-ons-partner__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

/* Mobile responsive for over-ons */
@media (max-width: 768px) {
  .lh-over-ons-stats__grid {
    flex-wrap: wrap;
  }
  .lh-over-ons-stats {
    padding: 2.5rem 0;
  }
  .lh-over-ons-stats__item {
    flex: 0 0 50%;
    padding: 1.5rem 1rem;
  }
  .lh-over-ons-stats__num {
    font-size: 2.75rem !important;
  }
  .lh-over-ons-stats__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-body);
    margin-top: 0.5rem;
  }
  .lh-over-ons-stats__star {
    font-size: 1.6rem;
  }
  .lh-over-ons-stats__divider {
    display: none;
  }
  .lh-over-ons-intro__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lh-over-ons-intro__img-badge {
    bottom: -1rem;
    left: 1rem;
  }
  .lh-over-ons-intro__title { font-size: 1.75rem; }
  .lh-over-ons-missie__quote { font-size: 1.375rem; }
  .lh-over-ons-usps__grid { grid-template-columns: 1fr; }
  .lh-over-ons-partnerships__logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .lh-over-ons-partnerships__logo-item {
    padding: 0.625rem 0.75rem;
  }
  .lh-over-ons-partnerships__logo-item img {
    height: 28px;
    max-width: 110px;
  }
  .lh-over-ons-team__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lh-over-ons-team__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lh-over-ons-team__header { position: static; }
  .lh-over-ons-team__grid { grid-template-columns: repeat(2, minmax(0, 150px)); justify-content: start; }
  .lh-over-ons-partner__inner { gap: 1.5rem; grid-template-columns: 1fr; }
}

/* ============================================================
   BRANCHES PAGE — detail sections
   ============================================================ */
.lh-branches-page {
  width: 100% !important;
}


/* ============================================================
   WPBAKERY layout fixes
   1. WPBakery adds margin-left/right: -15px to .vc_row to compensate for
      its column padding. Since we zero out .vc_column-inner padding, we must
      also zero out the negative row margins — otherwise content bleeds
      15px off-screen on mobile.
   2. WPBakery adds padding-left/right: 15px to .vc_column-inner.
      We zero this out because our sections use lh-container for their own
      horizontal padding.
   ============================================================ */
.vc_row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* ============================================================
   MOBILE SLIDERS — Cases & Reviews
   Activates at ≤768px via CSS scroll snapping + JS dot nav
   ============================================================ */

/* ---- CASES SLIDER (mobile) ---- */
@media (max-width: 768px) {
  /* Convert grid to horizontal scroll slider */
  .lh-cases__grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.875rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
  }
  .lh-cases__grid::-webkit-scrollbar { display: none; }

  /* Each case is its own slide */
  .lh-cases__grid > .lh-case-featured,
  .lh-cases__grid > .lh-case-card {
    flex: 0 0 82vw !important;
    max-width: 82vw !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    grid-column: unset !important;
    grid-row: unset !important;
  }

  /* Featured case height on mobile */
  .lh-cases__grid > .lh-case-featured {
    height: 340px !important;
    min-height: unset !important;
  }
  .lh-case-featured__img {
    height: 340px;
  }

  /* Side cards height on mobile — same as featured */
  .lh-cases__grid > .lh-case-card {
    height: 340px;
  }

  /* Hide excerpt/subtitle on mobile */
  .lh-case-featured__excerpt {
    display: none;
  }

  /* Dot navigation */
  .lh-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .lh-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 200ms, transform 200ms;
  }
  .lh-slider-dot.is-active {
    background: var(--teal);
    transform: scale(1.3);
  }
}

/* ---- REVIEWS SLIDER (mobile) ---- */
@media (max-width: 768px) {
  .lh-reviews__grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.875rem;
    padding-bottom: 0.5rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: unset;
  }
  .lh-reviews__grid::-webkit-scrollbar { display: none; }

  .lh-reviews__grid > .lh-review-card {
    flex: 0 0 85vw;
    max-width: 85vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}


/* === HERO MOBILE IMPROVEMENTS === */
@media (max-width: 768px) {
    .lh-hero__image-wrap {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        order: -1;
        border-radius: 12px;
        overflow: visible;
        position: relative;
        z-index: 5;
    }
    .lh-hero__image-wrap img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center top;
        border-radius: 12px;
    }
    .lh-hero__spiral {
        display: block !important;
        width: 145px !important;
        height: 145px !important;
        opacity: 0.15;
        /* Positioned inside image-wrap - bottom of image */
        top: auto;
        bottom: -38px;
        right: -20px;
        left: auto;
        position: absolute;
        z-index: 0;
    }
    .lh-hero__ctas {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .lh-hero__ctas .lh-btn {
      margin-bottom: 20px;
    }
    .lh-hero__inner {
        position: relative;
    }
    /* Page hero (dienst/branches pages) - mobile: flex column, img between h1 and subtitle */
    .lh-page-hero--with-img .lh-page-hero__inner {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .lh-page-hero--with-img .lh-page-hero__content {
        order: 1;
    }
    .lh-page-hero--with-img .lh-page-hero__img-wrap {
        order: 2;
    }
    .lh-page-hero--with-img .lh-page-hero__subtitle {
        order: 3;
    }
    .lh-page-hero--with-img .lh-page-hero__btns {
        order: 4;
    }
    .lh-page-hero__img-wrap {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 12px;
        overflow: visible;
        position: relative;
        z-index: 5;
    }
    .lh-page-hero__img-wrap img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
    }
    .lh-page-hero__subtitle {
        max-width: 100%;
        margin-bottom: 0;
    }
    .lh-page-hero__spiral {
        display: none !important;
    }
    .lh-page-hero__img-wrap::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 4px;
        right: -20px;
        width: 145px;
        height: 145px;
        background-image: url('/wp-content/themes/lagerhof-theme/assets/images/lagerhof-spiral.svg');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.15;
        pointer-events: none;
        z-index: 0;
        animation: spiralSpin 72s linear infinite;
        transform-origin: center center;
    }
    .lh-page-hero__inner {
        position: relative;
        overflow: visible;
    }
}

/* === BRANCHES HERO ALIGNMENT FIX === */
.lh-page-hero--with-image .lh-page-hero__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
@media (max-width: 768px) {
    .lh-page-hero--with-image .lh-page-hero__content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .lh-page-hero--with-image .lh-page-hero__img-wrap {
        margin-top: 0;
    }
}

/* === BRANCHES CTA BUTTON === */
.lh-branches__cta {
    text-align: center;
    margin-top: 2.5rem;
}
.lh-branches__cta .lh-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: 2px solid var(--color-teal);
    color: var(--color-teal);
    background: transparent;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.lh-branches__cta .lh-btn-outline:hover {
    background: var(--color-teal);
    color: white;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.lh-privacy-hero {
  background: var(--charcoal);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.lh-privacy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(42,122,111,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.lh-privacy-hero .lh-eyebrow {
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.lh-privacy-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.lh-privacy-hero__meta {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.lh-privacy-body {
  background: var(--off-white);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}
.lh-privacy-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.lh-privacy-content h1,
.lh-privacy-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.lh-privacy-content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.75rem;
}
.lh-privacy-content h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--teal);
}
.lh-privacy-content h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}
.lh-privacy-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.lh-privacy-content ul,
.lh-privacy-content ol {
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
}
.lh-privacy-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}
.lh-privacy-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lh-privacy-content a:hover {
  color: var(--gold);
}
.lh-privacy-content strong {
  font-weight: 600;
  color: var(--charcoal);
}
.lh-privacy-content > *:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .lh-privacy-content {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }
}

/* ============================================================
   BOEK EEN DEMO — VOORDELEN SECTION
   ============================================================ */
.lh-demo-voordelen {
  background: var(--off-white);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.lh-demo-voordelen__header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.lh-demo-voordelen__intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}
.lh-demo-voordelen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
/* Reduce gap between voordelen and form on demo page */
.lh-demo-voordelen + .lh-contact.lh-section {
  padding-top: 2rem;
}
.lh-demo-voordeel {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.lh-demo-voordeel__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 98, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.lh-demo-voordeel__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.lh-demo-voordeel__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .lh-demo-voordelen__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .lh-demo-voordeel {
    padding: 1.25rem;
  }
}

/* ============================================================
   KLANTCASE DETAIL — V2 REDESIGN (Magazine-style editorial)
   ============================================================ */

/* ── 1. HERO V2 — full-bleed image with dark overlay ── */
.lh-case-hero-v2 {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.lh-case-hero-v2__img-wrap {
  position: absolute;
  inset: 0;
}
.lh-case-hero-v2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.lh-case-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,43,58,0.25) 0%,
    rgba(28,43,58,0.55) 40%,
    rgba(28,43,58,0.92) 100%
  );
}
.lh-case-hero-v2__container {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(5rem, 10vw, 8rem);
}
.lh-case-hero-v2__content {
  max-width: 760px;
}
.lh-case-hero-v2__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 180ms var(--ease-out);
}
.lh-case-hero-v2__back:hover { color: var(--white); }
.lh-case-hero-v2__meta {
  margin-bottom: 1rem;
}
.lh-case-hero-v2__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(0,98,106,0.3);
  border: 1px solid rgba(0,98,106,0.5);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
}
.lh-case-hero-v2__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.lh-case-hero-v2__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 600px;
}

/* ── 2. INTRO V2 — sidebar + body ── */
.lh-case-intro-v2 {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}
.lh-case-intro-v2__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.lh-case-intro-v2__sidebar {
  position: sticky;
  top: 100px;
}
.lh-case-intro-v2__client-block,
.lh-case-intro-v2__service-block {
  margin-bottom: 1.5rem;
}
.lh-case-intro-v2__client-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.lh-case-intro-v2__client-name,
.lh-case-intro-v2__service-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
}
.lh-case-intro-v2__divider {
  height: 1px;
  background: var(--border);
  margin: 1.75rem 0;
}
.lh-case-intro-v2__cta {
  width: 100%;
  justify-content: center;
}
.lh-case-intro-v2__eyebrow {
  margin-bottom: 1.25rem;
}
.lh-case-intro-v2__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

/* ── 3. UITDAGING V2 — dark, numbered ── */
.lh-case-uitdaging-v2 {
  background: var(--charcoal);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.lh-case-uitdaging-v2::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,98,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.lh-case-uitdaging-v2__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}
.lh-case-uitdaging-v2__label-col {
  padding-top: 0.5rem;
}
.lh-case-uitdaging-v2__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.lh-case-uitdaging-v2__eyebrow {
  color: var(--teal-light) !important;
}
.lh-case-uitdaging-v2__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
}
.lh-case-uitdaging-v2__text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.lh-case-uitdaging-v2__text li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lh-case-uitdaging-v2__text li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ── 4. DOELSTELLINGEN V2 — teal accent cards ── */
.lh-case-doel-v2 {
  background: var(--off-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.lh-case-doel-v2__header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.lh-case-doel-v2__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: rgba(28,43,58,0.06);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lh-case-doel-v2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.lh-case-doel-v2__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.lh-case-doel-v2__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0,98,106,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.lh-case-doel-v2__text {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.55;
  font-weight: 500;
}

/* ── 5. OPLOSSING V2 — white, split layout ── */
.lh-case-oplossing-v2 {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.lh-case-oplossing-v2__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.lh-case-oplossing-v2__header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.lh-case-oplossing-v2__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: rgba(28,43,58,0.06);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lh-case-oplossing-v2__content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.lh-case-oplossing-v2__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.lh-case-oplossing-v2__content li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.65;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.lh-case-oplossing-v2__content li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.lh-case-oplossing-v2__img-col {
  position: sticky;
  top: 100px;
}
.lh-case-oplossing-v2__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ── 6. QUOTE V2 — teal pullquote ── */
.lh-case-quote-v2 {
  background: var(--teal);
  padding: clamp(3rem, 6vw, 4rem) 0;
}
.lh-case-quote-v2__block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.lh-case-quote-v2__marks {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}
.lh-case-quote-v2__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.lh-case-quote-v2__author {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  font-style: normal;
  font-weight: 500;
}

/* ── 7. RESULTAAT V2 — dark, numbered list ── */
.lh-case-resultaat-v2 {
  background: var(--charcoal);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.lh-case-resultaat-v2__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.lh-case-resultaat-v2__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.lh-case-resultaat-v2__eyebrow {
  color: var(--teal-light) !important;
  margin-bottom: 1rem;
}
.lh-case-resultaat-v2__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.lh-case-resultaat-v2__title em {
  color: var(--teal-light);
  font-style: italic;
}
.lh-case-resultaat-v2__intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.lh-case-resultaat-v2__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lh-case-res-v2__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lh-case-res-v2__item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lh-case-res-v2__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 0.2rem;
  min-width: 24px;
}
.lh-case-res-v2__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ── 8. CTA V2 ── */
.lh-case-cta-v2 {
  background: var(--off-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
}
.lh-case-cta-v2__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.lh-case-cta-v2__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}
.lh-case-cta-v2__title em {
  color: var(--teal);
  font-style: italic;
}
.lh-case-cta-v2__btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lh-case-intro-v2__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lh-case-intro-v2__sidebar { position: static; }
  .lh-case-uitdaging-v2__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .lh-case-uitdaging-v2__number { font-size: 17px; color: rgba(255,255,255,0.15); }
  .lh-case-doel-v2__number { font-size: 17px; color: rgba(28,43,58,0.15); }
  .lh-case-oplossing-v2__number { font-size: 17px; color: rgba(28,43,58,0.15); }
  .lh-case-resultaat-v2__number { font-size: 17px; color: rgba(255,255,255,0.15); }
  .lh-case-oplossing-v2__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lh-case-oplossing-v2__img-col { position: static; }
  .lh-case-oplossing-v2__img { aspect-ratio: 16/9; }
  .lh-case-resultaat-v2__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lh-case-cta-v2__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .lh-case-hero-v2 { min-height: 400px; }
  .lh-case-doel-v2__grid { grid-template-columns: 1fr; }
  .lh-case-cta-v2__btns { flex-direction: column; width: 100%; }
  .lh-case-cta-v2__btns .lh-btn { justify-content: center; }
}

/* ── BRANCHES HEADER ROW (CTA top-right) ── */
.lh-branches__header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.lh-branches__header-text {
  flex: 1;
  min-width: 0;
}
.lh-branches__header-cta {
  flex-shrink: 0;
  padding-bottom: 0.5rem;
}
@media (max-width: 640px) {
  .lh-branches__header-row { flex-direction: column; align-items: flex-start; }
  .lh-branches__header-cta { width: 100%; }
  .lh-branches__header-cta .lh-btn { width: 100%; justify-content: center; }
}

/* ── NAVBAR SPACER — injected by JS after fixed navbar ── */
.lh-navbar-spacer {
  height: 72px;
  display: block;
}
@media (max-width: 768px) {
  .lh-navbar-spacer {
    height: 60px;
  }

  /* --- Dienst detail pages mobile --- */
  .lh-dienst-intro { padding: 2.5rem 0; }
  .lh-dienst-kracht { padding: 2.5rem 0; }
  .lh-dienst-kracht__num { font-size: 20px; min-width: 1.5rem; }
  .lh-dienst-kracht__item { padding: 15px; }
  .lh-dienst-geschikt { padding: 2.5rem 0; }
  .lh-dienst-functies { padding: 2.5rem 0; }
  .lh-dienst-functies__header { margin-bottom: 1.25rem; }
  .lh-dienst-functies__item { padding: 15px; }
  .lh-dienst-intro__title {
    margin: 0 0 0.75rem;
  }
  /* Convert pills to compact checklist on mobile */
  .lh-dienst-intro__tags {
    flex-direction: column;
    gap: 0.2rem;
  }
  .lh-dienst-intro__tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    white-space: normal;
  }
  .lh-dienst-intro__tag::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background-color: var(--teal);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
  }
  .lh-dienst-intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lh-dienst-intro__title {
    font-size: 1.75rem;
  }
  /* dienst-geschikt: reset desktop grid, stack as single column */
  .lh-dienst-geschikt .lh-container {
    display: block;
  }
  .lh-dienst-geschikt__header {
    margin-bottom: 1rem;
  }
  .lh-dienst-geschikt__img-wrap {
    margin-bottom: 1.25rem;
  }
  .lh-dienst-geschikt__intro {
    margin-bottom: 1.25rem;
  }
  .lh-dienst-geschikt__body {
    display: block;
  }
  .lh-dienst-geschikt__img {
    height: 260px;
  }
  .lh-dienst-functies__grid {
    grid-template-columns: 1fr;
  }
  .lh-dienst-functies__item:nth-child(even) {
    border-right: none;
  }
  .lh-dienst-functies__item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .lh-dienst-functies__item:last-child {
    border-bottom: none;
  }
  .lh-dienst-kracht__grid {
    grid-template-columns: 1fr;
  }
  .lh-dienst-kracht__num {
    font-size: 1.75rem;
  }

}

/* ============================================================
   RESTORED MISSING CSS — appended to fix broken pages
   ============================================================ */

/* ---- lh-main (page wrapper) ---- */
.lh-main {
  min-height: 60vh;
}

/* ---- lh-mobile-menu__accordion-toggle ---- */
.lh-mobile-menu__accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: inherit;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   BRANCHES PAGE
   ============================================================ */
.lh-branches-page__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.lh-branches-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 90;
  padding: 0 1rem;
}

.lh-branches-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.75rem 0;
}

.lh-branches-nav__inner::-webkit-scrollbar {
  display: none;
}

.lh-branches-nav__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-right: 0.5rem;
}

.lh-branches-nav__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.lh-branches-nav__item {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--border);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lh-branches-nav__item:hover,
.lh-branches-nav__item.is-active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Branch item — alternating layout */
.lh-branch-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.lh-branch-item--reverse {
  direction: rtl;
}

.lh-branch-item--reverse > * {
  direction: ltr;
}

.lh-branch-item__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.lh-branch-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}



.lh-branch-item__content {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.lh-branch-item--reverse .lh-branch-item__content {
  background: var(--off-white);
}

.lh-branch-item__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.lh-branch-item__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.lh-branch-item__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lh-branch-item__bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}
.lh-branch-item__bullet svg {
  flex-shrink: 0;
  color: var(--teal);
}

.lh-branch-item__bullet::before {
  display: none;
}

@media (max-width: 900px) {
  .lh-cta {
    padding: 2rem 0 !important;
  }
  .lh-cta__actions {
    margin-top: 1.25rem;
  }
  .lh-branches-page__list { gap: 15px; }
  .lh-branch-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lh-branch-item--reverse {
    direction: ltr;
  }
  .lh-branch-item__img-wrap {
    min-height: 220px;
    order: -1;
  }
  .lh-branch-item__content {
    padding: 1.5rem;
    order: 1;
  }
  .lh-branch-item__title {
    font-size: 1.25rem;
  }
}

/* ============================================================
   KLANTCASES PAGE
   ============================================================ */
.lh-klantcases-page__header {
  padding: 3rem 0 2rem;
}

.lh-klantcases-page__header h1,
.lh-klantcases-page__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin: 0 0 1rem;
}

.lh-klantcases-page__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0.5rem 0 0;
  line-height: 1.7;
}

.lh-klantcases-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 0 4rem;
}

@media (max-width: 768px) {
  .lh-klantcases-page__header {
    padding: 0 0 1.25rem;
  }
  .lh-klantcases-page__grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

/* ============================================================
   OVER LAGERHOF — missing sub-classes
   ============================================================ */
.lh-over-ons-intro__content {
  max-width: 720px;
}

.lh-over-ons-intro__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--charcoal);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  display: block;
}

.lh-over-ons-partner__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lh-over-ons-partner__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.lh-over-ons-partner__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.lh-over-ons-partner__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.lh-over-ons-team__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .lh-over-ons-team__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lh-over-ons-partner__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.lh-over-ons-team__cta {
  text-align: left;
  margin-top: 2rem;
}

/* review card date (missing) */
.lh-review-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   CTA BLOCK — missing sub-class
   ============================================================ */
.lh-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  padding: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.lh-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0.5rem 0 4rem;
  align-items: start;
}

.lh-contact__info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lh-contact__info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.lh-contact__info-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
}

.lh-contact__info-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.lh-contact__info-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.lh-contact__info-link:hover {
  color: var(--charcoal);
  text-decoration: underline;
}

.lh-contact__map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  display: flex;
  flex-direction: column;
}
.lh-contact__map-wrap > a {
  display: block;
  flex: 1;
  line-height: 0;
  font-size: 0;
}

.lh-contact__map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lh-contact__form-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.lh-contact__form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}

.lh-contact__form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

/* Contact form fields */
.lh-contact-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lh-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.lh-contact-form__field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.lh-contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.lh-contact-form__req {
  color: var(--teal);
  margin-left: 2px;
}

.lh-contact-form__input,
.lh-contact-form__textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.lh-contact-form__input:focus,
.lh-contact-form__textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,98,106,0.12);
  background: var(--white);
}

.lh-contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.lh-contact-form__checkbox-label {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
  cursor: pointer;
}

.lh-contact-form__link {
  color: var(--teal);
  text-decoration: underline;
}

.lh-contact-form__msg {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-left: 4px solid transparent;
  line-height: 1.5;
}
.lh-contact-form__msg:not(:empty) {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.lh-contact-form__msg--success {
  background: #e8f7f0;
  color: #1a6b45;
  border-left-color: #2a7a6f;
}
.lh-contact-form__msg--success::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background: #2a7a6f;
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.05rem;
}
.lh-contact-form__msg--error {
  background: #fef2f2;
  color: #991b1b;
  border-left-color: #dc2626;
}
.lh-contact-form__msg--error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background: #dc2626;
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.05rem;
}

.lh-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  margin-top: 0.5rem;
}

.lh-contact-form__submit:hover {
  background: #004f56;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .lh-contact__grid {
    grid-template-columns: 1fr;
    padding: 0.9375rem 0 2rem;
    gap: 1rem;
  }
  .lh-contact-form__row--2 {
    grid-template-columns: 1fr;
  }
  .lh-contact__form-col {
    padding: 1.5rem;
    order: 2;
  }
  .lh-contact__info-col {
    order: 1;
  }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.lh-faq__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
}
.lh-faq__sidebar,
.lh-faq__list {
  min-width: 0;
}

.lh-faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.lh-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lh-faq__item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.lh-faq__item:last-child {
  border-bottom: none;
}

.lh-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
  transition: background 0.2s;
  background: none;
  border: none;
  text-align: left;
}

.lh-faq__question:hover {
  background: var(--off-white);
}

.lh-faq__question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

.lh-faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}

.lh-faq__item.is-open .lh-faq__icon {
  transform: rotate(45deg);
  background: var(--charcoal);
}

.lh-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.lh-faq__item.is-open .lh-faq__answer {
  max-height: 600px;
}

.lh-faq__answer-inner {
  padding: 0.75rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}
.lh-faq__answer-inner p {
  margin-bottom: 0.85rem;
}
.lh-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

/* FAQ sidebar */
.lh-faq__sidebar {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.lh-faq__sidebar-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.lh-faq__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.lh-faq__contact-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.lh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lh-btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 900px) {
  .lh-faq__layout {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .lh-faq__sidebar {
    position: static;
    order: 2;
  }
  .lh-faq__list {
    order: 1;
  }
}

/* ============================================================
   BOEK EEN DEMO — missing sub-classes
   ============================================================ */
.lh-demo-voordeel__body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   END RESTORED MISSING CSS
   ============================================================ */
