/* ═══════════════════════════════════════════════════════════
   SBI BUILDER BASE CSS v2 — Premium Quality Upgrade
   Werkt SAMEN met bestaande inline CSS (geen conflicten)
   Voegt toe: Poppins font, animaties, premium styling
   ═══════════════════════════════════════════════════════════ */

/* ── FONT UPGRADE ── */
body {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Skip link: eerste focus = naar hoofdinhoud (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100001;
  padding: 12px 20px;
  background: var(--c, #1e40af);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.skip-link:focus {
  left: 16px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Serif accent voor headings */
.heading-serif, h1 em, h2 em, .hero h1 em, .sec h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ── LABEL / BADGE UPGRADE ── */
.label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c);
  display: block;
}

/* ── MULTI-DIRECTIONAL REVEAL ANIMATIONS ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1);
}
.reveal-left.visible, .reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1);
}
.reveal-right.visible, .reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.93);
  transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1);
}
.reveal-scale.visible, .reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ── STAGGER DELAYS (20 niveaus; werkt op grids met .reveal / .card / .step) ── */
.stagger > *:nth-child(1) { transition-delay: 0ms !important; }
.stagger > *:nth-child(2) { transition-delay: 80ms !important; }
.stagger > *:nth-child(3) { transition-delay: 160ms !important; }
.stagger > *:nth-child(4) { transition-delay: 240ms !important; }
.stagger > *:nth-child(5) { transition-delay: 320ms !important; }
.stagger > *:nth-child(6) { transition-delay: 400ms !important; }
.stagger > *:nth-child(7) { transition-delay: 480ms !important; }
.stagger > *:nth-child(8) { transition-delay: 560ms !important; }
.stagger > *:nth-child(9) { transition-delay: 640ms !important; }
.stagger > *:nth-child(10) { transition-delay: 720ms !important; }
.stagger > *:nth-child(11) { transition-delay: 800ms !important; }
.stagger > *:nth-child(12) { transition-delay: 880ms !important; }
.stagger > *:nth-child(13) { transition-delay: 960ms !important; }
.stagger > *:nth-child(14) { transition-delay: 1040ms !important; }
.stagger > *:nth-child(15) { transition-delay: 1120ms !important; }
.stagger > *:nth-child(16) { transition-delay: 1200ms !important; }
.stagger > *:nth-child(17) { transition-delay: 1280ms !important; }
.stagger > *:nth-child(18) { transition-delay: 1360ms !important; }
.stagger > *:nth-child(19) { transition-delay: 1440ms !important; }
.stagger > *:nth-child(20) { transition-delay: 1520ms !important; }

/* Toegankelijkheid: geen langzame stagger of zware motion bij user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .builder-fade-up {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .stagger > * {
    transition-delay: 0ms !important;
  }
}

/* ── SECTION UPGRADES ── */
.sec-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.sec-header .label, .sec-header .sec-badge {
  margin-bottom: 10px;
}
.sec-header p {
  margin-top: 10px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 24px 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--c) 8%, #fff);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── FEATURE CARDS (About/USP) ── */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafb;
  border: 1px solid #e2e8f0;
  transition: all .3s;
}
.feature-card:hover {
  border-color: var(--c);
  transform: translateX(4px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 8%, #fff);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-card h4 {
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 2px;
}
.feature-card p {
  font-size: .8rem;
}

/* ── SERVICE LINK ── */
.service-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--c);
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-card:hover .service-link {
  gap: 10px;
}

