/* ─────────────────────────────────────────────────────────────────────────
   Inspektra.ai — Shared marketing site design system
   Used by every page in packages/website/. Page-specific styles (hero
   mockups, AI demo card, etc.) stay inline in the page that uses them.
   ───────────────────────────────────────────────────────────────────────── */

/* ─── Fonts ───────────────────────────────────────────────────────────────
   Zelf gehost in plaats van via fonts.googleapis.com. De Google-variant
   kostte een blokkerende <link> naar een derde host, plus een tweede hop
   naar fonts.gstatic.com, vóór de eerste paint — de grootste rem op de LCP
   van een site die verder volledig statisch is.

   Het zijn variable fonts: één bestand dekt het hele gewichtsbereik, dus
   400/500/600/700 kost niet meer dan 400 alleen. Alleen de latin-subset:
   Nederlands én Frans passen volledig in U+0000-00FF (+ œ op U+0152-0153),
   dus latin-ext is hier niet nodig.

   font-display: swap — tekst is meteen leesbaar in de fallback en wisselt
   daarna. size-adjust/metric-overrides zijn bewust weggelaten; de fallback
   is een systeem-sans en de layout is nergens op vaste tekstbreedte gebouwd.
   ─────────────────────────────────────────────────────────────────────── */

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/sora-latin-var.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
                   U+FFFD;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin-var.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
                   U+FFFD;
}

/* Alleen gebruikt door .proof-quote — laadt daardoor pas als er een
   cursieve glief op de pagina staat. */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin-italic-var.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
                   U+FFFD;
}

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

:root {
    --white: #ffffff;
    --bg: #f8f9fc;
    --ink: #0a0d14;
    --ink2: #3d4452;
    --muted: #8891a4;
    --border: rgba(10,13,20,0.08);
    --border2: rgba(10,13,20,0.05);
    --blue: #3b6ef0;
    --blue-light: #eef2fe;
    --blue-mid: rgba(59,110,240,0.12);
    --teal: #0fa9a9;
    --teal-light: #e6f7f7;
    --grad: linear-gradient(135deg, #3b6ef0 0%, #7c3bf5 100%);
    --grad2: linear-gradient(135deg, #0fa9a9 0%, #3b6ef0 100%);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5rem; height: 64px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--ink); text-decoration: none; letter-spacing: -0.03em;
}

.logo-mark { width: 28px; height: 28px; }
.logo span { color: var(--blue); }

.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--ink2);
    font-size: 0.85rem; font-weight: 500;
    transition: color 0.15s;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { color: var(--blue); }

.nav-right { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }

.btn-sm-ghost {
    padding: 0.45rem 1.1rem; border-radius: 8px;
    color: var(--ink2); font-size: 0.85rem; font-weight: 500;
    text-decoration: none; transition: color 0.15s;
}
.btn-sm-ghost:hover { color: var(--ink); }

.btn-sm-primary {
    padding: 0.45rem 1.2rem; border-radius: 8px;
    background: var(--ink); color: white;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none; transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.btn-sm-primary:hover { background: var(--blue); transform: translateY(-1px); }

/* BADGE */
.badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--blue-light); color: var(--blue);
    padding: 0.35rem 1rem; border-radius: 100px;
    font-size: 0.775rem; font-weight: 600; letter-spacing: 0.02em;
    margin-bottom: 2rem;
    border: 1px solid rgba(59,110,240,0.15);
    animation: fadeUp 0.5s ease both;
}
.badge-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* BUTTONS */
.btn-primary {
    padding: 0.8rem 1.75rem; border-radius: 10px;
    background: var(--ink); color: white;
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(10,13,20,0.15);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59,110,240,0.3); }

