/* ---------------------------------------------------------------------
   mobielconnect — digitale visitekaartjes
   Basis huisstijl (eerste opzet, gebaseerd op mobielconnect.nl).
   Kleuren en typografie zijn eenvoudig aan te passen zodra de officiële
   huisstijlgids / logobestanden beschikbaar zijn — zie README.md.
   --------------------------------------------------------------------- */

:root {
  --mc-navy: #0b1f3a;
  --mc-navy-2: #132c52;
  --mc-blue: #1c5dbe;
  --mc-orange: #ff6a13;
  --mc-orange-2: #ff8a3d;
  --mc-gray: #6b7280;
  --mc-light: #f5f7fa;
  --mc-border: #e2e6ee;
  --mc-radius: 16px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--mc-light);
  color: var(--mc-navy);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--mc-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.mc-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mc-header {
  background: var(--mc-navy);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.mc-header .mc-nav { min-width: 0; flex: 1 1 auto; }
@media (max-width: 700px) {
  .mc-header .mc-nav { flex-basis: 100%; justify-content: flex-start; }
}

.mc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.mc-brand .brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.mc-brand small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: #b8c4dc;
  letter-spacing: 0.02em;
}

.mc-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.mc-nav::-webkit-scrollbar { display: none; }

.mc-nav a, .mc-nav button {
  color: #dbe4f5;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.mc-nav a:hover, .mc-nav button:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); text-decoration: none; }

.mc-main {
  flex: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.mc-main.narrow { max-width: 480px; }
.mc-main.wide { max-width: 1120px; }

.mc-footer {
  text-align: center;
  padding: 18px;
  font-size: 12px;
  color: var(--mc-gray);
}

h1 { font-size: 26px; margin: 0 0 6px; color: var(--mc-navy); }
h2 { font-size: 19px; margin: 0 0 14px; color: var(--mc-navy); }
p.lead { color: var(--mc-gray); margin: 0 0 24px; }

.mc-card {
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: var(--mc-radius);
  box-shadow: 0 10px 30px -12px rgba(11,31,58,0.15);
  padding: 28px;
  margin-bottom: 22px;
}

.mc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.mc-stat {
  background: var(--mc-light);
  border-radius: 12px;
  padding: 16px 18px;
}
.mc-stat .n { font-size: 26px; font-weight: 700; color: var(--mc-navy); }
.mc-stat .l { font-size: 12px; color: var(--mc-gray); text-transform: uppercase; letter-spacing: 0.04em; }

table.mc-table { width: 100%; border-collapse: collapse; font-size: 14px; }
table.mc-table th, table.mc-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--mc-border);
}
table.mc-table th { color: var(--mc-gray); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; }
table.mc-table tr:last-child td { border-bottom: none; }

.mc-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.mc-badge.on { background: #e4f5e9; color: #1a7f43; }
.mc-badge.off { background: #fde7e7; color: #b3261e; }

form .field { margin-bottom: 16px; }
form label { display: block; font-size: 13px; font-weight: 600; color: var(--mc-navy); margin-bottom: 6px; }
form input[type=text], form input[type=email], form input[type=password], form input[type=url], form input[type=tel], form input[type=date], form input[type=number], form textarea, form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--mc-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--mc-navy);
  background: #fff;
}
form textarea { resize: vertical; min-height: 80px; }
form input[type=color] { width: 56px; height: 40px; padding: 2px; border: 1px solid var(--mc-border); border-radius: 8px; }
.mc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .mc-row2 { grid-template-columns: 1fr; } }

