:root {
    --ls-power-grey: #3D3D3B;
    --ls-bright-orange: #F8B133;
    --ls-action-blue: #302D7D;
    --ls-bg: #F7F7F5;
    --ls-white: #ffffff
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    background: var(--ls-bg);
    color: var(--ls-power-grey);
    font-family: Inter, Arial, system-ui, -apple-system, Segoe UI, Roboto, Helvetica
}

header.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--ls-power-grey);
    color: var(--ls-white);
    box-shadow: 0 6px 16px rgba(0,0,0,.18)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .3px
}

    .brand .logo {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--ls-bright-orange)
    }

.nav-actions a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.2)
}

    .nav-actions a:hover {
        background: rgba(255,255,255,.12)
    }

main {
    min-height: calc(100vh - 120px)
}

.hero {
    max-width: 1600px;
    margin: 48px auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #ecebe8;
    box-shadow: 0 12px 28px rgba(0,0,0,.08)
}

.kicker {
    color: var(--ls-action-blue);
    text-transform: uppercase;
    font-weight: 900;
    font-size: .8rem;
    letter-spacing: .12em
}

h1 {
    margin: .2rem 0 1rem;
    font-size: 2.2rem
}

.lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #4b4b49
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    background: var(--ls-bright-orange);
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(248,177,51,.35)
}

    .cta.secondary {
        background: transparent;
        border: 2px solid var(--ls-action-blue);
        color: var(--ls-action-blue);
        box-shadow: none
    }

.btn-link {
    display: inline-block;
    background: var(--ls-action-blue);
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    transition: background .15s ease,transform .1s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1)
}

    .btn-link:hover {
        background: var(--ls-bright-orange);
        transform: translateY(-2px)
    }

.table {
    width: 100%;
    border-collapse: collapse
}

    .table th, .table td {
        padding: 10px 12px;
        border-bottom: 1px solid #ecebe8;
        text-align: left
    }

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--ls-action-blue);
    color: #fff;
    font-size: .8rem
}

/* ------------------------------------------------------ */
/* TOOLTIP OFFSET + Z-INDEX                               */
/* ------------------------------------------------------ */

/* Tooltip bij knoppen in de navbar ~2 regels lager */
.navbar .tooltip {
    margin-top: 2.5rem !important; /* ca. twee regels omlaag */
}

/* Zorg dat tooltips altijd boven de (donkere) headerbalk liggen */
.tooltip {
    z-index: 3000 !important;
}