/* ── VOORDELEN GRID UPGRADE ── */
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.voordeel-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius, 16px);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all .3s cubic-bezier(.23,1,.32,1);
}
.voordeel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: var(--c);
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: 24px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── SMOOTH SECTION TRANSITIONS ── */
.sec + .sec { border-top: none; }
.sec:nth-child(even) { background: #f8fafb; }

/* ── HEADING TYPOGRAPHY UPGRADE ── */
.heading-xl {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.04em;
}
.heading-lg {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.heading-md {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
}

/* ── CTA SECTION UPGRADE ── */
.cta-section {
  background: linear-gradient(135deg, var(--cd, #0f172a), color-mix(in srgb, var(--c) 30%, #0f172a));
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* ── BUTTON UPGRADES ── */
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* ── NAV TRANSPARENT → SCROLLED (upgrade) ── */
.nav-brand .nav-name span {
  color: var(--c);
}

/* ── PRINT CLEANUP ── */
@media print {
  .trust-bar, .voordelen-grid, .feature-card, .cta-section { break-inside: avoid; }
}

/* ── BUILDER ENGINE PHASE 1/2 UTILITIES ── */
.builder-shell {
  position: relative;
  isolation: isolate;
}

.builder-glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.builder-card-premium {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
  transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s cubic-bezier(.23,1,.32,1);
}
.builder-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14);
}

.builder-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
}

.builder-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.builder-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(.8rem, 2vw, 1.4rem);
}

.builder-sec-premium {
  padding: clamp(3.8rem, 8vw, 6rem) 0;
}

.builder-sec-premium:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.builder-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: color-mix(in srgb, var(--c) 10%, #fff);
  color: var(--c);
  border: 1px solid color-mix(in srgb, var(--c) 24%, #fff);
}

.builder-fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.23,1,.32,1), transform .55s cubic-bezier(.23,1,.32,1);
}
.builder-fade-up.visible,
.builder-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .builder-grid-2,
  .builder-grid-3 {
    grid-template-columns: 1fr;
  }
}

body.nav-open {
  overflow: hidden;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

#cookieBanner.is-hidden {
  display: none !important;
}

/* ── BUILDER ENGINE PHASE 2: RUNTIME UI (NO INLINE STYLES) ── */
.form-input-invalid {
  border-color: #ef4444 !important;
}

.form-submit-success {
  background: #10b981 !important;
  color: #fff !important;
}

.sbi-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 14px 24px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  max-width: 400px;
  animation: sbiToastIn .3s ease;
  opacity: 1;
  transition: opacity .3s ease;
}
.sbi-toast-success { background: #10b981; }
.sbi-toast-error { background: #ef4444; }
.sbi-toast-info { background: #3b82f6; }
.sbi-toast.is-hiding { opacity: 0; }

.sbi-clickable-media,
.sbi-clickable-bio {
  cursor: pointer;
}

.sbi-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: sbiFadeIn .2s ease;
}
.sbi-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.sbi-team-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sbiFadeIn .2s ease;
}
.sbi-team-popup-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  position: relative;
}
.sbi-team-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #94a3b8;
}
.sbi-team-popup-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.sbi-team-popup-role {
  color: var(--c);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 12px;
}
.sbi-team-popup-bio {
  color: #475569;
  line-height: 1.65;
  font-size: .9rem;
}

.sbi-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  z-index: 9999;
  transition: none;
  pointer-events: none;
}
.sbi-scroll-progress::-webkit-progress-bar {
  background: transparent;
}
.sbi-scroll-progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--c, #3b82f6), var(--ca, #06b6d4));
}
.sbi-scroll-progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--c, #3b82f6), var(--ca, #06b6d4));
}

.sbi-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #e2e8f0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 999;
  font-size: .82rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
  flex-wrap: wrap;
}
.sbi-cookie-link {
  color: var(--c, #0891b2);
  text-decoration: underline;
}
.sbi-cookie-accept {
  background: var(--c, #0891b2);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: .8rem;
  flex-shrink: 0;
}

.sbi-wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: transform .2s ease;
  text-decoration: none;
}
.sbi-wa-float:hover {
  transform: scale(1.1);
}

@keyframes sbiToastIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes sbiFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── MEESTERWERK STORY/PACKAGE BLOCKS ── */
.ms-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}
.ms-problem-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}
.ms-problem-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.ms-problem-card ul {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  line-height: 1.7;
  font-size: .88rem;
}
.ms-problem-card--solution {
  border-color: color-mix(in srgb, var(--c) 30%, #d1d5db);
  background: color-mix(in srgb, var(--c) 8%, #fff);
}

.ms-before-after {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}
.ms-ba-col {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
}
.ms-ba-col p {
  font-size: .88rem;
  color: #475569;
  line-height: 1.7;
}
.ms-ba-col--after {
  border-color: color-mix(in srgb, var(--c) 26%, #d1d5db);
  background: color-mix(in srgb, var(--c) 8%, #fff);
}
.ms-ba-label {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c);
}
.ms-ba-arrow {
  align-self: center;
  color: var(--c);
  font-size: 1.1rem;
}

.ms-pricing-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ms-price-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-price-card h3 {
  font-size: 1rem;
  font-weight: 800;
}
.ms-price-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--c);
}
.ms-price-card p {
  font-size: .84rem;
  color: #64748b;
  line-height: 1.65;
}
.ms-price-card .btn {
  margin-top: auto;
  justify-content: center;
}
.ms-price-card--featured {
  border-color: color-mix(in srgb, var(--c) 36%, #cbd5e1);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}
.ms-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .67rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-cta, linear-gradient(135deg, var(--c), var(--ca)));
}

@media (max-width: 900px) {
  .ms-problem-grid,
  .ms-pricing-grid {
    grid-template-columns: 1fr;
  }
  .ms-before-after {
    grid-template-columns: 1fr;
  }
  .ms-ba-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
}

/* ── MEESTERWERK TARIEVEN/DIENST DETAIL ── */
.ms2-pricing-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ms2-price-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}
.ms2-price-card h3 {
  font-size: 1rem;
  font-weight: 800;
}
.ms2-price-amount {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--c);
}
.ms2-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ms2-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #475569;
  font-size: .84rem;
}
.ms2-price-card li i {
  color: var(--c);
  margin-top: 2px;
}
.ms2-price-card .btn {
  margin-top: auto;
  justify-content: center;
}
.ms2-price-card--featured {
  border-color: color-mix(in srgb, var(--c) 34%, #cbd5e1);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .1);
}
.ms2-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .67rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-cta, linear-gradient(135deg, var(--c), var(--ca)));
}

