/* =========================================================
   Approvix — Landing page styles
   Brand: green gradient #00A884 → #008069, Inter
   ========================================================= */

:root {
  /* Palette */
  --brand: #00A884;
  --brand-dark: #008069;
  --grad: linear-gradient(135deg, #00A884 0%, #008069 100%);

  --text: #111B21;
  --text-2: #667781;
  --bg: #F7FAF9;
  --bg-alt: #EEF5F3;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --dark: #0B1416;

  --green-soft: #E3F6EF;
  --orange: #B7791F;
  --orange-soft: #FCEFD8;

  /* Radii */
  --r-card: 20px;
  --r-btn: 12px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(17, 27, 33, 0.04), 0 2px 8px rgba(17, 27, 33, 0.04);
  --shadow-md: 0 4px 16px rgba(17, 27, 33, 0.06), 0 12px 32px rgba(17, 27, 33, 0.06);
  --shadow-lg: 0 18px 48px rgba(0, 128, 105, 0.16), 0 8px 24px rgba(17, 27, 33, 0.08);

  --container: 1160px;
  --gutter: 24px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid rgba(0, 168, 132, 0.45);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Brand / logo ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-badge {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 128, 105, 0.28);
  flex-shrink: 0;
}
.brand-name { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.03em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(0, 128, 105, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 128, 105, 0.34); }

.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { transform: translateY(-2px); border-color: #cdd8d4; box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: rgba(0, 168, 132, 0.08); color: var(--brand-dark); }

.btn-on-dark { background: #fff; color: var(--brand-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.28); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 250, 249, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; color: var(--text-2); transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 10px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 12px var(--gutter) 22px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 12px 8px; font-weight: 600; color: var(--text); border-radius: 10px; }
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 56px; overflow: hidden; }
.hero-aura {
  position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  background:
    radial-gradient(closest-side at 78% 20%, rgba(0,168,132,0.20), transparent 70%),
    radial-gradient(closest-side at 20% 30%, rgba(0,128,105,0.14), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--brand-dark);
  background: var(--green-soft);
  padding: 6px 14px; border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-2); max-width: 36ch; margin-bottom: 28px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

.trust-line { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 0.92rem; font-weight: 500; }
.check-mini { color: var(--brand); flex-shrink: 0; }

/* ---------- Browser frame ---------- */
.browser {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: #F2F6F5;
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #FF5F57; } .dot-y { background: #FEBC2E; } .dot-g { background: #28C840; }
.browser-url {
  margin-left: 10px;
  font-size: 0.78rem; color: var(--text-2);
  background: #fff; border: 1px solid var(--border);
  padding: 4px 14px; border-radius: var(--r-pill);
  flex: 1; max-width: 280px;
  /* URL is één onafbreekbaar woord — afkappen i.p.v. de pagina laten overlopen */
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.browser-body { padding: 18px; background: var(--bg); }
.browser-body.p0 { padding: 0; }
.browser-body.p0 img {
  display: block; width: 100%; height: auto;
  border-bottom-left-radius: 15px; border-bottom-right-radius: 15px;
}

/* Pills */
.pill {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: var(--r-pill);
}
.pill-green { background: var(--green-soft); color: var(--brand-dark); }
.pill-orange { background: var(--orange-soft); color: var(--orange); }
.pill-soft { background: var(--bg-alt); color: var(--text-2); }

/* ---------- Logo strip ---------- */
.logo-strip {
  position: relative; z-index: 1;
  margin-top: 56px; padding-top: 28px; padding-bottom: 8px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; justify-content: center;
  color: var(--text-2);
}
.logo-strip > span { font-size: 0.85rem; font-weight: 600; }
.logo-strip ul { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.logo-strip li { font-weight: 700; font-size: 1rem; color: #9AA9A4; letter-spacing: -0.01em; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.section-sub { color: var(--text-2); font-size: 1.08rem; }

/* ---------- Card grids ---------- */
.feat-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-soft); color: var(--brand-dark);
  margin-bottom: 16px;
}

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe5dd; }
.audience-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.audience-card p { color: var(--text-2); }

/* Download-kaarten (#download) — knop gepind op de onderrand, noot erboven.
   auto-fit zodat de rij netjes vult, ook nu de Android-kaart verborgen is. */
#download .cards-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.download-card { display: flex; flex-direction: column; }
.download-note { margin-top: 12px; font-size: 0.875rem; }
.download-card .btn { margin-top: auto; }
.download-card .download-note { margin-bottom: 16px; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe5dd; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 7px; }
.feature-card p { color: var(--text-2); font-size: 0.97rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem; margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0, 128, 105, 0.28);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--text-2); }

/* ---------- Showcase ---------- */
.showcase-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
  margin-bottom: 72px;
}
/* Grid-items mogen smaller worden dan hun min-content (voorkomt blowout op smal scherm) */
.showcase-row > * { min-width: 0; }
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-row.reverse .showcase-visual { order: 1; }
.showcase-text h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 8px 0 14px; }
.showcase-text > p { color: var(--text-2); font-size: 1.06rem; margin-bottom: 18px; }