.btn-outline {
    padding: 0.8rem 1.75rem; border-radius: 10px;
    background: transparent; color: var(--ink2);
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none; display: inline-block;
    border: 1.5px solid var(--border);
    transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* PAGE HERO (inner pages) */
.page-hero {
    padding: 9.5rem 5rem 5rem;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 420px; pointer-events: none;
    background: radial-gradient(ellipse, rgba(59,110,240,0.09) 0%, rgba(124,59,245,0.05) 40%, transparent 70%);
}
.breadcrumb {
    font-size: 0.78rem; color: var(--muted); margin-bottom: 1.25rem;
    position: relative; z-index: 1;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.page-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    font-weight: 700; line-height: 1.12;
    letter-spacing: -0.03em; max-width: 780px;
    margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.page-hero h1 .grad-text {
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero-sub {
    font-size: 1.02rem; color: var(--ink2); line-height: 1.75;
    max-width: 620px; margin: 0 auto 2rem; position: relative; z-index: 1;
}
.page-hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* STATS ROW */
.stats-row {
    display: flex; justify-content: center; gap: 5rem;
    padding: 3rem 5rem; flex-wrap: wrap;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 2.1rem; font-weight: 700; letter-spacing: -0.04em; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

/* SECTION HEADERS */
.section-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1rem; color: var(--blue); }
.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; line-height: 1.15;
    letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.section-sub { font-size: 0.97rem; line-height: 1.75; color: var(--ink2); max-width: 480px; }
.section-center { text-align: center; max-width: 1160px; margin: 0 auto; }
.section-center .section-sub { margin: 0 auto; color: var(--ink2); }

/* GENERIC SECTION PADDING */
.section { padding: 6.5rem 5rem; }
.section-bg { padding: 6.5rem 5rem; background: var(--bg); }
.section-dark { padding: 6.5rem 5rem; background: var(--ink); color: white; }

/* FEATURES GRID */
.features-section { padding: 6.5rem 5rem; }
.feat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; max-width: 1160px; margin: 3.5rem auto 0;
}
.feat-card {
    background: white; border: 1px solid var(--border);
    border-radius: 14px; padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,13,20,0.07); border-color: rgba(59,110,240,0.2); }
.feat-card.featured-card { background: var(--ink); border-color: var(--ink); grid-column: span 1; }
.feat-icon {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1rem;
    background: var(--blue-light); border: 1px solid rgba(59,110,240,0.1);
}
.feat-card.featured-card .feat-icon { background: rgba(59,110,240,0.15); border-color: rgba(59,110,240,0.25); }
.feat-title { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.feat-card.featured-card .feat-title { color: white; }
.feat-desc { font-size: 0.82rem; color: var(--ink2); line-height: 1.65; }
.feat-card.featured-card .feat-desc { color: rgba(255,255,255,0.5); }
.ai-exclusive-tag {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: rgba(59,110,240,0.15); color: #7ca4f8;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 0.2rem 0.6rem; border-radius: 100px; margin-left: 0.5rem;
}

/* COMPARISON TABLE */
.cmp-section { padding: 6.5rem 5rem; }
.cmp-table {
    max-width: 860px; margin: 3.5rem auto 0;
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; background: white;
    box-shadow: 0 4px 24px rgba(10,13,20,0.05);
}
.cmp-head {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.15fr;
    background: var(--ink); padding: 1rem 1.5rem; gap: 1rem;
    font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6);
}
.cmp-head .us { color: white; }
.cmp-row {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.15fr;
    padding: 0.8rem 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--border2); font-size: 0.82rem;
    align-items: center; transition: background 0.1s;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: var(--bg); }
