/* LabelDirect — premium design system (rust, witruimte, één accent) */
:root {
  /* Kleur */
  --ink: #0d1b14;
  --ink-soft: #1c2b23;
  --body: #3f4c46;
  --muted: #5f6a64;
  --line: #e6ebe8;
  --line-strong: #d7ded9;
  --bg: #f4f7f5;
  --surface: #eaf0ec;
  --accent: #0f7a52;
  --accent-hover: #0b5e3f;
  --accent-soft: #ecf3ef;

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;

  /* Shadow (subtiel) */
  --shadow-sm: 0 1px 2px rgba(13, 27, 20, .05);
  --shadow: 0 4px 24px rgba(13, 27, 20, .06);
  --shadow-lg: 0 16px 48px rgba(13, 27, 20, .10);

  --maxw: 1080px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  font-feature-settings: "cv02", "cv03", "cv04", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.03em; }
h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.45rem, 2.8vw, 2.05rem); letter-spacing: -.025em; }
h3 { font-size: 1.14rem; letter-spacing: -.015em; font-weight: 700; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.13rem; line-height: 1.62; color: var(--body); }
.prose p { font-size: 1.05rem; line-height: 1.75; }
.prose p + p { margin-top: 1.1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-soft { background: var(--surface); }
.section-mint { background: var(--surface); }
.section-white { background: #fff; }
.section-accent { background: var(--accent-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.section-intro { max-width: 640px; margin: 0 auto 56px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-weight: 600; font-size: .98rem; padding: 12px 22px; border-radius: var(--radius-sm);
  cursor: pointer; border: 1px solid transparent; transition: all .15s ease; text-align: center;
  letter-spacing: -.01em;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-amber { background: #fff; color: var(--ink); }
.btn-amber:hover { background: rgba(255, 255, 255, .9); color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; }
.brand:hover { color: var(--ink); }
.brand .logo { width: 30px; height: 30px; }
.brand b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--body); font-weight: 500; font-size: .94rem; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-weight: 600; color: var(--ink); white-space: nowrap; font-size: .94rem; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* Menu dropdown */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu { position: relative; }
.menu-btn {
  display: inline-flex; align-items: center; gap: 7px; background: #fff;
  border: 1px solid var(--line-strong); color: var(--ink); font-family: inherit;
  font-weight: 500; font-size: .94rem; padding: 9px 16px; border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .15s ease;
}
.menu-btn:hover { border-color: var(--ink); }
.menu-btn svg { transition: transform .2s ease; color: var(--muted); }
.menu.open .menu-btn svg { transform: rotate(180deg); }
.menu-panel {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; display: none; flex-direction: column;
}
.menu-panel.open { display: flex; animation: fadeUp .16s ease both; }
.menu-panel a { padding: 10px 14px; border-radius: var(--radius-sm); color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.menu-panel a:hover { background: var(--surface); color: var(--ink); }
.menu-sep { height: 1px; background: var(--line); margin: 8px 6px; }
.menu-panel .menu-phone { color: var(--accent); font-weight: 600; }

/* Donkere premium knop (header) */
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); color: #fff; }

/* Top utility bar — subtiel, niet schreeuwerig */
.topbar { background: var(--surface); color: var(--muted); font-size: .8rem; border-bottom: 1px solid var(--line); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 36px; gap: 16px; }
.topbar .tb-left { display: flex; align-items: center; gap: 22px; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; color: var(--muted); font-weight: 500; }
.topbar a.tb-item { color: var(--ink); font-weight: 600; }
.topbar a.tb-item:hover { color: var(--accent); }

/* Hero */
.hero { position: relative; padding: 80px 0 88px; background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 340px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 span { color: var(--accent); }
.hero .lead { margin-bottom: 28px; max-width: 30ch; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.hero-points li { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; color: var(--ink-soft); font-size: 1rem; }
.hero-points svg { flex: 0 0 auto; margin-top: 3px; }
.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.guarantee-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); color: var(--ink-soft); font-weight: 500; font-size: .85rem; padding: 8px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.trust-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; color: var(--muted); font-size: .9rem; }

/* Form card */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.form-card h2 { font-size: 1.4rem; margin-bottom: 6px; letter-spacing: -.02em; }
.form-card .sub { color: var(--muted); font-size: .94rem; margin: 0 0 22px; }
.form-card .promise { color: var(--accent); font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 7px; font-size: .92rem; }
.form-row { display: grid; gap: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field label { display: block; font-size: .84rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; }
.field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; transition: .15s; background: #fff; color: var(--ink);
}
.field input::placeholder { color: #b3bcb6; }
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(15, 122, 82, .12); }
.form-card .fineprint { font-size: .8rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .8rem; color: var(--muted); margin-top: 14px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-top: 6px; line-height: 1.45; text-align: left; }
.consent input { margin-top: 3px; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--accent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-success { display: none; background: var(--accent-soft); border: 1px solid var(--accent); border-radius: var(--radius); padding: 22px; color: var(--accent-hover); font-weight: 500; }

/* Cards / grids */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-2px); }
.card .ico {
  width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: .96rem; color: var(--body); }
a.card, a.card:hover { text-decoration: none; color: inherit; }

/* Steps */
.steps { counter-reset: step; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff;
  font-weight: 700; font-size: 1.05rem; display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; font-size: .96rem; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media img { border-radius: var(--radius-lg); border: 1px solid var(--line); }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.checklist svg { flex: 0 0 auto; margin-top: 4px; }

/* Price tiers */
.price-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 940px; margin: 0 auto; }
a.tier { display: block; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; transition: border-color .15s ease, transform .15s ease; }
a.tier:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.tier .area { font-weight: 600; color: var(--ink); font-size: 1rem; }
.tier .price { font-size: 1.8rem; font-weight: 800; color: var(--ink); margin-top: 10px; letter-spacing: -.03em; line-height: 1; }
.tier .unit { font-size: .78rem; color: var(--muted); margin-top: 5px; }
.tier-help { text-align: center; color: var(--muted); font-size: .9rem; margin: 22px 0 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.price-includes { max-width: 720px; margin: 48px auto 0; }
.price-includes h3 { font-size: 1rem; margin-bottom: 18px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.includes-list { list-style: none; padding: 0; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 13px 28px; }
.includes-list li { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; color: var(--ink-soft); font-size: .95rem; }

/* CTA band — donker, premium focusblok */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 68px 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .68); max-width: 520px; margin: 0 auto 30px; }

/* Stats band — sober */
.stats-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding-top: 52px; padding-bottom: 52px; text-align: center; }
.stat .num { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.stat .lbl { font-size: .9rem; color: var(--muted); margin-top: 8px; }

/* Blog cards */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .thumb { aspect-ratio: 16/9; background: var(--surface); border-bottom: 1px solid var(--line); }
.post-card .pc-body { padding: 24px; }
.post-card .cat { font-size: .74rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.post-card h3 { margin: 10px 0 8px; font-size: 1.1rem; }
.post-card p { font-size: .93rem; margin-bottom: 0; }

/* Rating badge in hero */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px 8px 14px;
  box-shadow: var(--shadow-sm); cursor: pointer; font-family: inherit; margin-bottom: 24px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.rating-badge:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.rating-badge .rb-stars { color: #e0a93b; letter-spacing: 1px; font-size: .92rem; }
.rating-badge .rb-text { font-size: .9rem; color: var(--ink-soft); }
.rating-badge .rb-text b { color: var(--ink); font-weight: 700; }
.rating-badge svg { color: var(--muted); }

/* Reviews modal (popup) */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(13, 27, 20, .45);
  backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; animation: overlayIn .18s ease forwards;
}
.modal-overlay[hidden] { display: none; }
@keyframes overlayIn { to { opacity: 1; } }
.modal {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  max-width: 640px; width: 100%; max-height: 84vh; overflow-y: auto;
  padding: 32px; box-shadow: var(--shadow-lg); animation: fadeUp .2s ease both;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 1.2rem;
  line-height: 1; cursor: pointer; display: grid; place-items: center; transition: .15s;
}
.modal-close:hover { border-color: var(--ink); color: var(--ink); }
.modal-head { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.modal-head .rb-stars { color: #e0a93b; letter-spacing: 2px; font-size: 1.15rem; }
.modal-head b { display: block; font-size: 1.15rem; color: var(--ink); letter-spacing: -.02em; }
.modal-head span { font-size: .9rem; color: var(--muted); }
.modal-reviews { display: grid; gap: 14px; }

/* Reviews */
.reviews-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.reviews-head-row .eyebrow { margin-bottom: 12px; }
.reviews-head-row h2 { margin: 0; }
.reviews-sub { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin: 14px 0 0; color: var(--muted); font-size: .95rem; }
.reviews-sub .stars { color: #e0a93b; letter-spacing: 2px; }
.reviews-sub b { color: var(--ink); font-weight: 700; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); }
.review-card .rc-quote { font-family: Georgia, "Times New Roman", serif; font-size: 2.6rem; line-height: .6; color: var(--accent); opacity: .2; height: 20px; }
.review-card .rc-stars { color: #e0a93b; letter-spacing: 1px; font-size: .9rem; }
.review-card p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.62; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; font-weight: 700; font-size: .85rem; flex: 0 0 auto; }
.reviewer b { display: block; font-size: .9rem; color: var(--ink); }
.reviewer span { font-size: .8rem; color: var(--muted); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 9px 16px; font-weight: 500; color: var(--body); font-size: .92rem; transition: all .15s ease; }
.chip:hover { border-color: var(--accent); color: var(--ink); text-decoration: none; }

/* Article */
.article { max-width: 720px; margin: 0 auto; }
.article .meta { color: var(--muted); font-size: .88rem; margin-bottom: 26px; }
.article h2 { margin-top: 44px; }
.article h3 { margin-top: 28px; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 9px; }
.article .hero-img { border-radius: var(--radius-lg); border: 1px solid var(--line); margin-bottom: 32px; }
.callout { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 24px 26px; margin: 34px 0; }
.callout h3 { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { margin: 0 0 8px; font-size: 1.06rem; }
.faq-item p { margin: 0; }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* Page hero (interior) */
.page-hero { background: var(--bg); padding: 64px 0 40px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 760px; }
.page-hero .lead { max-width: 660px; }

/* Footer */
.site-footer { background: var(--ink); color: #9fb1a8; padding: 64px 0 28px; }
.site-footer a { color: #c3d0ca; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: .82rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: .92rem; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand span { color: #fff; }
.footer-brand p { font-size: .9rem; color: #7d8e85; max-width: 30ch; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; font-size: .82rem; color: #6f8077; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hide-mobile { display: initial; }

/* Subtiele intro-animatie */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero-grid > div, .page-hero .container > * { animation: fadeUp .5s ease both; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-tiers { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .hide-mobile { display: none; }
}
@media (max-width: 760px) {
  .topbar .tb-hide { display: none; }
  .stats-band .container { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}
@media (max-width: 560px) {
  .brand { font-size: .92rem; gap: 7px; }
  .brand .logo { width: 26px; height: 26px; }
  .menu-btn { padding: 8px 12px; font-size: .88rem; }
  .btn-dark { padding: 9px 14px; font-size: .9rem; }
  .nav-actions { gap: 8px; }
}
@media (max-width: 620px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .price-tiers { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-band { padding: 44px 24px; }
  .form-card { padding: 24px; }
}