.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23008069' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Invoice */
.invoice { display: flex; flex-direction: column; }
.invoice-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.invoice-head strong { display: block; font-size: 1.02rem; }
.invoice-head .muted { font-size: 0.83rem; color: var(--text-2); }
.invoice-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.invoice-row span:first-child { color: var(--text-2); }
.invoice-row.sub span:first-child { color: var(--text); font-weight: 500; }
.invoice-row.total { border-bottom: none; padding-top: 14px; font-size: 1.05rem; }
.invoice-row.total strong { color: var(--brand-dark); font-size: 1.2rem; }

/* ---------- Pricing ---------- */
.trial-banner {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  max-width: 620px; margin: 0 auto 36px;
  background: var(--green-soft); color: var(--brand-dark);
  border-radius: var(--r-pill); padding: 14px 26px;
  font-size: 1rem; text-align: center;
}
.trial-banner svg { flex-shrink: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; align-items: start; }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 32px 30px; box-shadow: var(--shadow-sm); position: relative;
}
.price-card.featured {
  border: 2px solid var(--brand); box-shadow: var(--shadow-md);
  /* 1px minder padding rondom compenseert de dikkere rand: beide kaarten even hoog */
  padding: 31px 29px;
}
.badge-popular {
  position: absolute; top: -13px; left: 30px;
  background: var(--grad); color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 5px 14px; border-radius: var(--r-pill);
  box-shadow: 0 6px 14px rgba(0, 128, 105, 0.3);
}
.plan-name { font-size: 1.35rem; margin-bottom: 6px; }
.plan-desc { color: var(--text-2); font-size: 0.95rem; margin-bottom: 18px; min-height: 44px; }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; }
.price .per { color: var(--text-2); font-size: 0.95rem; font-weight: 500; }
.price-note { color: var(--text-2); font-size: 0.9rem; margin-bottom: 20px; }
.price-note strong { color: var(--text); }
.price-card .btn { margin-bottom: 22px; }
.plan-features { display: flex; flex-direction: column; gap: 11px; }
.plan-features li { position: relative; padding-left: 28px; color: var(--text); font-size: 0.95rem; }
.plan-features li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23008069' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); color: #fff; padding: 76px 0; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(closest-side at 80% 0%, rgba(255,255,255,0.16), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; max-width: 680px; }
.cta-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-inner p { font-size: 1.12rem; opacity: 0.92; margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #C7D2CE; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-tag { color: #8B9B96; margin-top: 14px; max-width: 28ch; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #C7D2CE; font-size: 0.95rem; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  font-size: 0.85rem; color: #8B9B96;
}

/* ---------- Screen-reader-only ---------- */
.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;
}

/* ---------- USP / Waarom ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.usp-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe5dd; }
.usp-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.usp-card p { color: var(--text-2); font-size: 0.97rem; }

/* ROI / outcome strip */
.outcome-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px;
  margin-top: 40px;
}
.outcome-strip li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green-soft); color: var(--brand-dark);
  font-weight: 600; font-size: 0.95rem;
  padding: 10px 18px; border-radius: var(--r-pill);
}
.outcome-strip li svg { flex-shrink: 0; }

/* ---------- Comparison table ---------- */
.compare-wrap {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  box-shadow: var(--shadow-md); overflow: hidden; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table caption { text-align: left; }
.compare-table th, .compare-table td {
  padding: 16px 18px; text-align: center; vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  font-size: 1rem; font-weight: 800; color: var(--text);
  background: var(--bg-alt); vertical-align: bottom;
}
.compare-table thead th .th-sub { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-2); }
.compare-table th[scope="row"], .compare-row-head {
  text-align: left; font-weight: 600; color: var(--text); font-size: 0.97rem;
}
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) th[scope="row"],
.compare-table tbody tr:nth-child(even) td { background: rgba(238, 245, 243, 0.5); }

/* Highlighted Approvix column */
.compare-col-us { position: relative; }
.compare-table thead th.compare-col-us {
  background: var(--grad); color: #fff;
  border-top-left-radius: 12px; border-top-right-radius: 12px;
}
.compare-table tbody td.compare-col-us { background: rgba(0, 168, 132, 0.07); }
.compare-table tbody tr:nth-child(even) td.compare-col-us { background: rgba(0, 168, 132, 0.10); }