.cmp-row span:not(:first-child) { text-align: center; }
.cmp-row.highlight-row { background: rgba(59,110,240,0.03); }
.cmp-row.highlight-row:hover { background: rgba(59,110,240,0.06); }
.yes { color: var(--blue); font-size: 1rem; }
.no { color: #d1d5db; font-size: 1rem; }
.partial-t { color: #e07b00; font-size: 0.7rem; font-weight: 700; }
.excl { color: var(--blue); font-weight: 700; font-size: 0.82rem; }

/* PRICING */
.pricing-section { padding: 6.5rem 5rem; background: var(--bg); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 940px; margin: 3.5rem auto 0; }
.price-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(10,13,20,0.08); }
.price-card.pop { background: var(--ink); border-color: var(--ink); transform: scale(1.025); }
.price-card.pop:hover { transform: scale(1.025) translateY(-3px); }
.pop-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--grad); color: white;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 0.28rem 0.9rem; border-radius: 100px; white-space: nowrap;
}
.price-tier { font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.85rem; }
.price-card.pop .price-tier { color: rgba(255,255,255,0.4); }
.price-val { font-family: 'Sora', sans-serif; font-size: 2.75rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price-card.pop .price-val { color: white; }
.price-per { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; margin-bottom: 1.5rem; }
.price-card.pop .price-per { color: rgba(255,255,255,0.4); }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.price-feats li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.82rem; line-height: 1.4; color: var(--ink2); }
.price-card.pop .price-feats li { color: rgba(255,255,255,0.65); }
.pcheck { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.pcheck-w { color: #7ca4f8; }
.price-btn { display: block; text-align: center; padding: 0.78rem; border-radius: 9px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.price-btn-outline { border: 1.5px solid var(--border); color: var(--ink); }
.price-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.price-btn-blue { background: var(--grad); color: white; box-shadow: 0 4px 16px rgba(59,110,240,0.25); }
.price-btn-blue:hover { box-shadow: 0 6px 24px rgba(59,110,240,0.4); transform: translateY(-1px); }

/* SOCIAL PROOF */
.proof-section { padding: 6.5rem 5rem; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1160px; margin: 3.5rem auto 0; }
.proof-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.proof-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 0.85rem; letter-spacing: 0.1em; }
.proof-quote { font-size: 0.9rem; line-height: 1.7; color: var(--ink2); margin-bottom: 1.25rem; font-style: italic; }
.proof-author { display: flex; align-items: center; gap: 0.65rem; }
.proof-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: white; flex-shrink: 0; }
.proof-name { font-size: 0.82rem; font-weight: 600; }
.proof-role { font-size: 0.72rem; color: var(--muted); }

/* CTA */
.cta-section { padding: 6.5rem 5rem; text-align: center; background: var(--bg); position: relative; overflow: hidden; }
.cta-blob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; pointer-events: none; background: radial-gradient(ellipse, rgba(59,110,240,0.07), transparent 70%); }
.cta-section .section-title { max-width: 600px; margin: 0.75rem auto 1.25rem; }
.cta-section p { color: var(--ink2); font-size: 0.95rem; margin-bottom: 2rem; }

/* FAQ (used on homepage + faq.html + pricing) */
.faq-list { max-width: 760px; margin: 3.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: white; overflow: hidden; }
.faq-item summary {
    padding: 1.1rem 1.4rem; cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    font-size: 0.92rem; font-weight: 600; font-family: 'Sora', sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--blue); flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.25rem; font-size: 0.87rem; line-height: 1.7; color: var(--ink2); }

/* PERSONA CARDS (voor-wie.html) */
.persona-nav { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin: 0 auto 4rem; max-width: 900px; }
.persona-pill { padding: 0.55rem 1.2rem; border-radius: 100px; border: 1.5px solid var(--border); font-size: 0.82rem; font-weight: 600; color: var(--ink2); text-decoration: none; transition: all 0.15s; }
.persona-pill:hover { border-color: var(--blue); color: var(--blue); }
.persona-block { max-width: 1160px; margin: 0 auto 6rem; scroll-margin-top: 90px; }
.persona-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.persona-block:nth-child(even) .persona-grid { direction: rtl; }
.persona-block:nth-child(even) .persona-grid > * { direction: ltr; }
.persona-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.persona-title { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.persona-desc { font-size: 0.95rem; line-height: 1.75; color: var(--ink2); margin-bottom: 1.5rem; }
.persona-points { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.75rem; }
.persona-points li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--ink2); line-height: 1.5; }
.persona-visual { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 2.5rem; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; min-height: 260px; }