.ms2-compare-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ms2-compare-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
}
.ms2-compare-item h4 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.ms2-compare-item p {
  font-size: .84rem;
  color: #64748b;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .ms2-pricing-grid,
  .ms2-compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ── MEESTERWERK DIENST TABS/BEFORE-AFTER ── */
.ms3-tabs {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
}
.ms3-tab-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ms3-tab-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}
.ms3-tab-btn:hover {
  border-color: var(--c);
  color: var(--c);
}
.ms3-tab-btn.is-active {
  background: var(--c);
  color: #fff;
  border-color: var(--c);
}
.ms3-tab-panel {
  display: none;
}
.ms3-tab-panel.is-active {
  display: block;
}

.ms3-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.ms3-ba-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
.ms3-ba-card p {
  font-size: .84rem;
  color: #64748b;
  line-height: 1.65;
}
.ms3-ba-card--after {
  border-color: color-mix(in srgb, var(--c) 28%, #cbd5e1);
  background: color-mix(in srgb, var(--c) 8%, #fff);
}
.ms3-ba-label {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c);
}
.ms3-ba-arrow {
  align-self: center;
  color: var(--c);
}

.ms3-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.ms3-step {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}
.ms3-step h4 {
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.ms3-step p {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .ms3-before-after,
  .ms3-steps {
    grid-template-columns: 1fr;
  }
  .ms3-ba-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
}

/* ── MEESTERWERK BLOG STACK ── */
.ms4-hero {
  min-height: 280px;
  padding: 48px 0 40px;
}
.ms4-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.ms4-hero-title--detail {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
}
.ms4-breadcrumb {
  font-size: .8rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 12px;
}
.ms4-breadcrumb a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}
.ms4-breadcrumb span {
  color: #fff;
}

.ms4-blog-layout {
  display: grid;
  grid-template-columns: 1fr min(320px, 100%);
  gap: 32px;
  align-items: start;
}
.ms4-blog-sidebar {
  position: sticky;
  top: 80px;
}
.ms4-blog-card,
.ms4-detail-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.ms4-blog-card {
  padding: 28px;
  margin-bottom: 24px;
}
.ms4-detail-card {
  padding: 32px;
  margin-bottom: 24px;
}
.ms4-blog-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ms4-badge-inline {
  margin: 0;
}
.ms4-blog-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  color: #94a3b8;
}
.ms4-blog-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0f172a;
}
.ms4-blog-body {
  font-size: .9rem;
  color: #334155;
}
.ms4-body-h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 20px 0 8px;
  color: #0f172a;
}
.ms4-body-h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 16px 0 6px;
  color: #1e293b;
}
.ms4-body-p {
  margin-bottom: 12px;
  line-height: 1.7;
}
.ms4-body-p--detail {
  margin-bottom: 16px;
  font-size: .95rem;
  color: #334155;
  line-height: 1.75;
}

