/* ============================================================
   ACTIEF SOFTWARE — Nieuwe site stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a2744;
  background: #fff;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAVIGATIE
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #dde4f0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 40px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #3a5080;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.main-nav ul li a:hover {
  color: #1a2744;
  background: #f0f4ff;
}

.main-nav ul li.nav-cta a {
  background: #2563eb;
  color: #fff !important;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
}

.main-nav ul li.nav-cta a:hover {
  background: #1d4ed8;
}

/* Submenu */
.has-sub { position: relative; }

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #dde4f0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  min-width: 180px;
  padding: 6px;
  flex-direction: column;
  gap: 0;
  z-index: 200;
}

/* Alleen via JS .open class — NOOIT via hover */
.has-sub.open > .submenu { display: flex; }


.submenu li a {
  font-size: 13px !important;
  white-space: nowrap;
  border-radius: 5px !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2744;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   KNOPPEN
   ============================================================ */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover { background: #1d4ed8; }

.btn-secondary {
  background: transparent;
  color: #1a2744;
  border-color: #c5d2e8;
}

.btn-secondary:hover { border-color: #1a2744; }

.btn-white {
  background: #fff;
  color: #2563eb;
}

.btn-white:hover { opacity: 0.92; }

.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn-white-outline:hover { border-color: #fff; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8effe 100%);
  border-bottom: 1px solid #dde4f0;
  padding: 72px 24px 64px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: #1a2744;
  margin-bottom: 18px;
  text-align: center;
}

.hero h1 strong { color: #2563eb; }

.hero-sub {
  font-size: 16px;
  color: #4a6080;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 440px;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #6080a0;
  justify-content: center;
}

.hero-checks span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-checks span::before {
  content: '✓';
  color: #2563eb;
  font-weight: 700;
}

/* Hero rechts: Google reviews blok */
.hero-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews-header {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #dde4f0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.07);
}

.reviews-google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1a2744;
}

.reviews-score-link {
  text-decoration: none;
  text-align: center;
}

.reviews-score-big {
  font-size: 44px;
  font-weight: 800;
  color: #1a2744;
  line-height: 1;
  margin-bottom: 4px;
}

.reviews-stars-row {
  font-size: 22px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.reviews-count {
  font-size: 12px;
  color: #6080a0;
  font-weight: 500;
}

.reviews-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dde4f0;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.05);
  transition: border-color 0.2s;
}

.review-card:hover { border-color: #2563eb; }

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.3;
}

.review-stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 2px;
}

.review-text {
  font-size: 13px;
  color: #4a6080;
  line-height: 1.6;
  font-style: italic;
}

.reviews-all-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  padding: 4px 0;
}

.reviews-all-link:hover { text-decoration: underline; }