/* ARTICLE / CONTENT PAGES */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 5rem 6rem; }
.article-meta { display: flex; gap: 0.75rem; align-items: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; justify-content: center; }
.article-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.article-body h2 {
    font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700;
    letter-spacing: -0.02em; margin: 2.75rem 0 1rem;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; margin: 2rem 0 0.85rem; }
.article-body p { font-size: 0.98rem; line-height: 1.85; color: var(--ink2); margin-bottom: 1.15rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.3rem; color: var(--ink2); font-size: 0.98rem; line-height: 1.85; }
.article-body li { margin-bottom: 0.4rem; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--blue); }
.callout-box {
    background: var(--blue-light); border: 1px solid rgba(59,110,240,0.15);
    border-radius: 14px; padding: 1.5rem 1.75rem; margin: 1.75rem 0;
}
.callout-box .callout-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.callout-box p { color: var(--ink2); font-size: 0.92rem; margin-bottom: 0; }
.article-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: 0.88rem; }
.article-table th, .article-table td { text-align: left; padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--border); }
.article-table th { font-family: 'Sora', sans-serif; font-weight: 700; background: var(--bg); }
.article-cta {
    background: var(--ink); border-radius: 16px; padding: 2.25rem;
    text-align: center; margin: 3rem 0 1rem;
}
.article-cta h3 { color: white; font-family: 'Sora', sans-serif; font-size: 1.25rem; margin-bottom: 0.6rem; }
.article-cta p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* CONTENT HUB (kennisbank.html) */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 3.5rem auto 0; }
.hub-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; text-decoration: none; display: block; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.hub-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,13,20,0.07); border-color: rgba(59,110,240,0.2); }
.hub-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue); background: var(--blue-light); padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 0.9rem; }
.hub-title { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.hub-desc { font-size: 0.85rem; color: var(--ink2); line-height: 1.6; }
.hub-card.soon { opacity: 0.55; cursor: default; }
.hub-card.soon:hover { transform: none; box-shadow: none; border-color: var(--border); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: 2rem; max-width: 1060px; margin: 3.5rem auto 0; align-items: start; }
.contact-side { display: flex; flex-direction: column; gap: 2rem; }
.contact-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.contact-row { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-row-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.2rem; }
.contact-row-val { font-size: 0.95rem; font-weight: 600; }
.contact-row-val a { color: var(--ink); text-decoration: none; }
.contact-row-val a:hover { color: var(--blue); }
.contact-row-sub { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

/* CONTACT FORM */
.form-title { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.form-intro { font-size: 0.87rem; color: var(--ink2); line-height: 1.65; margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.15rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-size: 0.78rem; font-weight: 600; color: var(--ink2); }
.form-label .req { color: var(--blue); }
.form-label .opt { font-weight: 500; color: var(--muted); }
.form-input, .form-select, .form-textarea {
    width: 100%; font-family: inherit; font-size: 0.88rem; color: var(--ink);
    background: white; border: 1.5px solid var(--border); border-radius: 10px;
    padding: 0.65rem 0.85rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: rgba(10,13,20,0.18); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-mid);
}
.form-select {
    appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.3rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%238891a4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.9rem center;
}
.form-textarea { min-height: 140px; line-height: 1.6; resize: vertical; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.6rem; }
.form-submit {
    font-family: inherit; cursor: pointer; border: none;
    padding: 0.8rem 1.75rem; border-radius: 10px;
    background: var(--ink); color: white; font-size: 0.9rem; font-weight: 600;
    box-shadow: 0 2px 12px rgba(10,13,20,0.15);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.form-submit:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59,110,240,0.3); }
.form-note { font-size: 0.76rem; color: var(--muted); line-height: 1.55; max-width: 300px; }
.form-status {
    display: none; margin-top: 1.5rem;
    background: var(--blue-light); border: 1px solid rgba(59,110,240,0.15);
    border-radius: 12px; padding: 1.1rem 1.25rem;
    font-size: 0.85rem; color: var(--ink2); line-height: 1.65;
}
.form-status.visible { display: block; animation: fadeUp 0.35s ease both; }
.form-status strong { display: block; color: var(--ink); font-family: 'Sora', sans-serif; font-size: 0.9rem; margin-bottom: 0.35rem; }
.form-status a { color: var(--blue); font-weight: 600; }

/* VALUES GRID (over-ons.html) */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1160px; margin: 3.5rem auto 0; }
.value-card { padding: 1.5rem; }
.value-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem; }
.value-title { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.85rem; color: var(--ink2); line-height: 1.65; }