.ms4-blog-author,
.ms4-detail-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ms4-blog-author {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}
.ms4-detail-author-row {
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.ms4-author-avatar,
.ms4-detail-author-avatar {
  border-radius: 999px;
  background: var(--cl);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.ms4-author-avatar {
  width: 36px;
  height: 36px;
  font-size: .84rem;
}
.ms4-detail-author-avatar {
  width: 44px;
  height: 44px;
}
.ms4-author-name {
  font-weight: 700;
  font-size: .88rem;
}
.ms4-author-role {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .74rem;
  color: #94a3b8;
}

.ms4-sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
}
.ms4-sidebar-card--soft {
  background: var(--cl);
  border-color: rgba(0, 0, 0, .06);
}
.ms4-sidebar-title {
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--c);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ms4-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ms4-sidebar-link {
  color: var(--c);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.ms4-sidebar-link-icon {
  width: 18px;
  text-align: center;
  opacity: .7;
}
.ms4-sidebar-text {
  font-size: .84rem;
  color: #334155;
  margin-bottom: 10px;
}
.ms4-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--c);
  text-decoration: none;
  margin-bottom: 6px;
}
.ms4-contact-link--muted {
  font-weight: 600;
  font-size: .82rem;
  color: #475569;
}
.ms4-sidebar-cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  font-size: .82rem;
  padding: 10px 18px;
}

.ms4-detail-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ms4-tag-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 600;
  background: var(--cl);
  color: var(--c);
  margin: 3px;
}
.ms4-share-row {
  display: flex;
  gap: 6px;
}
.ms4-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms4-share-btn[data-platform="twitter"] {
  color: #1da1f2;
}
.ms4-share-btn[data-platform="facebook"] {
  color: #1877f2;
}
.ms4-share-btn[data-platform="linkedin"] {
  color: #0a66c2;
}
.ms4-share-btn[data-platform="whatsapp"] {
  color: #25d366;
}

.ms4-related-link {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
  text-decoration: none;
  transition: all .2s;
  margin-bottom: 10px;
}
.ms4-related-link:hover {
  border-color: var(--c);
  transform: translateY(-2px);
}
.ms4-related-title {
  font-weight: 700;
  font-size: .88rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.ms4-related-read {
  font-size: .78rem;
  color: #64748b;
}
.ms4-related-read i {
  font-size: .65rem;
}

@media (max-width: 900px) {
  .ms4-hero {
    min-height: 240px;
    padding: 40px 0 32px;
  }
  .ms4-blog-layout {
    grid-template-columns: 1fr;
  }
  .ms4-blog-sidebar {
    position: static;
  }
}

/* ── MEESTERWERK LEGAL PAGES ── */
.ms5-hero {
  min-height: 220px;
  padding: 40px 0 32px;
}
.ms5-hero-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.ms5-wrap {
  max-width: 820px;
}
.ms5-legal-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  color: #334155;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
.ms5-legal-item + .ms5-legal-item {
  margin-top: 20px;
}
.ms5-legal-item h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #0f172a;
}
.ms5-legal-item p {
  font-size: .9rem;
  line-height: 1.8;
}
.ms5-link {
  color: var(--c);
  font-weight: 600;
}
.ms5-legal-updated {
  margin-top: 22px;
  font-size: .8rem;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .ms5-legal-card {
    padding: 22px;
  }
}

