/* PrimeLocks — professionele, moderne stijl. Eén bestand, overal hergebruikt.
   Bevat: (A) marketing-site (index), (B) app/dashboard/admin (ongewijzigd gedrag). */

:root {
  --blue: #13233f;          /* diep marineblauw */
  --blue-700: #1c3a68;
  --blue-900: #0b1220;      /* midnight (zoals referentie) */
  --ink: #1a2742;
  --accent: #f5a201;        /* goud-amber accent */
  --accent-600: #d98a00;
  --gold: #ffc233;          /* helder goud (highlights) */
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #1b2430;
  --muted: #6b7686;
  --line: #e6ebf2;
  --ok: #1f9d57;
  --danger: #d33;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(11, 18, 32, .10);
  --shadow-lg: 0 20px 50px rgba(11, 18, 32, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ KNOPPEN ============ */
/* Basis (gebruikt door dashboard/admin: volledige breedte). */
button {
  cursor: pointer; border: 0; border-radius: 12px; font-size: 1rem; font-weight: 700;
  padding: 14px 18px; width: 100%; transition: filter .15s, transform .15s, box-shadow .15s;
  font-family: inherit;
}
button:hover { filter: brightness(.97); }
.btn-primary { background: var(--accent); color: #241a02; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-ghost { background: #eef2f8; color: var(--blue); }
.btn-danger { background: #fdeaea; color: var(--danger); }
.btn-big { font-size: 1.15rem; padding: 16px 22px; }

/* Herbruikbare inline-knop/link voor de marketing-site. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: auto; text-decoration: none; white-space: nowrap;
  padding: 14px 24px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 55%, #d98a00 100%);
  color: #241a02; box-shadow: 0 8px 22px rgba(245,162,1,.34);
}
.btn.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,162,1,.46); filter: brightness(1.04); }
.btn.btn-blue { background: var(--blue); color: #fff; }
.btn.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn.btn-light { background: #fff; color: var(--blue); }
.btn.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============ NAVIGATIE ============ */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 20px;
}
.logo { font-weight: 800; font-size: 1.3rem; letter-spacing: .3px; text-decoration: none; color: var(--blue); }
.logo span { color: var(--accent); }
.logo-light { color: #fff; }
.nav-links { display: flex; gap: 22px; margin-left: 12px; flex: 1; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--accent-600); }
.nav-call {
  text-decoration: none; font-weight: 800; color: var(--blue);
  background: #eef3fb; padding: 10px 16px; border-radius: 999px; white-space: nowrap;
}
.nav-call:hover { background: #e2ebf9; }
.nav-cta { padding: 10px 18px; font-size: .95rem; }

/* ============ HERO (moderne, bewegende video-achtige header) ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 560px at 12% -10%, #1c3a68 0%, transparent 55%),
    radial-gradient(900px 500px at 92% 0%, #16305c 0%, transparent 52%),
    linear-gradient(160deg, #0b1220 0%, #13233f 52%, #0b1220 100%);
  color: #fff;
}
/* Zacht bewegende gloed-orbs — geeft de header 'leven' zonder videobestand. */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(70px); opacity: .55; pointer-events: none; will-change: transform;
}
.hero::before {
  width: 540px; height: 540px; top: -140px; left: -90px;
  background: radial-gradient(circle, rgba(245,178,40,.5), transparent 70%);
  animation: heroFloatA 15s ease-in-out infinite;
}
.hero::after {
  width: 480px; height: 480px; bottom: -160px; right: -70px;
  background: radial-gradient(circle, rgba(40,120,220,.60), transparent 70%);
  animation: heroFloatB 19s ease-in-out infinite;
}
@keyframes heroFloatA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,50px) scale(1.12); } }
@keyframes heroFloatB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,-40px) scale(1.15); } }
/* Bewegend hangslot-motief — gaat traag open en dicht, puur SVG/CSS (geen bestand). */
.hero-lock {
  position: absolute; z-index: 1; top: 50%; right: clamp(-40px, 4vw, 90px);
  transform: translateY(-50%);
  width: clamp(240px, 34vw, 460px); pointer-events: none;
  opacity: .3; filter: drop-shadow(0 18px 40px rgba(245,178,40,.35));
  animation: lockFloat 9s ease-in-out infinite;
}
.hero-lock svg { width: 100%; height: auto; display: block; }
.hero-lock .shackle {
  transform-box: fill-box; transform-origin: 88% 100%;
  animation: shackleOpen 6.5s cubic-bezier(.5,0,.2,1) infinite;
}
.hero-lock .keyhole { animation: keyholeGlow 6.5s ease-in-out infinite; }
@keyframes shackleOpen {
  0%, 20%   { transform: rotate(0deg) translateY(0); }
  38%, 60%  { transform: rotate(-32deg) translateY(-3px); }
  80%, 100% { transform: rotate(0deg) translateY(0); }
}
@keyframes keyholeGlow {
  0%, 20%, 80%, 100% { fill: #0f2d52; }
  38%, 60% { fill: #1e5cb0; }
}
@keyframes lockFloat { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(-58%); } }
/* Echte video (optioneel): druppel /video/hero.mp4 en hij dekt de gloed netjes af. */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  opacity: .38;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  /* Fijne rasterlijnen + donkere vignet = strak, modern. */
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 46px 100%,
    radial-gradient(120% 120% at 50% 0%, transparent 40%, rgba(6,18,36,.65) 100%);
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 900px; margin: 0 auto; padding: 84px 20px 92px; text-align: center;
  animation: heroRise .7s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px); box-shadow: 0 4px 20px rgba(0,0,0,.15);
  padding: 8px 18px; border-radius: 999px; font-size: .88rem; font-weight: 600; margin-bottom: 24px;
}
.pill-urgent {
  background: rgba(226,74,58,.16); border-color: rgba(255,120,105,.5);
  color: #ffd9d3; font-weight: 700;
  animation: pillPulse 2.4s ease-in-out infinite;
}
@keyframes pillPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(226,74,58,.45); }
  50%     { box-shadow: 0 0 0 8px rgba(226,74,58,0); }
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.1; margin: 0 0 18px; font-weight: 800; letter-spacing: -.5px; }
.hero h1 span {
  background: linear-gradient(100deg, #ffd97a 0%, var(--gold) 45%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold);
}
.hero-sub { font-size: clamp(1.02rem, 2.2vw, 1.22rem); color: #cfdbec; max-width: 640px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 10px 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px; font-size: .95rem; color: #e6edf6;
}
.hero-trust span { white-space: nowrap; }
/* Respecteer 'verminder beweging' in het systeem. */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero-inner,
  .hero-lock, .hero-lock .shackle, .hero-lock .keyhole { animation: none; }
}

