/* Hostbij — design system
   Transparante Vlaamse hosting met L!s.A-support.
   Vanilla CSS, mobile-first, geen framework. Palet uit businessplan §3.3. */

:root {
  --blauw: #2563EB;     /* primair — trust + tech */
  --blauw-dk: #1D4ED8;
  --mint: #10B981;      /* secundair — Vlaams + nieuw */
  --amber: #F59E0B;     /* accent — call-to-action */
  --ink: #0F172A;       /* tekst */
  --muted: #64748B;     /* metadata */
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-blauw: #EFF6FF;
  --radius: 14px;
  --shadow: 0 1px 3px rgba(15,23,42,.08), 0 8px 24px rgba(15,23,42,.06);
  --maxw: 1140px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blauw); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.muted { color: var(--muted); }

h1, h2, h3 { line-height: 1.2; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
h3 { font-size: 1.2rem; font-weight: 700; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 640px; }
.eyebrow { color: var(--blauw); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .8rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700;
  padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  font-size: 1rem; transition: transform .08s ease, box-shadow .2s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--amber); color: #3a2700; }
.btn--primary:hover { box-shadow: 0 8px 20px rgba(245,158,11,.35); }
.btn--blauw { background: var(--blauw); color: #fff; }
.btn--blauw:hover { background: var(--blauw-dk); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn--lg { padding: 16px 28px; font-size: 1.06rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: 1.25rem; color: var(--ink); }
.nav__logo:hover { text-decoration: none; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; }
@media (max-width: 860px) {
  .nav__links { position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 16px 20px; gap: 18px; border-bottom: 1px solid var(--line);
    display: none; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
}

/* Hero */
.hero { background: linear-gradient(180deg, var(--bg-blauw), #fff); padding: 84px 0 64px; }
.hero__badge { display: inline-flex; gap: 8px; align-items: center; background: #fff;
  border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 22px; }
.hero h1 { max-width: 14ch; }
.hero .lead { margin: 18px 0 28px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__note { margin-top: 16px; font-size: .9rem; color: var(--muted); }

/* Grid + cards */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); }
.card h3 { margin-bottom: 8px; }
.feature__ico { width: 44px; height: 44px; border-radius: 11px; background: var(--bg-blauw);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 14px; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }
.tier { background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); position: relative; }
.tier--pop { border: 2px solid var(--blauw); }
.tier__pop { position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background: var(--blauw); color:#fff; font-size:.75rem; font-weight:700;
  padding:5px 12px; border-radius:999px; letter-spacing:.04em; }
.tier__name { color: var(--blauw); font-weight: 800; text-transform: uppercase; letter-spacing:.06em; font-size:.85rem;}
.tier__price { font-size: 2.6rem; font-weight: 800; margin: 8px 0 2px; }
.tier__price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.tier__list { list-style: none; margin: 18px 0 22px; }
.tier__list li { padding: 7px 0 7px 28px; position: relative; border-top: 1px solid var(--line); }
.tier__list li::before { content: "✓"; position:absolute; left:0; color: var(--mint); font-weight:800; }
.tier__list li.no { color: var(--muted); }
.tier__list li.no::before { content: "–"; color: var(--muted); }

/* Compare table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 620px; background:#fff; }
table.cmp th, table.cmp td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th { background: var(--bg-soft); font-size:.9rem; }
table.cmp td:not(:first-child), table.cmp th:not(:first-child) { text-align: center; }

/* USP / vs table */
.vs td:first-child { font-weight:600; }
.vs .yes { color: var(--mint); font-weight:700; }
.vs .no { color: #ef4444; }

/* Steps / wizard */
.wizard { max-width: 720px; margin: 0 auto; }
.steps { display:flex; gap:8px; margin-bottom: 28px; flex-wrap: wrap; }
.steps li { flex:1; list-style:none; font-size:.8rem; color: var(--muted); font-weight:600;
  border-top: 3px solid var(--line); padding-top: 8px; min-width: 90px; }
.steps li.active { color: var(--blauw); border-top-color: var(--blauw); }
.steps li.done { color: var(--mint); border-top-color: var(--mint); }
.step { display: none; }
.step.active { display: block; }
.field { margin-bottom: 16px; }
.field label { display:block; font-weight:600; margin-bottom: 6px; font-size:.95rem; }
.field input, .field select, .field textarea { width:100%; padding: 12px 14px;
  border:1.5px solid var(--line); border-radius: 10px; font: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { outline:0; border-color: var(--blauw); }
.choice { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
@media (max-width:680px){ .choice{ grid-template-columns:1fr; } }
.choice label { border:1.5px solid var(--line); border-radius:12px; padding:16px; cursor:pointer; }
.choice input { display:none; }
.choice input:checked + .choice__in { color: var(--blauw); }
.choice label:has(input:checked) { border-color: var(--blauw); background: var(--bg-blauw); }
.wizard__nav { display:flex; justify-content: space-between; margin-top: 8px; }

/* Footer */
.site-footer { background: var(--ink); color: #cbd5e1; padding: 56px 0 28px; margin-top: 40px; }
.site-footer a { color: #cbd5e1; }
.foot-grid { display:grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 28px; }
@media (max-width: 860px){ .foot-grid{ grid-template-columns: 1fr 1fr; } }
.foot-grid h4 { color:#fff; font-size:.95rem; margin-bottom: 12px; }
.foot-grid ul { list-style:none; }
.foot-grid li { padding: 4px 0; font-size:.92rem; }
.foot-bottom { border-top:1px solid #1e293b; margin-top: 36px; padding-top: 20px;
  font-size:.85rem; color:#94a3b8; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* Lisa chat bubble */
.lisa-bubble { position: fixed; right: 20px; bottom: 20px; z-index: 60;
  background: var(--blauw); color:#fff; border:0; border-radius: 999px; padding: 13px 20px;
  font: inherit; font-weight:700; cursor:pointer; box-shadow: 0 10px 30px rgba(37,99,235,.4);
  display:flex; gap:8px; align-items:center; }
.lisa-bubble:hover { background: var(--blauw-dk); }
.lisa-panel { position: fixed; right: 20px; bottom: 78px; z-index: 60; width: min(340px, calc(100vw - 40px));
  background:#fff; border:1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  padding: 18px; display:none; }
.lisa-panel.open { display:block; }
.lisa-panel h4 { margin-bottom: 6px; }

/* Misc content */
.prose { max-width: 760px; }
.prose h2 { margin-top: 32px; font-size: 1.5rem; }
.prose h3 { margin-top: 22px; }
.prose p, .prose li { color: #334155; margin-bottom: 10px; }
.prose ul, .prose ol { margin-left: 20px; margin-bottom: 14px; }
.note { background: var(--bg-blauw); border-left: 4px solid var(--blauw); padding: 14px 18px;
  border-radius: 8px; margin: 16px 0; font-size:.95rem; }
.beta { background: #fffbeb; border-left: 4px solid var(--amber); padding: 12px 16px;
  border-radius: 8px; font-size:.9rem; color:#78350f; margin: 14px 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; font-size: 1.05rem; }
.faq-item p { margin-top: 10px; color: #334155; }
.tag { display:inline-block; background: var(--bg-blauw); color: var(--blauw);
  padding: 3px 10px; border-radius: 999px; font-size:.8rem; font-weight:700; }