/* ── MEESTERWERK CONTACT PAGE ── */
.ms6-hero {
  min-height: 240px;
  padding: 40px 0 32px;
}
.ms6-hero-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}
.ms6-map-sec {
  padding-bottom: 8px;
}
.ms6-map-title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 14px;
  color: var(--cd, #0f172a);
}
.ms6-map-wrap {
  max-width: 100%;
}
.ms6-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.ms6-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
}
.ms6-contact-title {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0f172a;
}
.ms6-contact-row {
  margin-bottom: 10px;
  font-size: .86rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ms6-contact-row i {
  color: var(--c);
  width: 20px;
}
.ms6-link {
  color: var(--c);
}
.ms6-link--strong {
  font-weight: 600;
}
.ms6-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 14px 0;
}
.ms6-hours-title {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}
.ms6-hours-list {
  font-size: .82rem;
  color: #475569;
  line-height: 1.7;
}
.ms6-hours-row {
  display: flex;
  gap: 8px;
}
.ms6-hours-day {
  display: inline-block;
  width: 42px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .ms6-contact-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── MEESTERWERK DIENSTEN OVERVIEW ── */
.ms7-hero {
  min-height: 260px;
  padding: 44px 0 36px;
}
.ms7-hero-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.ms7-service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.ms7-service-arrow {
  font-size: .7rem;
  opacity: .4;
}
.ms7-sub-more {
  color: var(--c);
  font-weight: 600;
}

/* ── MEESTERWERK OVER ONS ── */
.ms8-hero {
  min-height: 280px;
  padding: 48px 0 40px;
}
.ms8-hero-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}
.ms8-about-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ms8-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}
.ms8-story-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.ms8-story-text {
  font-size: .9rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 14px;
}
.ms8-quote {
  border-left: 3px solid var(--c);
  padding-left: 16px;
  margin-top: 16px;
}
.ms8-quote-text {
  font-size: .88rem;
  color: #475569;
  font-style: italic;
  line-height: 1.6;
}
.ms8-center {
  text-align: center;
}
.ms8-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.ms8-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.ms8-team-bio {
  line-height: 1.5;
}
.ms8-certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.ms8-cert-icon {
  color: var(--c);
  font-size: 1.2rem;
}
.ms8-cert-name {
  font-weight: 700;
  font-size: .86rem;
}
.ms8-cert-desc {
  font-size: .76rem;
  color: #475569;
}

@media (max-width: 900px) {
  .ms8-story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── MEESTERWERK OFFERTE PAGE ── */
.ms9-hero {
  min-height: 240px;
  padding: 40px 0 32px;
}
.ms9-hero-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}
.ms9-form-note {
  font-size: .74rem;
  color: #94a3b8;
  margin-top: 8px;
}

/* ── MEESTERWERK DIENST DETAIL ── */
.ms10-card-link {
  text-decoration: none;
}
.ms10-arrow {
  font-size: .7rem;
  opacity: .4;
}
.ms10-content-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.ms10-hero {
  min-height: 280px;
  padding: 48px 0 40px;
}
.ms10-back-wrap {
  margin-bottom: 10px;
}
.ms10-back-link {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
}
.ms10-hero-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ms10-hero-icon {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}
.ms10-hero-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.ms10-hero-meta {
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
}
.ms10-layout {
  display: grid;
  grid-template-columns: 1fr min(340px, 100%);
  gap: 32px;
  align-items: start;
}
.ms10-detail-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.ms10-detail-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0f172a;
}
.ms10-detail-text {
  font-size: .9rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ms10-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cl);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--c);
  margin-bottom: 8px;
}
.ms10-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.ms10-panel-title {
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0f172a;
}
.ms10-panel-title-icon {
  color: var(--c);
  margin-right: 6px;
}
.ms10-list,
.ms10-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ms10-list-item {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .86rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ms10-list-item:last-child {
  border-bottom: 0;
}
.ms10-list-icon {
  color: var(--c);
  font-size: .78rem;
}
.ms10-faq-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 10px 0;
}
.ms10-faq-item:last-child {
  border-bottom: 0;
}
.ms10-faq-q {
  font-weight: 700;
  font-size: .86rem;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ms10-faq-chevron {
  font-size: .7rem;
  opacity: .4;
  transition: transform .2s;
}
.ms10-faq-a {
  font-size: .84rem;
  color: #475569;
  line-height: 1.6;
  padding-top: 8px;
  display: none;
}
.ms10-usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.ms10-usp-card {
  background: var(--cl);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.ms10-usp-icon {
  font-size: 1.2rem;
  color: var(--c);
  display: block;
  margin-bottom: 6px;
}
.ms10-usp-title {
  font-size: .78rem;
  font-weight: 700;
  color: #0f172a;
}
.ms10-usp-meta {
  font-size: .72rem;
  color: #64748b;
}
.ms10-aside {
  position: sticky;
  top: 80px;
}
.ms10-action-card {
  background: var(--cl);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
}
.ms10-aside-title {
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--c);
}
.ms10-btn-full {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  color: #fff !important;
}
.ms10-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--c);
  text-decoration: none;
  padding: 10px;
}
.ms10-services-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
}
.ms10-services-title {
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #0f172a;
}
.ms10-service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 600;
  color: #334155;
}
.ms10-service-link.is-active {
  font-weight: 800;
  color: var(--c);
}
.ms10-service-link-icon {
  width: 16px;
  text-align: center;
  opacity: .6;
  font-size: .78rem;
}

