/* ═══════════════════════════════════════════════════════════
   Vordero Marketing — Shared Design Tokens & Base Styles
   Canonical source: products/vordero/design/tokens.css
   Updated: 2026-05-29
   ═══════════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS (light mode = default) — Petrol + Slate (design system v2) ── */
:root {
  /* Brand — teal (merk-mark); primary UI = teal-700 */
  --brand:    #0d9488;
  --brand-h:  #0f766e;
  --brand-p:  #134e4a;
  --brand-ll: rgba(13,148,136,.08);
  --brand-md: rgba(13,148,136,.18);

  /* Light surface (default) — slate */
  --bg:    #f8fafc;
  --bg-2:  #f1f5f9;
  --bg-3:  #e2e8f0;
  --bg-4:  #cbd5e1;

  /* Text — slate */
  --text:   #0f172a;
  --text-2: #475569;
  --text-3: #64748b;
  --text-4: #94a3b8;

  /* Border */
  --border:   rgba(15,23,42,.08);
  --border-2: rgba(15,23,42,.14);

  /* Status */
  --green: #16A34A;
  --red:   #DC2626;
  --amber: #d97706;

  /* Theme-adaptive tokens */
  --nav-bg: rgba(248,250,252,.90);
  --deco-stroke: rgba(15,23,42,.05);
  --deco-hover: rgba(15,23,42,.035);
  --dot-1px: rgba(15,23,42,.05);
  --incasso-mid-1: #ecfdf5;
  --incasso-mid-2: #f0fdfa;
  --cta-start: #ecfdf5;
  --cta-mid: #f0fdfa;
  --pricing-feat-start: #ecfdf5;
  --pricing-feat-end: #d1fae5;
  --shadow-strong: rgba(15,23,42,.10);
  --shadow-card: rgba(15,23,42,.12);
  /* Amber UI elements (decorative) */
  --amber-ui-bg: rgba(217,119,6,.10);
  --amber-ui-color: #b45309;
  --amber-ui-border: rgba(217,119,6,.22);

  /* Radius */
  --r:    8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* Font */
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: "ss01" on, "ss02" on, "cv01" on;
}

/* ── DARK MODE ──────────────────────────────────────────────── */
html[data-mode="dark"] {
  /* Brand — teal-400 op donker (zelfde als app dark) */
  --brand:    #2dd4bf;
  --brand-h:  #5eead4;
  --brand-p:  #99f6e4;
  --brand-ll: rgba(45,212,191,.10);
  --brand-md: rgba(45,212,191,.20);
  /* Slate-donker (zelfde familie als app dark) */
  --bg:    #0b1120;
  --bg-2:  #131c2b;
  --bg-3:  #1e293b;
  --bg-4:  #283548;
  --text:   #e2e8f0;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --text-4: #475569;
  --border:   rgba(226,232,240,.08);
  --border-2: rgba(226,232,240,.14);
  --green: #4ade80;
  --red:   #f87171;
  --amber: #fbbf24;
  --nav-bg: rgba(11,17,32,.88);
  --deco-stroke: rgba(226,232,240,.05);
  --deco-hover: rgba(226,232,240,.03);
  --dot-1px: rgba(226,232,240,.03);
  --incasso-mid-1: #0c1f1c;
  --incasso-mid-2: #0a1715;
  --cta-start: #0c1f1c;
  --cta-mid: #0a1715;
  --pricing-feat-start: #0c1f1c;
  --pricing-feat-end: #0a1715;
  --shadow-strong: rgba(0,0,0,.35);
  --shadow-card: rgba(0,0,0,.4);
  --amber-ui-bg: rgba(251,191,36,.12);
  --amber-ui-color: #FBBF24;
  --amber-ui-border: rgba(251,191,36,.25);
}

/* ── BASE ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(13,148,136,.35), 0 4px 16px rgba(13,148,136,.25);
}
.btn-primary:hover {
  background: var(--brand-h);
  box-shadow: 0 0 0 1px rgba(15,118,110,.45), 0 6px 24px rgba(13,148,136,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--border-2); color: var(--text); background: var(--bg-3); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--r-lg); }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  height: 62px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
/* index.html uses .nav-wordmark, pricing/cashflow use .nav-logo span directly */
.nav-wordmark,
.nav-logo > span {
  font-size: 17px; font-weight: 700;
  color: var(--text);
  letter-spacing: -.03em;
}
.nav-right {
  margin-left: auto;
  display: flex; align-items: center; gap: 20px;
}
.nav-url {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: var(--text-3);
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* pricing/cashflow: .nav-links is direct child of .nav-inner */
.nav-right .nav-links,
.nav-inner > .nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
/* index.html: .nav-links is inside .nav-right (no margin-left: auto needed) */
.nav-right .nav-links { margin-left: 0; }
.nav-links > a:not(.btn) {
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r);
  transition: color .12s, background .12s;
}
.nav-links > a.active { color: var(--text); }
.nav-links > a:not(.btn):hover { color: var(--text); background: var(--bg-3); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--text); margin-left: 12px; padding: 6px;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  padding: 10px 16px 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 12px; font-size: 15px; font-weight: 500;
  color: var(--text-2); border-radius: var(--r);
}
.nav-mobile a:hover { background: var(--bg-3); color: var(--text); }
/* ── Nav actions (Inloggen + Start gratis) ──────────── */
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-login-link { font-size: 13px; font-weight: 500; color: var(--text-2); text-decoration: none; transition: color .12s; white-space: nowrap; padding: 6px 8px; border-radius: var(--r); }
.nav-login-link:hover { color: var(--text); }
.nav-start-btn { display: inline-flex; align-items: center; background: var(--brand); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background .15s; }
.nav-start-btn:hover { background: var(--brand-h); }

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-2); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 8px;
  transition: color .12s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); transition: color .12s; }
.footer-bottom a:hover { color: var(--text-2); }

/* ── TRUST ITEMS ────────────────────────────────────────── */
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2);
}
.trust-item svg {
  width: 14px; height: 14px;
  stroke: var(--brand);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .nav-right .nav-links,
  .nav-inner > .nav-links  { display: none; }
  .nav-url                 { display: none; }
  .nav-mobile-btn          { display: block; }
  .nav-actions             { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
}