/* ============ USP-BALK ============ */
.usp-bar {
  max-width: 1140px; margin: -40px auto 0; position: relative; z-index: 6;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 24px 20px;
  overflow: hidden;
}
.usp-bar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--blue-700));
}
.usp { position: relative; }
.usp + .usp::before {
  content: ""; position: absolute; left: -4px; top: 50%; transform: translateY(-50%);
  height: 40px; width: 1px; background: var(--line);
}
.usp { text-align: center; padding: 6px; }
.usp strong { display: block; font-size: 1.35rem; color: var(--blue); }
.usp span { font-size: .88rem; color: var(--muted); }

/* ============ SECTIES ============ */
.section { max-width: 1140px; margin: 0 auto; padding: 68px 20px; }
.section.alt { max-width: none; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.alt > * { max-width: 1140px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.eyebrow { color: var(--accent-600); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 10px 0 12px; color: var(--blue); font-weight: 800; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.center { text-align: center; }

/* ============ GRID + DIENSTKAARTEN ============ */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d9e2ef; }
.svc-img { aspect-ratio: 16 / 9; overflow: hidden; background: #eef2f8; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 22px 22px 26px; position: relative; }
.svc-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem; background: linear-gradient(135deg, var(--gold), var(--accent));
  box-shadow: 0 6px 16px rgba(245,162,1,.35);
  margin: -48px 0 14px; position: relative; z-index: 2; border: 3px solid #fff;
}
.svc h3 { margin: 0 0 6px; font-size: 1.08rem; color: var(--blue); }
.svc p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ============ WAAROM ============ */
.grid.why { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item > span { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }
.why-item h3 { margin: 2px 0 4px; font-size: 1.05rem; color: var(--blue); }
.why-item p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ============ STAPPEN ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.step { text-align: center; padding: 10px; }
.step-n {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; font-size: 1.3rem; font-weight: 800;
  background: var(--blue); color: #fff;
}
.step h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--blue); }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ============ REVIEWS ============ */
.grid.reviews { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; margin: 0; box-shadow: var(--shadow);
}
.stars { color: #ffb300; letter-spacing: 2px; margin-bottom: 10px; font-size: 1.05rem; }
.review p { margin: 0 0 14px; font-style: italic; }
.review cite { color: var(--muted); font-weight: 700; font-style: normal; font-size: .92rem; }

/* ============ FAQ ============ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 4px 20px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--blue); padding: 14px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--muted); }

/* ============ CTA-BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff; text-align: center; padding: 60px 20px;
}
.cta-band h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 0 0 10px; }
.cta-band p { color: #dbe4f0; margin: 0 0 26px; }

/* ============ FOOTER ============ */
.footer { background: var(--blue-900); color: #cdd8e6; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 54px 20px 30px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px;
}
.footer h4 { color: #fff; margin: 0 0 12px; font-size: 1rem; }
.footer p { margin: 6px 0; font-size: .95rem; }
.footer a { color: #cdd8e6; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer .muted { color: #8ea1ba; }
.footer-brand { max-width: 340px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { font-size: .95rem; }
.footer-links a:hover { color: var(--gold); }

/* ============ STEDEN (lokale SEO) ============ */
.cities {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px;
}
.cities a {
  display: block; padding: 14px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; text-decoration: none; color: var(--blue); font-weight: 600;
  transition: transform .15s, box-shadow .15s, border-color .15s, color .15s;
}
.cities a::before { content: "📍 "; }
.cities a:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #d9e2ef; color: var(--accent-600); }
.city-intro { max-width: 780px; margin: 0 auto; text-align: center; }
.city-intro p { font-size: 1.06rem; margin: 0 0 12px; }

/* ============ WACHTWOORD TONEN/VERBERGEN ============ */
.pw-wrap { position: relative; }
.pw-wrap input { width: 100%; padding-right: 48px; }
.pw-toggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: auto; background: transparent; border: 0; box-shadow: none;
  padding: 6px 10px; font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.pw-toggle:hover { filter: none; opacity: .75; }

/* ============ BON (bewijs met foto) — admin + slotenmaker-app ============ */
.bon {
  margin-top: 10px; padding: 12px; background: #f7f9fc;
  border: 1px solid var(--line); border-radius: 10px; font-size: .95rem;
}
.receipt-thumb {
  margin-top: 8px; width: 150px; height: 150px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--line); cursor: zoom-in; display: block;
}

/* ============ KEUZE-CHIPS (klant kiest type klus) ============ */
.choice { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0; }
.chip {
  width: auto; background: #eef2f8; color: var(--blue); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 14px; font-size: .92rem; font-weight: 600;
  cursor: pointer; box-shadow: none;
  transition: background .15s, border-color .15s, color .15s;
}
.chip:hover { filter: none; background: #e3eaf5; }
.chip.active { background: var(--accent); color: #241a02; border-color: var(--accent); }

/* ============ KLUS-RIJ: compact + oog om details te openen ============ */
.job-head { display: flex; align-items: center; gap: 10px; }
.job-head .eye-btn { margin-left: auto; }
.eye-btn {
  width: auto; background: #eef2f8; border: 1px solid var(--line); border-radius: 10px;
  padding: 6px 12px; font-size: 1.15rem; line-height: 1; cursor: pointer; box-shadow: none;
}
.eye-btn:hover { filter: none; background: #e3eaf5; }
.job-details { margin-top: 10px; }

/* ============ AFDRACHTEN (admin) ============ */
.pay-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-top: 1px solid var(--line); font-size: .95rem; margin-top: 8px;
}
.pay-btn { width: auto; padding: 6px 14px; font-size: .9rem; margin-left: auto; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); text-align: center;
  padding: 18px; font-size: .88rem; color: #8ea1ba;
}

/* ============ MOBIELE BEL-BALK ============ */
.mobile-call {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 60%, #d98a00 100%);
  color: #241a02; text-align: center; text-decoration: none; border: 0; border-radius: 0;
  padding: 15px; font-weight: 800; font-size: 1.02rem; box-shadow: 0 -6px 20px rgba(0,0,0,.18);
}

/* ============ SPOED-AANVRAAG (MODAL) ============ */
.modal {
  position: fixed; inset: 0; z-index: 50; display: grid; place-items: center;
  background: rgba(10,33,64,.55); backdrop-filter: blur(3px); padding: 16px;
  overflow-y: auto;
}
.modal-box {
  position: relative; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 100%; max-width: 480px; padding: 26px 24px;
  max-height: 92vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 10px; right: 12px; width: auto; background: none; color: var(--muted);
  font-size: 1.7rem; line-height: 1; padding: 6px 10px;
}
.modal-close:hover { color: var(--text); filter: none; }
.modal-step .btn { width: 100%; }

/* ============ APP / DASHBOARD / ADMIN (ongewijzigd) ============ */
.wrap { max-width: 560px; margin: 0 auto; padding: 20px 16px 60px; }
header.bar {
  background: var(--blue); color: #fff; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px; position: sticky; top: 0; z-index: 5;
}
header.bar .logo { font-weight: 800; font-size: 1.15rem; color: #fff; }
header.bar .logo span { color: var(--accent); }
.burger {
  width: auto; background: transparent; border: 0; box-shadow: none; color: #fff;
  font-size: 1.6rem; line-height: 1; padding: 2px 6px; cursor: pointer;
}
.app-menu {
  position: sticky; top: 52px; z-index: 6; background: #fff;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.app-menu button {
  width: 100%; text-align: left; background: #fff; border: 0;
  border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none;
  padding: 15px 20px; font-size: 1rem; font-weight: 600; color: var(--blue);
}
.app-menu button:last-child { border-bottom: 0; }
.app-menu button:hover { background: #f5f7fb; filter: none; }
.card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px; margin: 16px 0;
}
h1 { margin: .2em 0 .4em; }
h2 { margin: 0 0 .6em; }
p.lead { color: var(--muted); margin-top: 0; }
label { display: block; font-weight: 600; margin: 14px 0 4px; font-size: .92rem; }
input, textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid #d7dde6; border-radius: 10px;
  font-size: 1rem; background: #fff; color: var(--text); font-family: inherit;
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--blue-700); border-color: var(--blue-700); }
textarea { min-height: 80px; resize: vertical; }
.row { display: flex; gap: 10px; }
.row > * { flex: 1; }
.muted { color: var(--muted); font-size: .9rem; }
.link { background: none; color: var(--blue); text-decoration: underline; width: auto; padding: 6px; }
.hidden { display: none !important; }

.note { padding: 12px 14px; border-radius: 10px; margin: 12px 0; font-size: .95rem; }
.note.err { background: #fdeaea; color: var(--danger); }
.note.ok  { background: #e7f6ee; color: var(--ok); }

.searching { text-align: center; padding: 20px 10px; }
.spinner {
  width: 54px; height: 54px; border: 5px solid #e3e9f1; border-top-color: var(--accent);
  border-radius: 50%; margin: 0 auto 16px; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.job { border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.job .ref { font-weight: 700; color: var(--blue); }
.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.badge.open { background: #fff2e0; color: var(--accent-600); }
.badge.accepted { background: #e7f0ff; color: var(--blue-700); }
.badge.completed { background: #e7f6ee; color: var(--ok); }
.badge.cancelled { background: #eee; color: var(--muted); }
.badge.pending { background: #fff2e0; color: var(--accent-600); }
.badge.active { background: #e7f6ee; color: var(--ok); }
.badge.suspended { background: #fdecec; color: #c0392b; }

.chat { border: 1px solid var(--line); border-radius: 12px; height: 240px; overflow-y: auto; padding: 12px; background: #fbfcfe; }
.msg { margin: 6px 0; max-width: 80%; padding: 8px 12px; border-radius: 12px; }
.msg.me { background: var(--blue); color: #fff; margin-left: auto; }
.msg.them { background: #eef2f8; }
.toggle { display: flex; align-items: center; gap: 10px; }
.toggle input { width: auto; }

/* ============ FOTO-SECTIE (slotenmaker in actie) ============ */
.showcase-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.showcase-img { margin: 0; }
.showcase-img img {
  width: 100%; height: auto; display: block; border-radius: 18px;
  box-shadow: 0 22px 55px rgba(8,26,52,.18); background: #f2f4f8;
}
.showcase-text .eyebrow { display: inline-block; margin-bottom: 6px; }
.showcase-text h2 { margin: 6px 0 14px; }
.showcase-list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 11px; }
.showcase-list li { font-size: 1.03rem; color: var(--ink, #1a2740); }

/* ============ RESPONSIEF ============ */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid.why { grid-template-columns: repeat(2, 1fr); }
  .grid.reviews { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .usp-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .grid, .grid.why, .steps { grid-template-columns: 1fr; }
  .showcase-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-inner { padding: 54px 18px 60px; }
  .section { padding: 48px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .mobile-call { display: block; }
  body { padding-bottom: 54px; } /* ruimte voor de vaste bel-balk */
}
