/* ===============  Design Tokens  =============== */
:root {
    --bg: #f6f1ea;
    --text: #0b1020;
    --muted: #5b6475;
    --primary: #10283C;
    --secondary: #F97316;
    --container: 1160px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .75rem;
    border-radius: 999px;
    background: rgba(23, 71, 169, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.15rem;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    border: 1px solid transparent;
    transition: .2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(8px);
    border-color: #e8eaf1
}

.btn-ghost:hover {
    background: #fff
}

.badge {
    font-size: .78rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid var(--secondary);
    background: #fff
}

/* Header */
header {
    position: fixed;
    top: 10px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    width: 100%;
    padding: 0 20px;
}

header .logo img {
    width: 100px;
}

header nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, .65));
    border: 1px solid #edf0f7;
    border-radius: 10px;
    padding: 15px 30px;
}

header nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0
}

header nav a {
    color: #1c2236;
    font-weight: 600
}

header .cta {
    display: flex;
    align-items: center;
    gap: 10px
}

header .mobile-toggle {
    display: none;
    border: 1px solid #e7ebf7;
    border-radius: 14px;
    padding: .85rem 1.15rem;
    background: #fff;
    font-size: 1.2rem;
}

/* Hero */
.hero {
    padding: 150px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2rem, 1.4rem + 2.8vw, 3.2rem);
    line-height: 1.12;
    margin: 8px 0 12px;
    letter-spacing: -.02em;
}

.hero p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 1.05rem
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap
}

.mock {
    margin: 50px auto 0;
    max-width: 980px;
    border-radius: 24px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 20px 50px rgba(18, 33, 64, .15);
    padding: 18px;
}

.mock .screen {
    border-radius: 18px;
    overflow: hidden;
    background: #0d1423;
    background-image: url('/assets/images/screenshot.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 16/8;
    position: relative;
}

/* ===============  Sections  =============== */
section {
    padding: 80px 0
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
    gap: 10px
}

.section-head h2 {
    font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
    letter-spacing: -.01em;
    margin: 0
}

.section-head .muted {
    color: var(--muted)
}

section#features {
    background: #fff;
}

section#pricing {
    background: #f8f8f8;
}

section#faq {
    background: #fff;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px
}

.features .feature {
    padding: 26px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf1fb;
    display: flex;
    flex-direction: column;
}

.features .feature.proefritten {
    grid-row: 1 / -3;
}

.features .feature.klanten {
    grid-column: 2 / -1;
}

.features .feature h3 {
    margin: 0 0 8px
}

.features .feature ul {
    margin: 0;
    padding-left: 18px;
    margin-bottom: 10px;
    color: var(--muted)
}

.features .feature li {
    margin: 6px 0
}

.features .feature .tag {
    margin-top: auto;
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.pricing .plan {
    border-radius: var(--radius);
    padding: 30px 20px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 14px;
}

.pricing .plan.pop {
    background: #fffbf8;
    border-color: var(--secondary);
}

.pricing .price {
    font-size: 28px;
    font-weight: 800;
}

.pricing .plan ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.pricing-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap
}


/* FAQ */
.faq {
    max-width: 860px;
    margin-inline: auto
}

.faq .qa {
    background: #fff;
    border: 1px solid #e8edfa;
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 12px;
    box-shadow: var(--shadow)
}

.faq .qa summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700
}

.faq .qa summary::-webkit-details-marker {
    display: none
}

.faq .qa[open] {
    border-color: #d7e3ff;
    box-shadow: 0 10px 24px rgba(45, 106, 227, .10)
}

.faq .qa p {
    color: var(--muted);
    margin: .6rem 0 0
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 50px 0 70px;
}

footer .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

footer a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 800px) {
    header nav {
        display: none;
    }

    header nav.open-mobile {
        display: flex;
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        transform: translateX(0);
        justify-content: center;
        flex-direction: column;
    }

    header nav.open-mobile ul {
        flex-direction: column;
    }

    header .mobile-toggle {
        display: inline-flex;
    }

    .pricing,
    .features {
        grid-template-columns: 1fr
    }

    .features .feature.proefritten {
        grid-row: unset;
    }

    .features .feature.klanten {
        grid-column: unset;
    }

    .mock {
        padding: 12px;
        border-radius: 18px
    }
}



/* Documentation pages */
code,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

pre {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 14px;
    overflow: auto;
    position: relative;
}

pre[data-lang]::before {
    content: attr(data-lang);
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 11px;
    color: var(--muted);
}

.kbd {
    background: #fff;
    border: 1px solid #f2f2f2;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 12px;
}

.grid {
            display: grid;
            gap: 14px;
        }

        .cols-2 {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        .grid th,
        .grid td {
            text-align: left;
        }

        .grid ul li {
            list-style: none;
        }