/* ── MEESTERWERK SUBDIENST DETAIL ── */
.ms11-card-link {
  text-decoration: none;
}
.ms11-content-wrap {
  margin-bottom: 20px;
}
.ms11-content-img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.ms11-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .82rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ms11-breadcrumb-link {
  color: var(--c);
  font-weight: 600;
}
.ms11-breadcrumb-sep {
  color: #94a3b8;
}
.ms11-breadcrumb-current {
  color: #64748b;
}
.ms11-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ms11-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}
.ms11-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
}
.ms11-meta {
  font-size: .88rem;
  color: #64748b;
}
.ms11-content-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  margin-top: 16px;
}
.ms11-content-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
}
.ms11-content-text {
  font-size: .9rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ms11-content-text:last-child {
  margin-bottom: 0;
}
.ms11-usp-grid {
  margin-top: 28px;
}
.ms11-usp-card {
  text-align: center;
  padding: 20px;
}
.ms11-usp-icon {
  font-size: 1.4rem;
  color: var(--c);
  margin-bottom: 8px;
  display: block;
}
.ms11-usp-text {
  font-weight: 700;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .ms10-layout,
  .ms10-usp-grid {
    grid-template-columns: 1fr;
  }
  .ms10-aside {
    position: static;
  }
}

/* ── MEESTERWERK HOME PREMIUM BLOCKS ── */
.ms12-voordelen-grid {
  margin-top: 28px;
}
.ms12-voordeel-card {
  padding: 28px;
}
.ms12-voordeel-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cl);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
}
.ms12-voordeel-title {
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 6px;
}
.ms12-voordeel-text {
  font-size: .84rem;
  color: #64748b;
  line-height: 1.6;
}

.ms12-guarantee-sec {
  background: var(--cd);
  color: #fff;
}
.ms12-guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ms12-guarantee-badge {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}
.ms12-guarantee-title {
  color: #fff;
  margin-bottom: 16px;
}
.ms12-guarantee-text {
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ms12-guarantee-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ms12-guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
}
.ms12-guarantee-item-icon {
  color: var(--c);
  font-size: 1.1rem;
}
.ms12-guarantee-item-text {
  font-weight: 600;
  font-size: .84rem;
}
.ms12-rating-wrap {
  text-align: center;
}
.ms12-rating-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 40px 32px;
}
.ms12-rating-icon {
  font-size: 3rem;
  color: var(--c);
  margin-bottom: 16px;
  display: block;
}
.ms12-rating-score {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.ms12-rating-title {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}
.ms12-rating-stars {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.ms12-rating-stars i {
  color: #fbbf24;
}
.ms12-rating-meta {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 6px;
}

.ms12-lead-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ms12-lead-title {
  margin-bottom: 8px;
}
.ms12-lead-text {
  margin: 0 auto 28px;
}
.ms12-lead-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  border: 1px solid #e2e8f0;
  text-align: left;
}
.ms12-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ms12-field {
  margin-bottom: 14px;
}
.ms12-field-lg {
  margin-bottom: 18px;
}
.ms12-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #374151;
}
.ms12-input,
.ms12-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: .88rem;
  font-family: inherit;
}
.ms12-textarea {
  resize: vertical;
}
.ms12-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: .92rem;
}
.ms12-submit-btn i {
  margin-left: 8px;
}
.ms12-privacy-note {
  text-align: center;
  font-size: .72rem;
  color: #94a3b8;
  margin-top: 10px;
}
.ms12-privacy-icon {
  margin-right: 4px;
}

@media (max-width: 900px) {
  .ms12-guarantee-grid,
  .ms12-guarantee-list,
  .ms12-lead-row {
    grid-template-columns: 1fr;
  }
}

