/* ==========================================================================
   PRO Planning — everythingontime.com
   Designsysteem. Geen externe fonts, geen externe requests.
   ========================================================================== */

:root {
  /* Kleur */
  --ink:        #0e1b2b;
  --ink-2:      #33465e;
  --ink-3:      #61748c;
  --line:       #e2e9f2;
  --line-2:     #eef2f8;
  --surface:    #ffffff;
  --surface-2:  #f6f9fd;
  --surface-3:  #eef4fb;
  --brand:      #0b64c8;
  --brand-dark: #084b98;
  --brand-tint: #e8f1fc;
  --amber:      #b8720a;
  --amber-tint: #fdf3e2;
  --green:      #0f7a52;
  --green-tint: #e6f5ef;

  /* Maat */
  --maxw:   1160px;
  --maxw-n: 760px;
  --gut:    clamp(20px, 4vw, 32px);
  --r-sm:   8px;
  --r:      14px;
  --r-lg:   22px;

  /* Diepte */
  --sh-1: 0 1px 2px rgba(14, 27, 43, .06), 0 1px 1px rgba(14, 27, 43, .04);
  --sh-2: 0 4px 12px rgba(14, 27, 43, .07), 0 1px 3px rgba(14, 27, 43, .05);
  --sh-3: 0 18px 48px rgba(14, 27, 43, .13), 0 4px 12px rgba(14, 27, 43, .07);

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
          "Noto Sans", "Liberation Sans", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "DejaVu Sans Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.021em; }
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.35rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); letter-spacing: -.026em; }
h3 { font-size: 1.16rem; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1.1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration-color: rgba(11, 100, 200, .35); text-underline-offset: 3px; }
a:hover { color: var(--brand-dark); text-decoration-color: currentColor; }