/* STEPS (zo-werkt-het.html) */
.steps-wrap { max-width: 900px; margin: 3.5rem auto 0; display: flex; flex-direction: column; gap: 0; }
.step-row { display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; padding-bottom: 3rem; position: relative; }
.step-row:last-child { padding-bottom: 0; }
.step-row::before {
    content: ''; position: absolute; left: 31px; top: 60px; bottom: 0;
    width: 1.5px; background: var(--border);
}
.step-row:last-child::before { display: none; }
.step-num {
    width: 64px; height: 64px; border-radius: 16px; background: var(--ink); color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; z-index: 1;
}
.step-title { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-desc { font-size: 0.92rem; color: var(--ink2); line-height: 1.75; max-width: 560px; }

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; display: flex; align-items: center; gap: 0.4rem; text-decoration: none; }
.footer-logo span { color: var(--blue); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* COOKIE BAR (opgebouwd door assets/site.js) */
.cookie-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    padding: 1rem;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.cookie-bar.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-bar-inner {
    max-width: 880px; margin: 0 auto;
    background: white; border: 1px solid var(--border); border-radius: 16px;
    box-shadow: 0 12px 48px rgba(10,13,20,0.14);
    padding: 1.5rem 1.75rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.75rem; flex-wrap: wrap;
}
.cookie-bar-text { flex: 1 1 380px; min-width: 0; }
.cookie-bar-text strong {
    display: block; font-family: 'Sora', sans-serif;
    font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem;
}
.cookie-bar-text p { font-size: 0.84rem; line-height: 1.65; color: var(--ink2); }
.cookie-bar-text a { color: var(--blue); font-weight: 600; }
.cookie-bar-actions { display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-bar-actions button {
    font-family: inherit; cursor: pointer; white-space: nowrap;
    padding: 0.7rem 1.35rem; border-radius: 10px;
    font-size: 0.85rem; font-weight: 600;
    transition: background 0.2s, border-color 0.15s, color 0.15s, transform 0.15s, box-shadow 0.2s;
}
.cookie-btn-accept {
    border: none; background: var(--ink); color: white;
    box-shadow: 0 2px 12px rgba(10,13,20,0.15);
}
.cookie-btn-accept:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59,110,240,0.3); }
.cookie-btn-ghost { border: 1.5px solid var(--border); background: transparent; color: var(--ink2); font-weight: 500; }
.cookie-btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.cookie-prefs-toggle {
    margin-top: 0.7rem; padding: 0;
    font-family: inherit; font-size: 0.8rem; font-weight: 600;
    color: var(--blue); background: none; border: none;
    text-decoration: underline; text-underline-offset: 2px; cursor: pointer;
}
.cookie-prefs {
    flex: 1 1 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
    padding-top: 1.25rem; border-top: 1px solid var(--border2);
}
/* Zonder deze regel wint `display: grid` van het [hidden]-attribuut. */
.cookie-prefs[hidden] { display: none; }
.cookie-pref {
    display: flex; gap: 0.7rem; align-items: flex-start;
    padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 12px;
    background: var(--bg); cursor: pointer;
    transition: border-color 0.15s;
}
.cookie-pref:hover { border-color: rgba(59,110,240,0.35); }
.cookie-pref input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.cookie-pref strong { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.2rem; }
.cookie-pref span { font-size: 0.775rem; line-height: 1.6; color: var(--ink2); }