/* ── MEESTERWERK SHOP / CHECKOUT / 404 ── */
.ms13-hidden {
  display: none;
}
.ms13-product-empty-icon {
  font-size: 2.5rem;
  color: var(--c);
  opacity: .4;
}
.ms13-shop-hero {
  min-height: 260px;
  padding: 44px 0 36px;
}
.ms13-shop-hero-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.ms13-shop-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ms13-shop-benefits {
  max-width: 900px;
  margin: 0 auto;
}
.ms13-shop-benefit-card {
  text-align: center;
  padding: 24px;
}
.ms13-shop-benefit-icon {
  font-size: 1.6rem;
  color: var(--c);
  margin-bottom: 10px;
  display: block;
}
.ms13-icon-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.2rem;
}
.ms13-cart-checkout {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.ms13-cart-note {
  font-size: .72rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 6px;
}
.ms13-shop-modal {
  max-width: 720px;
}
.ms13-modal-body-fill {
  padding: 0;
}

.ms13-checkout-hero {
  min-height: 200px;
  padding: 36px 0 28px;
}
.ms13-checkout-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.ms13-checkout-form {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}
.ms13-checkout-form-title {
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.ms13-checkout-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.ms13-checkout-note {
  font-size: .75rem;
  color: #64748b;
  margin-top: 10px;
}
.ms13-checkout-total-line {
  border: none;
  font-size: 1.05rem;
  padding-top: 12px;
}
.ms13-checkout-back {
  font-size: .78rem;
  color: #64748b;
  margin-top: 12px;
}

.ms13-order-hero {
  min-height: 180px;
  padding: 36px 0 28px;
}
.ms13-order-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.ms13-order-wrap {
  max-width: 640px;
}
.ms13-order-status {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  min-height: 120px;
  text-align: center;
}
.ms13-order-status-text {
  color: #64748b;
}

.ms13-404-sec {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ms13-404-wrap {
  max-width: 560px;
}
.ms13-404-code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--c);
  opacity: .15;
  line-height: 1;
  margin-bottom: 16px;
}
.ms13-404-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}
.ms13-404-text {
  font-size: .92rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}
.ms13-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ms13-btn-force-white {
  color: #fff !important;
}
.ms13-404-popular {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}
.ms13-404-popular-title {
  font-size: .82rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.ms13-404-popular-title-icon {
  color: var(--c);
  margin-right: 6px;
}
.ms13-404-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ms13-404-popular-item {
  padding: 6px 0;
}
.ms13-404-popular-link {
  color: var(--c);
  text-decoration: none;
  font-weight: 600;
  font-size: .86rem;
}
.ms13-404-popular-link-icon {
  width: 18px;
  opacity: .5;
}

/* ── MEESTERWERK FAQ + TEAM ── */
.ms14-hero {
  min-height: 260px;
  padding: 48px 0 36px;
}
.ms14-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.ms14-hero-text {
  max-width: 600px;
}
.ms14-faq-wrap {
  max-width: 800px;
}

.ms14-team-card {
  text-align: center;
  padding: 32px 20px;
}
.ms14-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--c);
}
.ms14-team-name {
  font-size: .95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.ms14-team-role {
  font-size: .8rem;
  font-weight: 600;
  color: var(--c);
  margin-bottom: 10px;
}
.ms14-team-bio {
  font-size: .82rem;
  color: #64748b;
  line-height: 1.5;
}
.ms14-team-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.ms14-team-cta-wrap {
  text-align: center;
}
.ms14-team-cta-text {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #64748b;
}
.ms14-btn-force-white {
  color: #fff !important;
}

/* ── MEESTERWERK REVIEWS + PORTFOLIO ── */
.ms15-hero {
  min-height: 260px;
  padding: 48px 0 36px;
}
.ms15-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.ms15-hero-text {
  max-width: 600px;
}

.ms15-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.ms15-review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}
.ms15-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.ms15-star {
  color: #e2e8f0;
}
.ms15-star--on {
  color: #fbbf24;
}
.ms15-review-text {
  font-size: .88rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.ms15-review-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ms15-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--c);
  font-size: .82rem;
}
.ms15-review-name {
  font-weight: 700;
  font-size: .84rem;
  color: #0f172a;
}
.ms15-review-loc {
  font-size: .72rem;
  color: #94a3b8;
}