strong, b { color: var(--ink); font-weight: 650; }
small { font-size: .84rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
img, svg { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 3px solid rgba(11, 100, 200, .45); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ------------------------------------------------------ */

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: var(--maxw-n); }

section { padding-block: clamp(48px, 7vw, 88px); }
section.tight { padding-block: clamp(34px, 5vw, 56px); }
.tinted { background: var(--surface-2); border-block: 1px solid var(--line-2); }
.inked  { background: var(--ink); color: #c9d6e6; border-block: 1px solid #16263a; }
.inked h2, .inked h3, .inked strong { color: #fff; }
.inked a { color: #8fc0f7; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 100; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- Header ------------------------------------------------------ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; gap: 22px;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); flex: 0 0 auto; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 34px; height: 34px; flex: 0 0 auto; }
.brand .name { display: block; font-weight: 700; font-size: 1.02rem; letter-spacing: -.02em; line-height: 1.15; }
.brand .sub  { display: block; font-size: .69rem; color: var(--ink-3); letter-spacing: .045em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  display: inline-block; padding: 8px 12px; border-radius: var(--r-sm);
  font-size: .95rem; font-weight: 550; color: var(--ink-2); text-decoration: none;
}
.site-nav a:hover { background: var(--surface-3); color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--brand); background: var(--brand-tint); }
.header-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.nav-toggle { display: none; }

@media (max-width: 980px) {
  .site-header .bar { flex-wrap: wrap; min-height: 60px; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 8px; margin-left: auto;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm);
    padding: 9px 13px; font: inherit; font-size: .92rem; font-weight: 600; color: var(--ink); cursor: pointer;
  }
  .site-nav, .header-cta { display: none; width: 100%; }
  .site-header.open .site-nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 8px 0 4px; border-top: 1px solid var(--line-2); margin-top: 6px;
  }
  .site-header.open .site-nav a { padding: 11px 12px; }
  .site-header.open .header-cta { display: flex; padding-bottom: 14px; }
  .site-header.open .header-cta .btn { flex: 1; justify-content: center; }
}

/* ---------- Knoppen ----------------------------------------------------- */

.btn {
  --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border-radius: 10px; border: 1px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-size: .97rem; font-weight: 600; letter-spacing: -.006em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: var(--sh-1);
}
.btn:hover { --btn-bg: var(--brand-dark); --btn-bd: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn:active { transform: none; }
.btn.ghost  { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn.ghost:hover { --btn-bg: var(--surface-2); --btn-fg: var(--ink); --btn-bd: #cfdaea; }
.btn.quiet  { --btn-bg: transparent; --btn-fg: var(--ink-2); --btn-bd: transparent; box-shadow: none; }
.btn.quiet:hover { --btn-bg: var(--surface-3); --btn-fg: var(--ink); }
.btn.lg { padding: 15px 26px; font-size: 1.03rem; border-radius: 12px; }
.btn.light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn.light:hover { --btn-bg: #eaf1fa; --btn-fg: var(--ink); --btn-bd: #eaf1fa; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Hero -------------------------------------------------------- */

.hero { padding-block: clamp(44px, 6vw, 76px) clamp(30px, 4vw, 44px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-tint);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.lead { font-size: clamp(1.06rem, 1rem + .35vw, 1.22rem); color: var(--ink-2); max-width: 56ch; }
.hero h1 + .lead { margin-top: -.15em; }

/* ---------- Bewijsstrook ------------------------------------------------ */

.proofbar { border-block: 1px solid var(--line); background: var(--surface-2); }
.proofbar .items {
  display: flex; flex-wrap: wrap; gap: 10px 34px; align-items: center;
  padding-block: 18px; font-size: .89rem; color: var(--ink-2);
}
.proofbar .item { display: inline-flex; align-items: center; gap: 9px; }
.proofbar svg { width: 17px; height: 17px; color: var(--brand); flex: 0 0 auto; }
.proofbar strong { font-weight: 650; }

/* ---------- Kaarten ----------------------------------------------------- */

.grid { display: grid; gap: 20px; }
.grid.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid.g3, .grid.g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid.g2, .grid.g3, .grid.g4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; box-shadow: var(--sh-1);
}
.card.pad-lg { padding: 30px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-2); font-size: .97rem; }
.card .ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand); margin-bottom: 16px;
}
.card .ico svg { width: 21px; height: 21px; }

.sec-head { max-width: 62ch; margin-bottom: clamp(26px, 3.5vw, 42px); }
.sec-head p { color: var(--ink-2); font-size: 1.04rem; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- Lijsten ----------------------------------------------------- */

ul.plain { list-style: none; padding: 0; margin: 0; }
ul.check { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
ul.check li { position: relative; padding-left: 30px; }
ul.check li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f7a52' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
ul.cross { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
ul.cross li { position: relative; padding-left: 30px; color: var(--ink-2); }
ul.cross li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 19px; height: 19px; border-radius: 50%;
  background: #fdecec url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='3.4' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ---------- Vergelijking zonder/met ------------------------------------- */

.vergelijk {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
  align-items: stretch;
}
.vk-kop {
  padding: 14px 20px; border-radius: 12px; font-weight: 700; font-size: 1.02rem;
  letter-spacing: -.015em; text-align: center;
}
.vk-kop.zonder { background: var(--surface-3); color: var(--ink-2); }
.vk-kop.met    { background: var(--brand); color: #fff; box-shadow: var(--sh-2); }

.vk-cel {
  position: relative; padding: 16px 20px 16px 48px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.vk-cel h3 { font-size: 1rem; margin-bottom: .25em; }
.vk-cel p  { font-size: .93rem; margin: 0; color: var(--ink-2); }
.vk-cel::before {
  content: ""; position: absolute; left: 18px; top: 19px;
  width: 20px; height: 20px; border-radius: 50%;
}
.vk-cel.zonder { background: var(--surface-2); border-color: transparent; }
.vk-cel.zonder h3 { color: var(--ink-2); font-weight: 620; }
.vk-cel.zonder::before {
  background: #fdecec url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='3.4' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.vk-cel.met::before {
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f7a52' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

@media (max-width: 760px) {
  /* Gestapeld blijft het paar bij elkaar: eerst de situatie, dan de oplossing. */
  .vergelijk { grid-template-columns: 1fr; gap: 8px; }
  .vk-kop { display: none; }
  .vk-cel { padding-top: 34px; }
  .vk-cel::after {
    content: attr(data-label); position: absolute; left: 20px; top: 12px;
    font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  }
  .vk-cel.zonder::after { content: "Nu"; color: var(--ink-3); }
  .vk-cel.met::after    { content: "Met PRO Planning"; color: var(--brand); }
  .vk-cel::before { top: 37px; }
  .vk-cel.met { margin-bottom: 18px; }
}

/* ---------- Stappen ----------------------------------------------------- */

.steps { counter-reset: step; display: grid; gap: 18px; }
.steps > li {
  counter-increment: step; list-style: none; position: relative;
  padding: 22px 24px 22px 68px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1);
}
.steps > li::before {
  content: counter(step); position: absolute; left: 22px; top: 21px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: .92rem; font-weight: 700;
}
.steps h3 { margin-bottom: .25em; font-size: 1.05rem; }
.steps p { font-size: .97rem; margin: 0; }

/* ---------- Cijfers ----------------------------------------------------- */

.stat { text-align: left; }
.stat .n { display: block; font-size: clamp(1.9rem, 1.4rem + 1.7vw, 2.6rem); font-weight: 700; color: var(--ink); letter-spacing: -.035em; line-height: 1.05; }
.stat .l { display: block; font-size: .93rem; color: var(--ink-3); margin-top: 6px; }
.inked .stat .n { color: #fff; }
.inked .stat .l { color: #9db0c6; }

/* ---------- Tabellen ---------------------------------------------------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); border: 1px solid var(--line); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 540px; }
table.data th, table.data td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.data thead th { background: var(--surface-2); color: var(--ink); font-weight: 650; font-size: .87rem; letter-spacing: .01em; white-space: nowrap; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- Prijzen ----------------------------------------------------- */

.plans { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-1); position: relative; }
.plan.featured { border-color: var(--brand); box-shadow: var(--sh-3); }
.plan .tag {
  position: absolute; top: -12px; left: 28px;
  background: var(--brand); color: #fff; font-size: .74rem; font-weight: 650;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px;
}
.plan h3 { font-size: 1.14rem; margin-bottom: .2em; }
.plan .who { color: var(--ink-3); font-size: .92rem; margin-bottom: 20px; }
.plan .price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.plan .price .amt { font-size: 2.6rem; font-weight: 700; color: var(--ink); letter-spacing: -.04em; }
.plan .price .per { font-size: .92rem; color: var(--ink-3); }
.plan .note { font-size: .86rem; color: var(--ink-3); margin-bottom: 22px; }
.plan ul.check { margin-block: 22px; font-size: .95rem; }
.plan .btn { width: 100%; }

/* ---------- Rekenhulp --------------------------------------------------- */

.calc {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: #fff; box-shadow: var(--sh-2);
}
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; } }

.calc-in  { padding: clamp(22px, 3vw, 32px); }
.calc-out {
  padding: clamp(22px, 3vw, 32px);
  background: var(--ink); color: #a9bcd2;
  display: flex; flex-direction: column; gap: 4px;
}
.calc-out .btn { margin-top: 18px; align-self: flex-start; }
@media (max-width: 820px) { .calc-out .btn { align-self: stretch; } }

.calc-field { display: block; margin-bottom: 18px; }
.calc-field .k { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.calc-field .hint { display: block; font-size: .82rem; color: var(--ink-3); margin-top: 5px; }
.calc-field input {
  width: 100%; padding: 11px 13px; font: inherit; font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
}
.calc-field input:focus { border-color: var(--brand); }
.calc-field .prefixed { position: relative; display: block; }
.calc-field .prefixed .prefix {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--ink-3); font-size: 1.02rem; pointer-events: none;
}
.calc-field .prefixed input { padding-left: 30px; }
.calc-field .suffixed { position: relative; display: block; }
.calc-field .suffixed .suffix {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  color: var(--ink-3); font-size: .93rem; pointer-events: none;
}
.calc-field .suffixed input { padding-right: 74px; }

.calc-error {
  font-size: .87rem; color: var(--amber); background: var(--amber-tint);
  border-radius: var(--r-sm); padding: 9px 12px; margin: 0;
}

.calc-row { display: block; }
.calc-label { display: block; font-size: .84rem; letter-spacing: .05em; text-transform: uppercase; color: #7f93aa; }
.calc-big {
  display: block; font-size: clamp(2rem, 1.5rem + 1.8vw, 2.7rem); font-weight: 700;
  color: #fff; letter-spacing: -.035em; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.calc-mid {
  display: block; font-size: 1.5rem; font-weight: 650; color: #dbe6f2;
  letter-spacing: -.02em; line-height: 1.2; font-variant-numeric: tabular-nums;
}
.calc-sub { display: block; font-size: .92rem; color: #a9bcd2; }
.calc-sub strong { color: #fff; }
.calc-split { font-size: .86rem; color: #7f93aa; font-variant-numeric: tabular-nums; margin-top: 2px; }
.calc-hr { border: 0; border-top: 1px solid #1d3049; margin: 20px 0; }
.calc-note { font-size: .9rem; color: #a9bcd2; margin: 16px 0 0; }
/* De globale strong-regel kleurt vet donkerblauw; op dit donkere paneel valt dat weg. */
.calc-out strong { color: #fff; }

/* ---------- Call to action ---------------------------------------------- */

.cta-note {
  display: block; font-size: .86rem; color: var(--ink-3); margin-top: 10px;
}
.calc-out .cta-note { color: #7f93aa; }
.btn-row + .cta-note { margin-top: 12px; }
.center .cta-note { text-align: center; }

.cta-band { background: var(--surface-2); border-block: 1px solid var(--line); }
.cta-band .inner { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; justify-content: space-between; }
.cta-band h2 { margin-bottom: .2em; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
.cta-band p { margin: 0; color: var(--ink-2); }

/* ---------- App-mockup -------------------------------------------------- */

.frame {
  border-radius: var(--r-lg); border: 1px solid var(--line);
  background: #fff; box-shadow: var(--sh-3); overflow: hidden;
}
.frame .chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.frame .chrome i { width: 10px; height: 10px; border-radius: 50%; background: #d6dfeb; }
.frame .chrome .addr {
  margin-left: 8px; font-size: .74rem; color: var(--ink-3); font-family: var(--mono);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.frame .screen { padding: 18px; background: #fff; }
.frame figcaption { padding: 12px 18px; font-size: .84rem; color: var(--ink-3); background: var(--surface-2); border-top: 1px solid var(--line-2); }

/* Takenlijst zoals in de app */
.ui-title { font-size: 1.28rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin: 4px 2px 14px; }
.ui-task { display: flex; align-items: center; gap: 13px; padding: 11px 12px; border-bottom: 1px solid var(--line-2); }
.ui-task:last-child { border-bottom: 0; }
.ui-task .box { width: 21px; height: 21px; border-radius: 50%; border: 2px solid #cbd6e4; flex: 0 0 auto; }
.ui-task.done .box { background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; border-color: var(--brand); }
.ui-task.done .t { color: var(--ink-3); }
.ui-task .m { min-width: 0; flex: 1; }
.ui-task .t { display: block; color: var(--ink); font-weight: 550; font-size: .95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ui-task .s { display: block; color: var(--ink-3); font-size: .82rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ui-task .h { font-size: .84rem; font-variant-numeric: tabular-nums; color: var(--ink-2); background: var(--surface-3); border-radius: 999px; padding: 4px 11px; flex: 0 0 auto; }
.ui-task.now { border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--sh-2); margin: 4px 0; }

/* Planningsraster zoals de teamweergave */
.ui-plan { width: 100%; border-collapse: collapse; font-size: .74rem; font-variant-numeric: tabular-nums; }
.ui-plan th, .ui-plan td { padding: 5px 7px; border-bottom: 1px solid var(--line-2); white-space: nowrap; }
.ui-plan thead th { color: var(--ink-3); font-weight: 600; font-size: .69rem; text-align: center; }
.ui-plan thead th:first-child { text-align: left; }
.ui-plan td:first-child, .ui-plan th:first-child { text-align: left; color: var(--ink); }
.ui-plan td { text-align: center; color: var(--ink-2); }
.ui-plan tr.proj td { background: var(--brand); color: #fff; font-weight: 650; }
.ui-plan tr.proj td:first-child { border-radius: 5px 0 0 5px; }
.ui-plan tr.proj td:last-child { border-radius: 0 5px 5px 0; }
.ui-plan tr.leave td { background: var(--amber-tint); color: var(--amber); font-weight: 600; }
.ui-plan td.i1 { background: #e8f1fc; } .ui-plan td.i2 { background: #cfe2f8; }
.ui-plan td.i3 { background: #9dc6f0; color: var(--ink); } .ui-plan td.i4 { background: #6aa8e8; color: #fff; }
.ui-plan td.over { background: #e8791f; color: #fff; font-weight: 650; }
.ui-plan td.sub { padding-left: 16px; color: var(--ink-2); }

/* ---------- Citaat / callout -------------------------------------------- */

.callout {
  border: 1px solid var(--line); border-left: 4px solid var(--brand);
  background: var(--surface-2); border-radius: var(--r-sm);
  padding: 20px 24px; font-size: .98rem;
}
.callout.warn { border-left-color: var(--amber); background: var(--amber-tint); }
.callout h3 { font-size: 1.02rem; }

blockquote.quote { margin: 0; padding: 0; }
blockquote.quote p { font-size: 1.1rem; color: var(--ink); }
blockquote.quote footer { font-size: .9rem; color: var(--ink-3); }
blockquote.quote footer strong { color: var(--ink); }

/* Citaat met portret: zonder gezicht en aanloop leest een quote als willekeurige tekst. */
.quote-card { display: flex; gap: 24px; align-items: flex-start; }
.quote-foto {
  width: 96px; height: 96px; border-radius: 50%; flex: 0 0 auto;
  object-fit: cover; box-shadow: var(--sh-2);
}
@media (max-width: 620px) {
  .quote-card { flex-direction: column; gap: 16px; }
  .quote-foto { width: 72px; height: 72px; }
}

/* ---------- Contactgegevens --------------------------------------------- */

.contact-list { display: grid; gap: 18px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: 0 0 auto; }
.contact-row .ico svg { width: 19px; height: 19px; }
.contact-row .k { display: block; font-size: .8rem; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.contact-row .v { display: block; color: var(--ink); font-weight: 600; }
.tel-img { height: 25px; width: auto; display: inline-block; vertical-align: -5px; }

/* ---------- Accordeon --------------------------------------------------- */

details.faq { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 0; margin-bottom: 12px; box-shadow: var(--sh-1); }
details.faq > summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 620; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: ""; width: 11px; height: 11px; flex: 0 0 auto;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg) translateY(-3px); transition: transform .15s ease;
}
details.faq[open] > summary::after { transform: rotate(225deg) translateY(-2px); }
details.faq .body { padding: 0 22px 20px; font-size: .97rem; }

/* ---------- Footer ------------------------------------------------------ */

.site-footer { background: var(--ink); color: #9db0c6; padding-block: 54px 30px; font-size: .93rem; }
.site-footer a { color: #c9d8e9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer .brand .name { color: #fff; }
.site-footer .brand .sub { color: #7f93aa; }
.footer-note { margin-top: 40px; padding-top: 22px; border-top: 1px solid #1d3049; display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: .85rem; color: #7f93aa; }

/* ---------- Hulpklassen ------------------------------------------------- */

.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; }
.muted { color: var(--ink-3); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 650;
  padding: 4px 10px; border-radius: 999px; background: var(--surface-3); color: var(--ink-2);
}
.badge.ok { background: var(--green-tint); color: var(--green); }
.badge.soon { background: var(--amber-tint); color: var(--amber); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

@media print {
  .site-header, .site-footer, .btn { display: none; }
  body { color: #000; }
}