/* CALENDLY (demo-agenda, laadt pas na toestemming — zie assets/site.js) */
.calendly-embed {
    max-width: 900px; margin: 0 auto;
    border: 1px solid var(--border); border-radius: 18px;
    background: white; overflow: hidden;
}
.calendly-embed [data-calendly-target] { display: none; min-width: 320px; height: 720px; }
.calendly-embed[data-calendly-state="ready"] [data-calendly-target] { display: block; }
.calendly-embed[data-calendly-state="ready"] .calendly-notice,
.calendly-embed[data-calendly-state="ready"] .calendly-gate { display: none; }

.calendly-gate { padding: 3.5rem 2.5rem; text-align: center; }
.calendly-embed[data-calendly-state="loading"] .calendly-gate,
.calendly-embed[data-calendly-state="error"] .calendly-gate { display: none; }
.calendly-gate-icon {
    width: 54px; height: 54px; margin: 0 auto 1.25rem;
    border-radius: 15px; background: var(--blue-light);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.calendly-gate h2 {
    font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.calendly-gate p { font-size: 0.9rem; line-height: 1.75; color: var(--ink2); max-width: 480px; margin: 0 auto 1.75rem; }
.calendly-gate-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.calendly-gate-note { font-size: 0.78rem; color: var(--muted); margin: 1.5rem auto 0; }
.calendly-gate-note a { color: var(--blue); font-weight: 600; }

.calendly-notice { display: none; padding: 3.5rem 2.5rem; text-align: center; font-size: 0.9rem; color: var(--ink2); }
.calendly-embed[data-calendly-state="loading"] .calendly-notice[data-calendly-when="loading"] { display: block; }
.calendly-embed[data-calendly-state="error"] .calendly-notice[data-calendly-when="error"] { display: block; }
.calendly-notice a { color: var(--blue); font-weight: 600; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */

/* De navigatie telt zeven links; tussen 900px en de volle breedte moet ze
   compacter om niet tegen de knoppen rechts te botsen. */
@media (max-width: 1150px) {
    nav { padding-left: 2rem; padding-right: 2rem; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.8rem; }
    .nav-right { gap: 0.5rem; }
}

@media (max-width: 1000px) {
    nav { padding-left: 1.5rem; padding-right: 1.5rem; }
    .nav-links { gap: 0.75rem; }
}

@media (max-width: 900px) {
    nav, .section, .section-bg, .section-dark, .features-section, .cmp-section,
    .pricing-section, .proof-section, .cta-section, footer, .stats-row,
    .page-hero, .article-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
    nav { padding-top: 0; padding-bottom: 0; }
    .nav-links { display: none; }
    .page-hero h1 { font-size: 2.1rem; }
    .feat-grid, .price-grid, .proof-grid, .persona-grid, .values-grid, .contact-layout, .hub-grid, .form-grid { grid-template-columns: 1fr; }
    .form-foot { flex-direction: column; align-items: stretch; }
    .form-submit { width: 100%; }
    .form-note { max-width: none; }
    .persona-block:nth-child(even) .persona-grid { direction: ltr; }
    .cmp-head, .cmp-row { grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr 1fr; }
    .stats-row { gap: 2.5rem; }
    .step-row { grid-template-columns: 48px 1fr; }
    .step-num { width: 48px; height: 48px; font-size: 1.1rem; }
    .cookie-bar-inner { padding: 1.25rem; gap: 1.1rem; }
    .cookie-bar-actions { width: 100%; flex-direction: column-reverse; }
    .cookie-bar-actions button { width: 100%; }
    .cookie-prefs { grid-template-columns: 1fr; }
    .calendly-gate { padding: 2.5rem 1.5rem; }
    /* Calendly zet zijn kalender op smalle schermen onder elkaar en heeft
       daardoor merkbaar meer hoogte nodig. */
    .calendly-embed [data-calendly-target] { height: 1040px; }
}