.ms15-portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.ms15-portfolio-card {
  padding: 0;
  overflow: hidden;
}
.ms15-portfolio-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ms15-portfolio-body {
  padding: 18px;
}
.ms15-portfolio-title {
  font-size: .88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.ms15-portfolio-desc {
  font-size: .78rem;
  color: #64748b;
}
.ms15-portfolio-tag {
  display: inline-flex;
  margin-top: 8px;
  font-size: .68rem;
  background: var(--cl);
  color: var(--c);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
}

/* ── MEESTERWERK CPT PAGES ── */
.ms16-hero {
  min-height: 240px;
  padding: 44px 0 32px;
}
.ms16-hero--tall {
  min-height: 260px;
  padding: 48px 0 36px;
}
.ms16-hero-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.ms16-hero-title--wide {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.ms16-hero-text {
  max-width: 640px;
}

.ms16-wrap--narrow {
  max-width: 900px;
}
.ms16-wrap--compact {
  max-width: 640px;
}
.ms16-wrap--knowledge {
  max-width: 800px;
}

.ms16-job-card,
.ms16-cert-card,
.ms16-project-card {
  padding: 22px;
}
.ms16-job-title,
.ms16-project-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.ms16-job-meta,
.ms16-cert-desc,
.ms16-project-desc {
  font-size: .86rem;
  color: #64748b;
}
.ms16-job-meta {
  margin: 8px 0;
}
.ms16-job-btn,
.ms16-project-link {
  margin-top: 10px;
}
.ms16-btn-force-white {
  color: #fff !important;
}

.ms16-region-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ms16-region-item {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
  color: #334155;
}
.ms16-region-icon {
  color: var(--c);
  margin-right: 8px;
}
.ms16-region-note {
  margin-top: 20px;
  font-size: .9rem;
  color: #64748b;
}

.ms16-grid-certs {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.ms16-cert-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ms16-cert-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--cl, #f0fdfa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ms16-cert-icon {
  font-size: 1.3rem;
  color: var(--c);
}
.ms16-cert-title {
  font-size: .95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.ms16-grid-partners {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.ms16-partner-card {
  text-align: center;
  padding: 28px;
}
.ms16-partner-icon {
  font-size: 2rem;
  color: var(--c);
  opacity: .6;
}
.ms16-partner-title {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 800;
  color: #0f172a;
}
.ms16-partner-text {
  font-size: .8rem;
  color: #64748b;
}

.ms16-grid-projects {
  grid-template-columns: 1fr;
}

.ms16-knowledge-empty {
  color: #64748b;
}
.ms16-link {
  color: var(--c);
}

/* ── MEESTERWERK SITEMAP PAGE ── */
.ms17-hero {
  min-height: 220px;
  padding: 40px 0 32px;
}
.ms17-hero-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}
.ms17-hero-text {
  color: rgba(255, 255, 255, .85);
}
.ms17-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  font-size: .88rem;
}
.ms17-col-title {
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--c);
}
.ms17-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.9;
}
.ms17-list--blog {
  max-height: 280px;
  overflow: auto;
}
.ms17-xml-note {
  margin-top: 24px;
  font-size: .8rem;
  color: #94a3b8;
}
.ms17-link {
  color: var(--c);
}

/* ── MEESTERWERK REMAINING INLINE CLEANUP ── */
.ms18-footer-hours-title {
  margin-top: 16px;
}

.ms18-article-h2 {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 28px 0 14px;
  color: #0f172a;
}
.ms18-article-h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 22px 0 10px;
  color: #1e293b;
}
.ms18-article-p {
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: .95rem;
  color: #334155;
}

.ms18-product-card {
  overflow: hidden;
  padding: 0;
}
.ms18-product-media {
  overflow: hidden;
}
.ms18-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ms18-product-placeholder {
  background: var(--cl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms18-product-placeholder-icon {
  font-size: 2rem;
  color: var(--c);
  opacity: .3;
}
.ms18-product-body {
  padding: 14px 16px;
}
.ms18-product-title {
  font-size: .88rem;
  margin-bottom: 4px;
  color: #0f172a;
}
.ms18-product-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--c);
}

.ms18-home-section-cta {
  text-align: center;
  margin-top: 24px;
}
.ms18-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  margin-top: 8px;
}
.ms18-phone-strong {
  font-weight: 900;
}

/* ── MEESTERWERK INLINE EVENT + NAV CLEANUP ── */
.ms19-nav-chevron {
  font-size: .6rem;
  margin-left: 3px;
  opacity: .5;
}
.ms19-mega-menu {
  min-width: 240px;
}
.ms19-mega-grid {
  grid-template-columns: 1fr;
}
.ms19-service-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  margin: -24px -24px 16px;
}
.ms19-service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