.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--mc-orange);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}
.mc-btn:hover { background: var(--mc-orange-2); text-decoration: none; }
.mc-btn.secondary { background: var(--mc-navy); }
.mc-btn.secondary:hover { background: var(--mc-navy-2); }
.mc-btn.outline { background: #fff; color: var(--mc-navy); border: 1px solid var(--mc-border); }
.mc-btn.outline:hover { background: var(--mc-light); }
.mc-btn.block { width: 100%; }
.mc-btn.small { padding: 7px 14px; font-size: 13px; }
.mc-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.mc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.mc-alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 18px; }
.mc-alert.error { background: #fde7e7; color: #a12622; }
.mc-alert.success { background: #e4f5e9; color: #1a7f43; }
.mc-alert.info { background: #eaf1fd; color: #164a9c; }

/* ---- Publieke visitekaart ---- */
.pubcard {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(11,31,58,0.35);
  background: #fff;
}
.pubcard-top {
  padding: 40px 28px 70px;
  color: #fff;
  text-align: center;
  position: relative;
}
.pubcard-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  color: var(--mc-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  object-fit: cover;
  border: 3px solid #fff;
}
.pubcard-name { font-size: 22px; font-weight: 700; margin: 0; }
.pubcard-role { font-size: 14px; opacity: 0.9; margin: 4px 0 0; }
.pubcard-body { padding: 24px 24px 30px; }
.pubcard-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.pubcard-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 14px;
  background: var(--mc-light);
  color: var(--mc-navy);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.pubcard-action:hover { background: #eceff5; text-decoration: none; }
.pubcard-action .ic { font-size: 20px; }
.pubcard-wallets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pubcard-bio { color: var(--mc-gray); font-size: 14px; line-height: 1.5; margin-bottom: 18px; }
.pubcard-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.pubcard-share { text-align: center; margin-top: 18px; }
.pubcard-qr { margin: 14px auto 0; display: block; border-radius: 12px; border: 1px solid var(--mc-border); }

/* ---- Landing: hero ---- */
.landing-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background-image: linear-gradient(135deg, rgba(11,31,58,0.93), rgba(19,44,82,0.91) 60%, rgba(14,42,86,0.9)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=60");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 64px 36px;
  margin-bottom: 36px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-blob.b1 { width: 340px; height: 340px; background: var(--mc-orange); top: -120px; right: -80px; }
.hero-blob.b2 { width: 260px; height: 260px; background: var(--mc-blue); bottom: -110px; left: -60px; opacity: 0.4; }
.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.landing-hero-copy h1 { color: #fff; font-size: 40px; line-height: 1.12; margin: 14px 0 16px; }
.landing-hero-copy p { color: #cfd9ee; max-width: 480px; margin: 0 0 26px; font-size: 15px; line-height: 1.6; }
.hero-kicker {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
}
.landing-hero-copy .mc-actions { justify-content: flex-start; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.hero-badge {
  font-size: 12px;
  color: #dbe4f5;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 999px;
}
@media (max-width: 860px) {
  .landing-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .landing-hero-copy .mc-actions { justify-content: center; }
  .landing-hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .phone-mockup-wrap { margin: 30px auto 0; }
}

/* ---- Landing: phone mockup ---- */
.phone-mockup-wrap { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 250px;
  background: #0c1730;
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone-notch {
  width: 90px; height: 18px; background: #0c1730; border-radius: 0 0 14px 14px;
  margin: 0 auto 8px; position: relative; top: 4px;
}
.phone-screen { background: var(--mc-light); border-radius: 24px; overflow: hidden; padding-bottom: 14px; }
.phone-card-top {
  background-image: linear-gradient(135deg, rgba(11,31,58,0.9), rgba(19,44,82,0.9)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=600&q=60");
  background-size: cover;
  background-position: center;
  color: #fff; text-align: center; padding: 26px 16px 34px;
}
.phone-avatar {
  width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--mc-navy);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
  margin: 0 auto 10px; border: 2px solid #fff;
  position: relative; overflow: hidden;
}
/* Stock-foto's voor avatars: als de externe foto niet laadt (netwerk/CDN-
   probleem bij de bezoeker), verwijdert onerror de <img> meteen en blijft de
   initialen-avatar er gewoon staan — er verschijnt nooit een "broken image". */
.avatar-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.phone-name { font-weight: 700; font-size: 15px; }
.phone-role { font-size: 11px; opacity: 0.85; margin-top: 2px; }
.phone-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 12px 12px 0; }
.phone-action {
  background: #fff; border-radius: 10px; padding: 8px 4px; text-align: center; font-size: 9px;
  font-weight: 600; color: var(--mc-navy); display: flex; flex-direction: column; gap: 3px; align-items: center;
}
.phone-action span { font-size: 14px; }
.phone-wallet-btn {
  margin: 10px 12px 0; background: var(--mc-navy); color: #fff; text-align: center; border-radius: 999px;
  padding: 9px; font-size: 10px; font-weight: 600;
}
.phone-wallet-btn.dark { background: #000; }
.phone-lead-teaser {
  margin: 10px 12px 0; text-align: center; font-size: 10px; font-weight: 600; color: var(--mc-blue);
  border: 1px dashed var(--mc-border); border-radius: 10px; padding: 8px;
}
.phone-float-badge {
  position: absolute;
  background: #fff;
  color: var(--mc-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  z-index: 2;
  white-space: nowrap;
}
.phone-float-badge.b1 { top: 6%; left: -6%; }
.phone-float-badge.b2 { bottom: 14%; right: -8%; }
@media (max-width: 860px) {
  .phone-float-badge.b1 { left: 2%; }
  .phone-float-badge.b2 { right: 2%; }
}
@media (max-width: 480px) {
  .phone-float-badge { display: none; }
}

/* ---- Landing: stats bar ---- */
/* Modern SaaS-patroon: een lichte "trust bar" die net over de rand van de
   donkere hero heen schuift (negatieve margin), i.p.v. los eronder. */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 20px;
  padding: 24px 20px;
  margin: -34px 12px 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 45px -25px rgba(11,31,58,0.35);
}
@media (max-width: 560px) { .stats-bar { margin: -24px 6px 40px; padding: 18px 12px; } }
.stats-bar-item .n { font-size: 30px; font-weight: 800; color: var(--mc-navy); }
.stats-bar-item .l { font-size: 12px; color: var(--mc-gray); }

/* ---- Landing: section heads ---- */
.landing-section-head { text-align: center; margin-bottom: 22px; }
.landing-section-head h2 { font-size: 24px; }
.landing-section-head p.lead { margin: 0 auto 4px; max-width: 460px; }

/* ---- Landing: steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; margin-bottom: 40px; }
.steps-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .steps-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid-4 { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--mc-border); border-radius: 18px; padding: 24px 20px; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -18px rgba(11,31,58,0.25); }
.step-n {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--mc-orange),var(--mc-orange-2));
  color: #fff; font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.step h3 { font-size: 15px; margin: 0 0 6px; }
.step p { font-size: 13px; color: var(--mc-gray); margin: 0; line-height: 1.5; }

/* ---- Landing: papier vs TapConnect ---- */
.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; margin-bottom: 40px; max-width: 900px; margin-left: auto; margin-right: auto; }
.comparison-card { border-radius: 20px; padding: 28px 26px; }
.comparison-card.paper { background: #fbf7f2; border: 1px solid #ecdfd0; }
.comparison-card.tap { background: linear-gradient(160deg,#0b1f3a,#132c52); color: #fff; box-shadow: 0 20px 45px -25px rgba(11,31,58,0.5); }
.comparison-card h3 { margin: 0 0 16px; font-size: 16px; }
.comparison-card.paper h3 { color: var(--mc-navy); }
.comparison-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; line-height: 1.5; }
.comparison-list li { display: flex; align-items: flex-start; gap: 10px; }
.comparison-list .ic {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.comparison-card.paper .ic { background: #f0dfca; color: #9a5b1f; }
.comparison-card.tap .ic { background: rgba(255,106,19,0.25); color: var(--mc-orange-2); }

/* ---- Landing: features ---- */
.landing-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-bottom: 40px; }
.landing-feature {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--mc-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.landing-feature:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -18px rgba(11,31,58,0.25); }
.landing-feature .ic {
  width: 40px; height: 40px; border-radius: 12px; background: var(--mc-light);
  display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 12px;
}
.landing-feature h3 { margin: 0 0 6px; font-size: 15px; }
.landing-feature p { margin: 0; font-size: 13px; color: var(--mc-gray); line-height: 1.5; }

/* ---- Landing: service-belofte (zelfde kaartstijl, iets compacter) ---- */
.landing-service { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-bottom: 40px; }
.landing-service .landing-feature { background: var(--mc-light); border-color: transparent; }
.landing-service .landing-feature .ic { background: #fff; }

/* ---- Landing: FAQ (native <details>, geen JS nodig) ---- */
.faq-list { max-width: 760px; margin: 0 auto 40px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 14px;
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--mc-navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 14px;
  font-size: 20px; font-weight: 400; color: var(--mc-orange);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 16px; font-size: 13.5px; line-height: 1.6; color: var(--mc-gray); }

/* ---- Landing: pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.pricing-grid-single { max-width: 340px; }
.pricing-card { position: relative; background: #fff; border: 1px solid var(--mc-border); border-radius: 20px; padding: 28px 26px; }
.pricing-card.highlight { border: 2px solid var(--mc-orange); box-shadow: 0 20px 45px -25px rgba(255,106,19,0.4); }
.pricing-badge {
  position: absolute; top: -12px; right: 24px; background: var(--mc-orange); color: #fff; font-size: 11px;
  font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.pricing-card h3 { margin: 0 0 6px; font-size: 17px; }
.pricing-card .price { font-size: 28px; font-weight: 800; color: var(--mc-navy); margin-bottom: 16px; }
.pricing-card .price span { font-size: 12px; font-weight: 500; color: var(--mc-gray); margin-left: 4px; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 20px; font-size: 13px; color: var(--mc-navy); display: flex; flex-direction: column; gap: 8px; }

/* ---- Landing: final CTA ---- */
.landing-cta { background: #fff; border: 1px solid var(--mc-border); border-radius: 20px; padding: 30px; text-align: center; }
.landing-cta table.mc-table { text-align: left; margin-top: 10px; }
.table-scroll { overflow-x: auto; }
.table-scroll table.mc-table { min-width: 480px; }
@media (max-width: 560px) { .landing-cta { padding: 22px 16px; } }

/* ---- Admin: zoekbalk + activiteitenfeed ---- */
.mc-search-form { margin: 0; }
.mc-search-form input[type=search] {
  padding: 9px 14px;
  border: 1px solid var(--mc-border);
  border-radius: 999px;
  font-size: 13px;
  width: 200px;
}
.activity-list { display: flex; flex-direction: column; gap: 4px; }
.activity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 10px;
  color: var(--mc-navy);
  text-decoration: none;
}
.activity-row:hover { background: var(--mc-light); text-decoration: none; }
.activity-ic { font-size: 15px; flex-shrink: 0; }
.activity-label { font-size: 13px; flex: 1; line-height: 1.4; }
.activity-time { font-size: 11px; color: var(--mc-gray); flex-shrink: 0; white-space: nowrap; }
@media (max-width: 860px) {
  .mc-search-form input[type=search] { width: 140px; }
}
.admin-dash-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 24px; align-items: start; margin-bottom: 22px; }
@media (max-width: 860px) { .admin-dash-grid { grid-template-columns: 1fr; } }

/* ---- Zachte intro-animatie ----
   Bewust NIET scroll-getriggerd (IntersectionObserver): bij een volledige
   paginacapture (of als JS traag/uitgeschakeld is) bleef inhoud anders
   onzichtbaar. Dit draait één keer bij het laden, altijd, dus content is
   nooit permanent verborgen. */
.reveal { animation: mc-fade-up 0.5s ease both; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }
@keyframes mc-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Landing: voorbeeldprofielen-carousel (showcaseSection) ---- */
.showcase-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 4px 4px 12px; margin-bottom: 36px; }
.showcase-carousel { display: flex; gap: 18px; scroll-snap-type: x proximity; width: max-content; margin: 0 auto; }
.showcase-tile {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px -18px rgba(11,31,58,0.3);
  background: #fff;
  transition: transform 0.2s ease;
}
.showcase-tile:hover { transform: translateY(-4px); }
.showcase-tile-top { padding: 26px 16px 20px; text-align: center; color: #fff; }
.showcase-tile-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.92); margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: var(--mc-navy);
}
.showcase-tile-name { font-weight: 700; font-size: 13px; margin: 0; }
.showcase-tile-role { font-size: 10px; opacity: 0.85; margin: 2px 0 0; }
.showcase-tile-bottom { display: flex; justify-content: center; gap: 8px; padding: 10px; background: #fff; }
.showcase-tile-bottom span {
  width: 26px; height: 26px; border-radius: 50%; background: var(--mc-light); display: flex;
  align-items: center; justify-content: center; font-size: 12px;
}
@media (min-width: 860px) { .showcase-carousel { justify-content: center; flex-wrap: wrap; width: auto; } }

.mc-help { font-size: 12px; color: var(--mc-gray); margin-top: -8px; margin-bottom: 14px; }
code.mc-code { background: var(--mc-light); padding: 2px 6px; border-radius: 6px; font-size: 13px; }

/* ---- Huisstijl-voorbeeld (Teams) ---- */
.branding-preview {
  border-radius: 20px;
  padding: 36px 20px;
  text-align: center;
  color: #fff;
}
.branding-preview img { height: 32px; margin-bottom: 10px; }
.branding-preview-initials {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--mc-navy);
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 10px;
}
.branding-preview-name { font-weight: 700; }
.branding-preview-role { font-size: 12px; opacity: 0.9; margin-top: 2px; }

/* ---- Factuur / print ---- */
.invoice-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.mc-brand-mini { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--mc-navy); }
.mc-brand-mini .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mc-orange); display: inline-block; }
.invoice-parties { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 14px; gap: 16px; flex-wrap: wrap; }
.invoice-total { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; border-top: 1px solid var(--mc-border); margin-top: 8px; }
.invoice-total-final { font-weight: 700; font-size: 18px; color: var(--mc-navy); border-top: 2px solid var(--mc-navy); }

@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
  .mc-main { max-width: 100%; padding: 0; }
  .invoice.mc-card { box-shadow: none; border: none; }
}

/* ---- Instellingen: veldbeheer ---- */
.mc-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 16px;
  margin-bottom: 6px;
}
.mc-checkline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mc-navy);
}
.mc-checkline input[type=checkbox] { width: auto; margin: 0; }

/* ---- Contactvastlegging (lead-formulier op de publieke kaart) ---- */
.lead-card { margin-top: 18px; }

/* ---- Analytics ---- */
.analytics-bar {
  display: inline-block;
  width: 90px;
  height: 8px;
  background: var(--mc-border);
  border-radius: 999px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 8px;
}
.analytics-bar-fill { height: 100%; background: var(--mc-blue); }

/* ---- Tags/segmenten per organisatie ---- */
.mc-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: #eef1f8;
  color: var(--mc-navy);
  margin-left: 4px;
  vertical-align: middle;
}
.mc-tag.chip { text-decoration: none; margin: 0 6px 6px 0; }
.mc-tag.chip:hover { background: var(--mc-orange); color: #fff; text-decoration: none; }
.mc-tag-filter { margin-bottom: 14px; }

/* ---- "Inloggen als klant" (support-meekijken) ---- */
.impersonation-banner {
  background: #fff4e5;
  color: #7a4a00;
  padding: 10px 24px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid #f0d9a8;
}
.impersonation-banner .mc-btn { padding: 4px 12px; font-size: 12px; }

/* ---- Rapportage: eenvoudige staafgrafiek (geen library, alleen CSS) ---- */
.report-bars { display: flex; align-items: flex-end; gap: 14px; padding-top: 10px; overflow-x: auto; }
.report-bar-col { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 56px; }
.report-bar { width: 32px; background: linear-gradient(180deg, var(--mc-orange), var(--mc-orange-2)); border-radius: 6px 6px 0 0; align-self: flex-end; }
.report-bar-label { font-size: 11px; color: var(--mc-gray); text-align: center; line-height: 1.4; }

/* ---- Beheerteam / rollen ---- */
.mc-table select { width: auto; padding: 6px 10px; font-size: 13px; }