.ico-yes, .ico-no, .ico-part {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 0.95rem; font-weight: 800; line-height: 1;
}
.ico-yes { background: var(--green-soft); color: var(--brand-dark); }
.ico-no { background: #FBE6E5; color: #C0392B; }
.ico-part { background: var(--orange-soft); color: var(--orange); }
.cell-note { display: block; margin-top: 4px; font-size: 0.8rem; color: var(--text-2); }
.cell-strong { color: var(--brand-dark); font-weight: 700; font-size: 0.9rem; }
.compare-foot { text-align: center; color: var(--text-2); font-size: 0.85rem; margin-top: 16px; }
/* Veeg-hint: alleen zichtbaar als de tabel daadwerkelijk horizontaal scrollt (mobiel) */
.compare-hint { display: none; text-align: center; color: var(--text-2); font-size: 0.85rem; margin-top: 12px; }
@media (max-width: 687px) { .compare-hint { display: block; } }

/* ---------- Trust signals ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 16px 20px; box-shadow: var(--shadow-sm); font-weight: 600;
}
.trust-chip svg { color: var(--brand-dark); flex-shrink: 0; }

/* Founding members band */
.founding-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--green-soft); border: 1px solid #cfe5dd; border-radius: var(--r-card);
  padding: 32px 34px; margin-top: 40px;
}
.founding-text { max-width: 56ch; }
.founding-text .pill { margin-bottom: 12px; }
.founding-text h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin-bottom: 8px; }
.founding-text p { color: var(--text-2); }
.founding-band .btn { flex-shrink: 0; }

/* Testimonials */
.testimonials { margin-top: 56px; }
.testimonials-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.quote-card {
  position: relative;
  max-width: 720px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 36px 38px; box-shadow: var(--shadow-md);
}
.quote-mark { color: var(--brand); opacity: 0.55; margin-bottom: 6px; }
.quote-card blockquote { margin: 0; }
.quote-card blockquote p { font-size: 1.18rem; line-height: 1.55; color: var(--text); font-weight: 500; }
.quote-card figcaption { display: flex; flex-direction: column; margin-top: 20px; }
.quote-name { font-weight: 700; }
.quote-role { color: var(--text-2); font-size: 0.9rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 1; }
.js-reveal .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js-reveal .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { transition: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  /* Met vijf nav-links + acties past de volledige nav niet meer tussen
     760 en 980px — klap dus al hier in naar het hamburgermenu. */
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 620px; margin-inline: auto; width: 100%; }

  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }

  .founding-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .founding-band .btn { width: 100%; }

  .showcase-row { grid-template-columns: 1fr; gap: 28px; }
  .showcase-row.reverse .showcase-text,
  .showcase-row.reverse .showcase-visual { order: 0; }
  .showcase-text { text-align: center; }
  .checklist { display: inline-flex; text-align: left; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

/* In het 2-koloms-bereik: een oneven laatste kaart gecentreerd op
   kolombreedte i.p.v. als wees linksonder. */
@media (min-width: 561px) and (max-width: 980px) {
  .cards-3 > :last-child:nth-child(odd),
  .cards-grid > :last-child:nth-child(odd),
  .usp-grid > :last-child:nth-child(odd),
  .trust-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 11px);
  }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 36px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .price-card.featured { order: -1; }

  .footer-col a { padding-block: 4px; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .cards-3, .cards-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 28px 24px; }
  .quote-card blockquote p { font-size: 1.05rem; }

  /* Hero-knoppen gestapeld op volle breedte — netter dan twee ongelijke
     gecentreerde knoppen onder elkaar. */
  .hero-cta .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- App dashboard mockup (hero) — hersteld ---------- */
.brand-badge.sm { width: 24px; height: 24px; border-radius: 7px; padding: 3px; box-shadow: none; }
.app-mock { display: grid; grid-template-columns: 150px 1fr; gap: 14px; min-height: 320px; }
.app-side {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 10px; display: flex; flex-direction: column; gap: 4px;
}
.app-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.92rem; margin-bottom: 12px; padding: 0 4px; }
.side-item {
  font-size: 0.84rem; color: var(--text-2); font-weight: 500;
  padding: 8px 12px; border-radius: 9px;
}
.side-item.active { background: var(--green-soft); color: var(--brand-dark); font-weight: 600; }
.app-main { display: flex; flex-direction: column; gap: 14px; }
.app-topbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 16px; font-size: 0.95rem;
}
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 14px; display: flex; flex-direction: column; gap: 6px;
}
.stat-label { font-size: 0.74rem; color: var(--text-2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.stat-value { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.mini-chart {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 16px; display: flex; align-items: flex-end; gap: 10px; height: 130px;
}
.mini-chart span { flex: 1; border-radius: 6px 6px 3px 3px; background: var(--grad); opacity: 0.85; }
.mini-chart span:nth-child(even) { opacity: 0.5; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.a-green { background: var(--grad); }
@media (max-width: 760px) {
  .app-mock { grid-template-columns: 1fr; }
  .app-side { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .app-logo { width: 100%; }
  .stat-row { grid-template-columns: 1fr; }
}