.hv-bar {
  background: #f0f4ff;
  padding: 10px 16px;
  border-bottom: 1px solid #dde4f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hv-dots { display: flex; gap: 5px; }

.hv-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hv-dot.r { background: #ef4444; }
.hv-dot.y { background: #f59e0b; }
.hv-dot.g { background: #22c55e; }

.hv-title { font-size: 12px; font-weight: 700; color: #1a2744; }
.hv-url { font-size: 10px; color: #94a3b8; }

.hv-body { padding: 16px; }

.hv-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.hv-tab {
  padding: 4px 11px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #6080a0;
  background: #f0f4ff;
}

.hv-tab.active { background: #2563eb; color: #fff; }

.hv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.hv-card {
  background: #f8faff;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #e0e8f8;
}

.hv-card-label { font-size: 10px; color: #6080a0; font-weight: 500; margin-bottom: 3px; }
.hv-card-val { font-size: 18px; font-weight: 800; color: #1a2744; }
.hv-card-sub { font-size: 10px; color: #2563eb; font-weight: 600; }

.hv-table {
  background: #f8faff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e8f8;
  margin-bottom: 10px;
}

.hv-thead {
  display: grid;
  grid-template-columns: 2fr 1.3fr 0.7fr 1fr;
  padding: 6px 10px;
  background: #f0f4ff;
  font-size: 10px;
  font-weight: 700;
  color: #6080a0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hv-row {
  display: grid;
  grid-template-columns: 2fr 1.3fr 0.7fr 1fr;
  padding: 8px 10px;
  border-top: 1px solid #f0f4ff;
  font-size: 11px;
  align-items: center;
}

.hv-name { font-weight: 700; color: #1a2744; }
.hv-org { font-size: 11px; color: #4a6080; }
.hv-uren { font-weight: 700; }

.hv-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
}

.hv-badge.actief { background: #dbeafe; color: #1d4ed8; }
.hv-badge.gepland { background: #ede9fe; color: #6d28d9; }
.hv-badge.afgerond { background: #f0f9ff; color: #0369a1; }

.hv-bars { display: flex; gap: 6px; }

.hv-bar-item {
  flex: 1;
  background: #f0f4ff;
  border-radius: 6px;
  padding: 8px 10px;
  border: 1px solid #dde4f0;
}

.hv-bar-label { font-size: 10px; color: #6080a0; margin-bottom: 5px; font-weight: 600; }
.hv-bar-track { background: #dde4f0; border-radius: 3px; height: 5px; }
.hv-bar-fill { height: 5px; border-radius: 3px; }

/* ============================================================
   STRIP (statistieken balk)
   ============================================================ */

.strip {
  background: #1a2744;
  padding: 22px 24px;
}

.strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.strip-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strip-stats { display: flex; gap: 44px; flex-wrap: wrap; }

.strip-stat-num { font-size: 20px; font-weight: 800; color: #fff; }
.strip-stat-desc { font-size: 11px; color: #94a3b8; }

/* ============================================================
   SECTIES — gedeelde stijlen
   ============================================================ */

.section { padding: 72px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.sec-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.sec-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a2744;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.sec-sub {
  font-size: 15px;
  color: #4a6080;
  max-width: 100%;
  line-height: 1.7;
  margin-bottom: 44px;
}

/* ============================================================
   VIDEO SECTIE
   ============================================================ */

.video-section {
  background: #f0f4ff;
  border-top: 1px solid #dde4f0;
  border-bottom: 1px solid #dde4f0;
  padding: 72px 24px;
  text-align: center;
}

.video-section .sec-title,
.video-section .sec-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
.video-section .sec-sub { margin-bottom: 36px; }

.video-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(37,99,235,0.15);
  border: 1px solid #c5d2e8;
}

.video-wrap video {
  width: 100%;
  display: block;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */

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

.feat-card {
  background: #f8faff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #dde4f0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.feat-card:hover { border-color: #2563eb; }

.feat-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 8px;
}

.feat-card h3 a {
  text-decoration: none;
  color: inherit;
}

.feat-card h3 a:hover { color: #2563eb; }

.feat-card p {
  font-size: 14px;
  color: #4a6080;
  line-height: 1.65;
}

/* ============================================================
   USP BALK (veilig, eenvoudig, ABU, interactief)
   ============================================================ */

.usp-section {
  background: #1a2744;
  padding: 64px 24px;
}

.usp-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.usp-item img {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.usp-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.usp-item p { font-size: 13px; color: #94a3b8; line-height: 1.65; }

/* ============================================================
   APPS SECTIE
   ============================================================ */

.apps-section { background: #f8faff; border-top: 1px solid #dde4f0; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.app-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  border: 1px solid #dde4f0;
}

.app-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 10px;
}

.app-card p { font-size: 14px; color: #4a6080; line-height: 1.65; }

/* ============================================================
   PRIJS BANNER
   ============================================================ */

.prijs-banner {
  background: #2563eb;
  padding: 48px 24px;
  text-align: center;
}

.prijs-banner h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.prijs-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

/* ============================================================
   SOFTWARE SCREENSHOT (bestaande afbeelding)
   ============================================================ */

.screenshot-section { padding: 72px 24px; }

.screenshot-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.screenshot-img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
  border: 1px solid #dde4f0;
}

/* ============================================================
   CTA ONDERAAN
   ============================================================ */

.cta-section {
  background: #1a2744;
  padding: 72px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-tel {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

.cta-section .cta-tel:hover { color: #93c5fd; }

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #111d38;
  padding: 56px 24px 28px;
}

.footer-inner { max-width: 1160px; margin: 0 auto; }

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

.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  filter: none !important;
  opacity: 1 !important;
}

.footer-brand p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 14px;
}

.footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

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

.footer-social a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid #1e2f52;
  padding-top: 22px;
}

.footer-bottom p { font-size: 12px; color: #475569; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-reviews { display: none; }
  .hero h1 { font-size: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: 1fr; }
  .screenshot-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav-toggle { display: flex; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #dde4f0; padding: 12px 24px 20px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .submenu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .sec-title { font-size: 26px; }
}

/* ============================================================
   HERO — één kolom layout met horizontale reviewbalk
   ============================================================ */

.hero-inner {
  max-width: 1160px !important;
  display: block !important;
}

.hero h1 { font-size: 42px; max-width: 100%; }
.hero-sub { max-width: 100%; }

/* Horizontale Google reviews balk */
.hero-reviews-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #dde4f0;
  border-radius: 12px;
  margin-top: 32px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(37,99,235,0.07);
}

.hrb-score {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hrb-score:hover { background: #f0f4ff; }

.hrb-score-num {
  font-size: 22px;
  font-weight: 800;
  color: #1a2744;
  line-height: 1;
}

.hrb-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 1px;
  line-height: 1;
}

.hrb-count {
  font-size: 11px;
  color: #6080a0;
  white-space: nowrap;
}

.hrb-divider {
  width: 1px;
  height: 40px;
  background: #dde4f0;
  flex-shrink: 0;
}

.hrb-quote {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  flex: 1;
  min-width: 0;
}

.hrb-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.hrb-quote-text {
  font-size: 12px;
  color: #1a2744;
  line-height: 1.4;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hrb-quote-author {
  font-size: 11px;
  color: #6080a0;
  margin-top: 3px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-reviews-bar { flex-wrap: wrap; }
  .hrb-divider { display: none; }
  .hrb-quote { flex: 1 1 45%; }
}

@media (max-width: 600px) {
  .hero-reviews-bar { display: none; }
  .hero h1 { font-size: 28px; }
}

/* ============================================================
   GOOGLE REVIEWS — zoals op huidige site
   ============================================================ */

.google-reviews-wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 36px;
  background: #fff;
  border: 1px solid #dde4f0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  max-width: 100%;
}

/* Links: samenvatting */
.gr-summary {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.gr-stars-big {
  font-size: 20px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.gr-count {
  font-size: 13px;
  color: #4a6080;
  font-weight: 500;
}

.gr-write-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 14px;
  border: 1.5px solid #c5d2e8;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1a2744;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.gr-write-btn:hover { border-color: #2563eb; color: #2563eb; }

/* Rechts: kaarten */
.gr-cards-wrap {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: #dde4f0 transparent;
  -webkit-overflow-scrolling: touch;
}

.gr-cards-wrap::-webkit-scrollbar { height: 4px; }
.gr-cards-wrap::-webkit-scrollbar-track { background: transparent; }
.gr-cards-wrap::-webkit-scrollbar-thumb { background: #dde4f0; border-radius: 2px; }

.gr-cards {
  display: flex;
  flex-direction: row;
  gap: 14px;
  padding-bottom: 4px;
}

.gr-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 240px;
  min-width: 240px;
}

.gr-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.gr-card-meta { flex: 1; min-width: 0; }

.gr-reviewer-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a2744;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gr-date { font-size: 11px; color: #6080a0; }

.gr-glogo { flex-shrink: 0; }

.gr-card-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.gr-card-text {
  font-size: 13px;
  color: #4a6080;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 900px) {
  .google-reviews-wrap { flex-direction: column; }
  .gr-summary { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; }
  .gr-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .google-reviews-wrap { display: flex; flex-direction: column; }
  .gr-summary { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; }
  .gr-cards-wrap { width: 100%; overflow-x: auto; }
  .gr-card { flex: 0 0 220px; min-width: 220px; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .google-reviews-wrap { flex-direction: column; }
  .gr-cards-wrap { width: 100%; overflow-x: auto; }
  .gr-card { flex: 0 0 220px; min-width: 220px; }
}



/* ============================================================
   GEDEELDE PAGINA STIJLEN (overgebracht uit inline styles)
   ============================================================ */

/* Pagina hero — gedeeld door alle pagina's */
.page-hero{background:linear-gradient(135deg,#f0f4ff,#e8effe);border-bottom:1px solid #dde4f0;padding:56px 24px 48px;text-align:center}
.page-hero h1{font-size:36px;font-weight:800;color:#1a2744;letter-spacing:-1px;margin-bottom:12px}
.page-hero p{font-size:16px;color:#4a6080;max-width:560px;margin:0 auto 24px}

/* Segment pagina layout — uitzendbureau, detachering, recruitment, zzp, planning */
.seg-wrap{padding:64px 24px;max-width:1160px;margin:0 auto}
.seg-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;margin-bottom:64px;padding-bottom:64px;border-bottom:1px solid #e8edf5}
.seg-grid:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.seg-grid.flip{direction:rtl}
.seg-grid.flip > *{direction:ltr}
.seg-tekst h2{font-size:26px;font-weight:800;color:#1a2744;margin-bottom:14px;letter-spacing:-0.5px}
.seg-tekst p{font-size:15px;color:#4a6080;line-height:1.75;margin-bottom:14px}
.seg-list{list-style:none;display:flex;flex-direction:column;gap:9px;margin-bottom:20px}
.seg-list li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#1a2744}
.seg-list li::before{content:'\2713';color:#2563eb;font-weight:700;flex-shrink:0}
.seg-img-NB{border-radius:12px;overflow:hidden;box-shadow:0 6px 24px rgba(37,99,235,0.10);border:1px solid #dde4f0}
.seg-img img{max-height:380px;width:auto;display:block}
.seg-pill{display:inline-block;background:#dbeafe;color:#1d4ed8;font-size:11px;font-weight:700;padding:4px 12px;border-radius:20px;margin-bottom:12px;text-transform:uppercase;letter-spacing:0.5px}
@media(max-width:900px){.seg-grid,.seg-grid.flip{grid-template-columns:1fr;direction:ltr}.seg-img{display:none}}

/* Formulier velden — demo en contact */
.form-field{margin-bottom:16px}
.form-field label{display:block;font-size:12px;font-weight:700;color:#6080a0;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px}
.form-field input,.form-field select,.form-field textarea{width:100%;padding:11px 14px;border:1.5px solid #dde4f0;border-radius:7px;font-size:14px;color:#1a2744;font-family:inherit;background:#fff;transition:border-color 0.2s}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{outline:none;border-color:#2563eb}
.form-field textarea{resize:vertical;min-height:80px}
.form-required{color:#ef4444}
.form-submit{width:100%;padding:14px;background:#2563eb;color:#fff;border:none;border-radius:7px;font-size:15px;font-weight:600;cursor:pointer;font-family:inherit;transition:background 0.2s;margin-top:8px}
.form-submit:hover{background:#1d4ed8}
.form-melding{padding:14px 18px;border-radius:8px;font-size:14px;margin-bottom:20px;display:none}
.form-melding.succes{background:#d1fae5;color:#065f46;border:1px solid #6ee7b7}
.form-melding.fout{background:#fee2e2;color:#991b1b;border:1px solid #fca5a5}


/* ============================================================
   PAGINA-SPECIFIEKE STIJLEN
   ============================================================ */

/* --- App pagina --- */
.apps-wrap{padding:72px 24px}
    .apps-inner{max-width:1160px;margin:0 auto}

    .app-detail{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:72px;padding-bottom:72px;border-bottom:1px solid #e8edf5}
    .app-detail:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
    .app-detail.reverse{direction:rtl}
    .app-detail.reverse > *{direction:ltr}
    .app-detail-tekst h2{font-size:26px;font-weight:800;color:#1a2744;margin-bottom:14px;letter-spacing:-0.5px}
    .app-detail-tekst p{font-size:15px;color:#4a6080;line-height:1.75;margin-bottom:14px}
    .app-mogelijkheden{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:6px}
    .app-mogelijkheden li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#1a2744}
    .app-mogelijkheden li::before{content:'✓';color:#2563eb;font-weight:700;flex-shrink:0}
    .app-visual{display:flex;align-items:center;justify-content:center}
    .app-visual img{max-height:380px;width:auto;display:block}

    /* Whitelabel sectie */
    .whitelabel{background:#1a2744;padding:72px 24px}
    .whitelabel-inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
    .whitelabel h2{font-size:28px;font-weight:800;color:#fff;margin-bottom:14px;letter-spacing:-0.5px}
    .whitelabel p{font-size:15px;color:#94a3b8;line-height:1.75;margin-bottom:14px}
    .whitelabel ul{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
    .whitelabel ul li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#cbd5e0}
    .whitelabel ul li::before{content:'✓';color:#93c5fd;font-weight:700;flex-shrink:0}
    .whitelabel-prijs{background:#243660;border-radius:12px;padding:28px;border:1px solid #2d4a80}
    .whitelabel-prijs h3{font-size:16px;font-weight:700;color:#fff;margin-bottom:16px}
    .wp-item{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-bottom:1px solid #2d4a80;font-size:14px}
    .wp-item:last-child{border-bottom:none;padding-bottom:0}
    .wp-item-label{color:#94a3b8}
    .wp-item-prijs{font-size:18px;font-weight:800;color:#fff}

    /* Store badges -->
    .store-badges{display:flex;gap:12px;margin-top:20px;flex-wrap:wrap}
    .store-badge{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid #dde4f0;border-radius:8px;padding:8px 16px;font-size:13px;font-weight:600;color:#1a2744;text-decoration:none;transition:border-color 0.2s}
    .store-badge:hover{border-color:#2563eb;color:#2563eb}

    @media(max-width:900px){
      .app-detail,.app-detail.reverse,.whitelabel-inner{grid-template-columns:1fr;direction:ltr}
      .app-visual{display:none}
    }

/* --- Contact pagina --- */
.contact-wrap{padding:64px 24px}
    .contact-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr;gap:60px;align-items:start}

    .contact-form-card{background:#fff;border:1px solid #dde4f0;border-radius:14px;padding:36px}
    .contact-form-card h2{font-size:22px;font-weight:800;color:#1a2744;margin-bottom:6px}
    .contact-form-card p{font-size:14px;color:#4a6080;margin-bottom:28px}
    .form-field input,
    .form-field textarea{width:100%;padding:11px 14px;border:1.5px solid #dde4f0;border-radius:7px;font-size:14px;color:#1a2744;font-family:inherit;background:#fff;transition:border-color 0.2s}
    .form-field input:focus,
    .form-field textarea:focus{outline:none;border-color:#2563eb}

    .contact-info{display:flex;flex-direction:column;gap:20px}
    .ci-card{background:#f8faff;border-radius:12px;padding:24px;border:1px solid #dde4f0}
    .ci-card h3{font-size:16px;font-weight:700;color:#1a2744;margin-bottom:12px}
    .ci-row{display:flex;align-items:flex-start;gap:12px;margin-bottom:12px;font-size:14px;color:#4a6080}
    .ci-row:last-child{margin-bottom:0}
    .ci-icon{font-size:18px;color:#2563eb;flex-shrink:0;margin-top:1px}
    .ci-row a{color:#2563eb;text-decoration:none}
    .ci-row a:hover{text-decoration:underline}
    .ci-tel{font-size:24px;font-weight:800;color:#1a2744;text-decoration:none;display:block}
    .ci-tel:hover{color:#2563eb}

    @media(max-width:800px){
      .contact-inner{grid-template-columns:1fr}
    }

/* --- Demo aanvragen pagina --- */
.demo-wrap{padding:64px 24px}
    .demo-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr;gap:60px;align-items:start}
    .demo-form-card{background:#fff;border:1px solid #dde4f0;border-radius:14px;padding:36px}
    .demo-form-card h2{font-size:22px;font-weight:800;color:#1a2744;margin-bottom:6px}
    .demo-form-card > p{font-size:14px;color:#4a6080;margin-bottom:28px}
    .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .form-field input,.form-field select,.form-field textarea{width:100%;padding:11px 14px;border:1.5px solid #dde4f0;border-radius:7px;font-size:14px;color:#1a2744;font-family:inherit;background:#fff;transition:border-color 0.2s}
    .form-field input:focus,.form-field select:focus,.form-field textarea:focus{outline:none;border-color:#2563eb}
    .demo-info{display:flex;flex-direction:column;gap:20px}
    .info-card{background:#f8faff;border-radius:12px;padding:24px;border:1px solid #dde4f0}
    .info-card h3{font-size:16px;font-weight:700;color:#1a2744;margin-bottom:10px}
    .info-card p{font-size:14px;color:#4a6080;line-height:1.65}
    .info-tel{font-size:22px;font-weight:800;color:#1a2744;text-decoration:none;display:block;margin-top:8px}
    .info-tel:hover{color:#2563eb}
    .info-hours{font-size:13px;color:#6080a0;margin-top:4px}
    .usp-list{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:8px}
    .usp-list li{display:flex;align-items:center;gap:10px;font-size:14px;color:#1a2744}
    .usp-list li::before{content:'✓';color:#2563eb;font-weight:700;flex-shrink:0}
    @media(max-width:800px){.demo-inner{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}}

/* --- detachering-software.html --- */
@media(max-width:900px){}

/* --- Over ons pagina --- */
.over-wrap{padding:64px 24px}
    .over-inner{max-width:1160px;margin:0 auto}

    .over-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:64px}
    .over-grid.reverse{direction:rtl}
    .over-grid.reverse > *{direction:ltr}
    .over-tekst h2{font-size:28px;font-weight:800;color:#1a2744;letter-spacing:-0.5px;margin-bottom:14px}
    .over-tekst p{font-size:15px;color:#4a6080;line-height:1.75;margin-bottom:14px}
     .over-img img{max-height:380px;width:auto;display:block}

    /* Cijfers balk */
    .cijfers{background:#1a2744;padding:56px 24px}
    .cijfers-inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
    .cijfer-num{font-size:40px;font-weight:800;color:#fff;line-height:1}
    .cijfer-label{font-size:13px;color:#94a3b8;margin-top:6px}

    /* Missie sectie */
    .missie{background:#f0f4ff;border-top:1px solid #dde4f0;border-bottom:1px solid #dde4f0;padding:64px 24px}
    .missie-inner{max-width:800px;margin:0 auto;text-align:center}
    .missie blockquote{font-size:20px;font-weight:600;color:#1a2744;line-height:1.6;font-style:italic;border-left:4px solid #2563eb;text-align:left;padding-left:24px;margin:32px 0}

    /* Waarden -->
    .waarden-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
    .waarde-card{background:#fff;border-radius:12px;padding:24px;border:1px solid #dde4f0;text-align:center}
    .waarde-icon{font-size:32px;margin-bottom:12px}
    .waarde-card h3{font-size:16px;font-weight:700;color:#1a2744;margin-bottom:8px}
    .waarde-card p{font-size:13px;color:#4a6080;line-height:1.6}

    @media(max-width:800px){
      .over-grid,.over-grid.reverse{grid-template-columns:1fr;direction:ltr}
      .cijfers-inner{grid-template-columns:repeat(2,1fr)}
      .waarden-grid{grid-template-columns:1fr}
    }

/* --- Partners pagina --- */
.partners-wrap{padding:64px 24px}
    .partners-inner{max-width:1160px;margin:0 auto}

    .partner-group{margin-bottom:56px}
    .partner-group-title{font-size:14px;font-weight:700;color:#2563eb;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;padding-bottom:10px;border-bottom:2px solid #dde4f0}

    .partners-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
    .partner-card{background:#fff;border:1px solid #dde4f0;border-radius:12px;padding:26px;display:flex;gap:20px;align-items:flex-start;transition:border-color 0.2s}
    .partner-card:hover{border-color:#2563eb}
    .partner-card-icon{width:48px;height:48px;border-radius:10px;background:#dbeafe;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:800;color:#2563eb;flex-shrink:0}
    .partner-card h3{font-size:16px;font-weight:700;color:#1a2744;margin-bottom:6px}
    .partner-card h3 a{text-decoration:none;color:inherit}
    .partner-card h3 a:hover{color:#2563eb}
    .partner-card p{font-size:13px;color:#4a6080;line-height:1.65}

    @media(max-width:700px){
      .partners-grid{grid-template-columns:1fr}
    }

/* --- Planning software pagina --- */
/* Planbord demo visualisatie */
    .planbord-demo{background:#f0f4ff;border-radius:14px;padding:24px;border:1px solid #dde4f0;overflow:hidden}
    .pb-header{display:grid;grid-template-columns:140px repeat(7,1fr);gap:4px;margin-bottom:8px;font-size:11px;font-weight:700;color:#6080a0;text-align:center}
    .pb-row{display:grid;grid-template-columns:140px repeat(7,1fr);gap:4px;margin-bottom:4px;align-items:center}
    .pb-name{font-size:12px;font-weight:600;color:#1a2744}
    .pb-dag{height:26px;border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:600}
    .pb-vrij{background:#e8edf5}
    .pb-ingepland{background:#dbeafe;color:#1d4ed8}
    .pb-ziek{background:#fee2e2;color:#991b1b}
    .pb-beschikbaar{background:#d1fae5;color:#065f46}
    .pb-openstaand{background:#fef3c7;color:#92400e}

    .legenda{display:flex;gap:16px;flex-wrap:wrap;margin-top:14px}
    .leg-item{display:flex;align-items:center;gap:6px;font-size:11px;color:#4a6080}
    .leg-dot{width:14px;height:14px;border-radius:3px;flex-shrink:0}

    @media(max-width:900px){}

/* --- Recruitment software pagina --- */
.proces-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:40px}
    .step{background:#f8faff;border-radius:10px;padding:20px;border:1px solid #dde4f0;text-align:center;position:relative}
    .step-num{width:32px;height:32px;background:#2563eb;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;margin:0 auto 12px}
    .step h4{font-size:14px;font-weight:700;color:#1a2744;margin-bottom:6px}
    .step p{font-size:12px;color:#4a6080;line-height:1.5}
    @media(max-width:900px){.proces-steps{grid-template-columns:repeat(2,1fr)}}

/* --- Software pagina --- */
.intro-section{padding:64px 24px;max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
    .intro-tekst h2{font-size:28px;font-weight:800;color:#1a2744;margin-bottom:16px;letter-spacing:-0.5px}
    .intro-tekst p{font-size:15px;color:#4a6080;line-height:1.75;margin-bottom:14px}
    .intro-tekst ul{list-style:none;display:flex;flex-direction:column;gap:10px;margin-top:6px}
    .intro-tekst ul li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#1a2744}
    .intro-tekst ul li::before{content:'✓';color:#2563eb;font-weight:700;flex-shrink:0}
    .intro-img{border-radius:0;overflow:visible;box-shadow:none;border:none;background:transparent}
    .intro-img img{width:100%;display:block}

    .features-section{background:#f0f4ff;border-top:1px solid #dde4f0;border-bottom:1px solid #dde4f0;padding:72px 24px}
    .features-section-inner{max-width:1160px;margin:0 auto}
    .sw-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:40px}
    .sw-card{background:#fff;border-radius:12px;padding:28px;border:1px solid #dde4f0;display:flex;gap:20px;align-items:flex-start;transition:border-color 0.2s}
    .sw-card:hover{border-color:#2563eb}
    .sw-icon{width:52px;height:52px;flex-shrink:0;object-fit:contain}
    .sw-card h3{font-size:16px;font-weight:700;color:#1a2744;margin-bottom:8px}
    .sw-card p{font-size:13px;color:#4a6080;line-height:1.65}

    .kenmerken-section{padding:72px 24px}
    .kenmerken-inner{max-width:1160px;margin:0 auto}
    .kenmerken-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:32px;border:1px solid #dde4f0;border-radius:12px;overflow:hidden}
    .kenmerk-item{padding:14px 18px;display:flex;align-items:center;gap:10px;font-size:13px;color:#1a2744;border-bottom:1px solid #f0f4ff;border-right:1px solid #f0f4ff}
    .kenmerk-item:nth-child(3n){border-right:none}
    .kenmerk-item::before{content:'✓';color:#2563eb;font-weight:700;flex-shrink:0}
    .kenmerk-item:nth-child(even){background:#f8faff}

    @media(max-width:900px){
      .intro-section{grid-template-columns:1fr}
      .intro-img{display:none}
      .sw-grid{grid-template-columns:1fr}
      .kenmerken-grid{grid-template-columns:repeat(2,1fr)}
      .kenmerk-item:nth-child(2n){border-right:none}
      .kenmerk-item:nth-child(3n){border-right:1px solid #f0f4ff}
    }
    @media(max-width:600px){
      .kenmerken-grid{grid-template-columns:1fr}
      .kenmerk-item{border-right:none}
    }

/* --- Tarieven pagina --- */
/* Prijskaarten */
    .price-section{padding:64px 24px}
    .price-section-inner{max-width:1160px;margin:0 auto}
    .price-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:720px;margin:40px auto 0}
    .pc{background:#fff;border:1px solid #dde4f0;border-radius:14px;padding:32px;position:relative}
    .pc.featured{border:2px solid #2563eb}
    .pc-badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:#2563eb;color:#fff;font-size:10px;font-weight:700;padding:4px 14px;border-radius:20px;text-transform:uppercase;letter-spacing:0.5px;white-space:nowrap}
    .pc-tier{font-size:12px;font-weight:700;color:#6080a0;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
    .pc-price{font-size:40px;font-weight:800;color:#1a2744;margin-bottom:2px}
    .pc-price span{font-size:14px;font-weight:500;color:#6080a0}
    .pc-extra{font-size:12px;color:#2563eb;font-weight:600;min-height:18px;margin-bottom:10px}
    .pc-desc{font-size:13px;color:#4a6080;margin-bottom:22px;line-height:1.6}
    .pc-feats{list-style:none;margin-bottom:28px;display:flex;flex-direction:column;gap:10px}
    .pc-feats li{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:#1a2744}
    .pc-feats li::before{content:'✓';color:#2563eb;font-weight:700;flex-shrink:0}
    .btn-full{display:block;text-align:center;padding:13px;border-radius:7px;font-size:14px;font-weight:600;text-decoration:none;transition:all 0.2s}
    .btn-full-blue{background:#2563eb;color:#fff}
    .btn-full-blue:hover{background:#1d4ed8}
    .btn-full-out{border:1.5px solid #c5d2e8;color:#4a6080}
    .btn-full-out:hover{border-color:#1a2744;color:#1a2744}
    .price-note{font-size:12px;color:#6080a0;margin-top:24px;line-height:1.65;max-width:720px;margin-left:auto;margin-right:auto;text-align:center}

    /* Staffelkorting */
    .staffel-section{background:#f0f4ff;border-top:1px solid #dde4f0;border-bottom:1px solid #dde4f0;padding:64px 24px}
    .staffel-inner{max-width:1160px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
    .staffel-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:24px}
    .st{background:#fff;border-radius:10px;padding:16px;border:1px solid #dde4f0;text-align:center}
    .st-num{font-size:13px;font-weight:600;color:#4a6080;margin-bottom:4px}
    .st-pct{font-size:24px;font-weight:800;color:#2563eb}

    /* Extra kosten */
    .extra-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
    .extra-item{background:#fff;border-radius:10px;padding:20px;border:1px solid #dde4f0}
    .extra-item h4{font-size:14px;font-weight:700;color:#1a2744;margin-bottom:6px}
    .extra-item p{font-size:13px;color:#4a6080;line-height:1.6}
    .extra-item .extra-prijs{font-size:20px;font-weight:800;color:#2563eb;margin-top:8px}

    /* Koppelingen tabel */
    .kop-section{padding:64px 24px}
    .kop-inner{max-width:1160px;margin:0 auto}
    .kop-table{width:100%;border-collapse:collapse;margin-top:24px;font-size:13px}
    .kop-table th{background:#1a2744;color:#fff;padding:12px 16px;text-align:left;font-weight:600;font-size:12px;text-transform:uppercase;letter-spacing:0.5px}
    .kop-table td{padding:12px 16px;border-bottom:1px solid #f0f4ff;color:#4a6080;vertical-align:top}
    .kop-table tr:nth-child(even) td{background:#f8faff}
    .kop-table td:first-child{font-weight:600;color:#1a2744;white-space:nowrap}
    .kop-table td a{color:#2563eb;text-decoration:none}
    .kop-table td a:hover{text-decoration:underline}

    /* Calculator */
    .calc-section{background:#1a2744;padding:64px 24px}
    .calc-inner{max-width:800px;margin:0 auto}
    .calc-inner .sec-title{color:#fff}
    .calc-inner .sec-eyebrow{color:#93c5fd}
    .calc-inner .sec-sub{color:#94a3b8;margin-bottom:32px}
    .calc-form{background:#fff;border-radius:14px;padding:32px}

    /* Invoertabel */
    .ct td{padding:8px 10px;vertical-align:middle;border-bottom:1px solid #f0f4ff}
    .ct-label{font-size:13px;color:#2563eb;width:55%;text-align:right;padding-right:16px}
    .ct-input{width:40%}
    .ct-input input,.ct-input select{width:100%;padding:8px 12px;border:1px solid #c5d2e8;border-radius:5px;font-size:13px;color:#1a2744;font-family:inherit;background:#fff}
    .ct-info{width:5%;text-align:center}
    .ct-info-tekst{font-size:12px;color:#4a6080;background:#f0f4ff;padding:10px 14px;border-bottom:1px solid #dde4f0;line-height:1.6}
    .info-btn{background:#2563eb;color:#fff;border:none;border-radius:50%;width:22px;height:22px;font-size:13px;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;line-height:1;padding:0}
    .info-btn:hover{background:#1d4ed8}

    /* Resultaattabel */
    .cr{border:1px solid #dde4f0;border-radius:8px;overflow:hidden}
    .cr-head{background:#e8edf5;color:#1a2744;font-size:15px;font-weight:700;padding:12px 14px;text-align:center}
    .cr-label{font-size:13px;color:#2563eb;padding:9px 14px;border-bottom:1px solid #f0f4ff;width:70%}
    .cr-val{font-size:13px;color:#1a2744;padding:9px 14px;border-bottom:1px solid #f0f4ff;text-align:right;font-weight:500}
    .cr-totaal-label{font-weight:700;color:#1a2744;border-bottom:none}
    .cr-totaal{font-weight:800;color:#2563eb;font-size:16px;border-bottom:none}

    .calc-cta{margin-top:20px;text-align:center}

    /* Licentieformulier velden */
    .lf-field{display:flex;flex-direction:column;gap:6px}
    .lf-label{font-size:13px;font-weight:600;color:#1a2744}
    .lf-req{color:#ef4444}
    .lf-input{width:100%;padding:11px 14px;border:1.5px solid #dde4f0;border-radius:8px;font-size:14px;color:#1a2744;font-family:inherit;background:#fff;transition:border-color 0.2s,box-shadow 0.2s;outline:none}
    .lf-input:focus{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,0.10)}
    .lf-input::placeholder{color:#b0bec5}

    @media(max-width:700px){
      .price-cards,.staffel-inner,.extra-grid{grid-template-columns:1fr}
      .staffel-grid{grid-template-columns:repeat(2,1fr)}
      .ct-label{text-align:left}
    }

/* --- uitzendbureau-software.html --- */
@media(max-width:900px){}

/* --- ZZP bemiddeling pagina --- */
.selfbilling-card{background:#1a2744;border-radius:14px;padding:36px;margin:40px 0}
    .selfbilling-card h3{font-size:22px;font-weight:800;color:#fff;margin-bottom:12px}
    .selfbilling-card p{font-size:15px;color:#94a3b8;line-height:1.75;margin-bottom:20px}
    .selfbilling-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    .sb-step{background:#243660;border-radius:10px;padding:18px;border:1px solid #2d4a80}
    .sb-step-num{font-size:24px;font-weight:800;color:#2563eb;margin-bottom:8px}
    .sb-step p{font-size:13px;color:#FFFFFF;line-height:1.5;margin-bottom:0}
    @media(max-width:900px){.selfbilling-steps{grid-template-columns:1fr}}
