/* =============================================================
   Lopen.nl — main stylesheet
   Sportief energiek, oranje & lime accent
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
    --lp-bg: #f7f7f5;
    --lp-bg-2: #efeeea;
    --lp-surface: #ffffff;
    --lp-ink: #0e1014;
    --lp-ink-soft: #4a4f57;
    --lp-ink-mute: #8b909a;
    --lp-line: #e4e3df;
    --lp-line-strong: #cfceca;

    --lp-accent: #ff5a1f;        /* electric orange */
    --lp-accent-soft: #ffd9c8;
    --lp-accent-deep: #d83f08;
    --lp-accent2: #c4f54e;       /* lime/zuurgroen */
    --lp-accent2-deep: #9bd420;
    --lp-warning: #ffd84d;

    --lp-shadow-sm: 0 1px 2px rgba(14, 16, 20, 0.05);
    --lp-shadow-md: 0 8px 24px -10px rgba(14, 16, 20, 0.18);
    --lp-shadow-lg: 0 24px 60px -22px rgba(14, 16, 20, 0.28);

    --lp-radius: 12px;
    --lp-radius-sm: 8px;
    --lp-radius-lg: 20px;
    --lp-radius-xl: 28px;

    --lp-font-display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lp-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lp-font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--lp-bg);
    color: var(--lp-ink);
    font-family: var(--lp-font-body);
    font-size: 16px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--lp-accent); text-decoration: none; }
a:hover { color: var(--lp-accent-deep); }

img, svg, video { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lp-font-display);
    font-weight: 700; letter-spacing: -0.02em;
    line-height: 1.15; margin: 0 0 0.5em;
    color: var(--lp-ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

button { font-family: inherit; cursor: pointer; }

/* Skip link */
.lp-skip {
    position: absolute; left: -1000px; top: 0;
    background: var(--lp-ink); color: var(--lp-bg); padding: 10px 16px;
    z-index: 9999; border-radius: 0 0 8px 0;
}
.lp-skip:focus { left: 0; }

/* ---------- Container & utilities ---------- */
.lp-container {
    width: 100%; max-width: 1200px;
    margin: 0 auto; padding: 0 24px;
}
.lp-container--narrow { max-width: 760px; }
@media (max-width: 600px) { .lp-container { padding: 0 16px; } }

/* ---------- Eyebrow ---------- */
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase; font-weight: 700;
    color: var(--lp-ink-soft); margin-bottom: 14px;
}
.lp-eyebrow--accent { color: var(--lp-accent); }
.lp-eyebrow--light { color: var(--lp-accent2); }

.lp-eyebrow__pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lp-accent);
    animation: lp-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
.lp-eyebrow--accent .lp-eyebrow__pulse { background: var(--lp-accent); }
.lp-eyebrow--light .lp-eyebrow__pulse { background: var(--lp-accent2); }
@keyframes lp-pulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 currentColor; }
    50% { transform: scale(1.1); opacity: 0.85; box-shadow: 0 0 0 5px transparent; }
}

/* ---------- Section heads ---------- */
.lp-section-head {
    margin-bottom: 32px;
    text-align: left;
}
.lp-section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800; letter-spacing: -0.025em;
    margin: 0 0 12px;
}
.lp-section-lead {
    font-size: 17px; line-height: 1.5;
    color: var(--lp-ink-soft);
    margin: 0; max-width: 600px;
}

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    font-size: 15px; font-weight: 700;
    border-radius: 999px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0); }
.lp-btn__arrow { transition: transform .15s ease; }
.lp-btn:hover .lp-btn__arrow { transform: translateX(3px); }

.lp-btn--primary {
    background: var(--lp-accent); color: white;
    box-shadow: 0 4px 14px rgba(255, 90, 31, 0.35);
}
.lp-btn--primary:hover {
    background: var(--lp-accent-deep); color: white;
    box-shadow: 0 8px 22px rgba(255, 90, 31, 0.45);
}

.lp-btn--accent {
    background: var(--lp-accent2); color: var(--lp-ink);
    box-shadow: 0 4px 14px rgba(196, 245, 78, 0.4);
}
.lp-btn--accent:hover {
    background: var(--lp-accent2-deep); color: var(--lp-ink);
    box-shadow: 0 8px 22px rgba(196, 245, 78, 0.55);
}

.lp-btn--ghost {
    background: transparent; color: var(--lp-ink);
    border-color: var(--lp-line-strong);
}
.lp-btn--ghost:hover {
    background: var(--lp-ink); color: white;
    border-color: var(--lp-ink);
}

/* ---------- Header ---------- */
.lp-header {
    background: var(--lp-bg);
    border-bottom: 1px solid var(--lp-line);
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(247, 247, 245, 0.92);
}
.lp-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    gap: 24px;
}
@media (max-width: 600px) { .lp-header__inner { padding: 14px 16px; } }

.lp-brand { display: inline-flex; align-items: center; text-decoration: none; }
.lp-brand img { max-height: 40px; width: auto; }
.lp-brand__name {
    font-family: var(--lp-font-display);
    font-size: 24px; font-weight: 900;
    letter-spacing: -0.03em; color: var(--lp-ink);
}
.lp-brand__name::after {
    content: '';
    display: inline-block; vertical-align: middle;
    width: 10px; height: 10px;
    background: var(--lp-accent);
    border-radius: 50%; margin-left: 4px;
    transform: translateY(-2px);
}

.lp-nav { display: flex; align-items: center; }
.lp-nav__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 8px; align-items: center;
}
.lp-nav__list li { display: inline-flex; }
.lp-nav__list a {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14.5px; font-weight: 600;
    color: var(--lp-ink);
    border-radius: 999px;
    transition: background .12s ease, color .12s ease;
    text-decoration: none;
}
.lp-nav__list a:hover {
    background: var(--lp-ink); color: white;
}
.lp-nav__list .current-menu-item a,
.lp-nav__list .current_page_item a {
    background: var(--lp-ink); color: white;
}

/* Mobile nav */
.lp-nav__toggle {
    display: none;
    width: 40px; height: 40px;
    background: none; border: none; padding: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    border-radius: 8px;
}
.lp-nav__toggle:hover { background: var(--lp-bg-2); }
.lp-nav__toggle-bar {
    width: 22px; height: 2px;
    background: var(--lp-ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.lp-nav__toggle[aria-expanded="true"] .lp-nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.lp-nav__toggle[aria-expanded="true"] .lp-nav__toggle-bar:nth-child(2) { opacity: 0; }
.lp-nav__toggle[aria-expanded="true"] .lp-nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 800px) {
    .lp-nav__toggle { display: inline-flex; }
    .lp-nav__list {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--lp-surface);
        border-top: 1px solid var(--lp-line);
        border-bottom: 1px solid var(--lp-line);
        padding: 12px 16px;
        max-height: 0; overflow: hidden;
        transition: max-height .25s ease, padding .25s ease;
    }
    .lp-nav__list--open { max-height: 600px; padding: 12px 16px 20px; }
    .lp-nav__list li { width: 100%; }
    .lp-nav__list a { width: 100%; padding: 12px 14px; }
}

/* =============================================================
   HERO
   ============================================================= */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 72px;
    background: linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-surface) 100%);
}
@media (min-width: 800px) {
    .lp-hero { padding: 96px 0 110px; }
}
.lp-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 900px) {
    .lp-hero__inner {
        grid-template-columns: 1.15fr 1fr;
        gap: 60px;
    }
}
.lp-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin: 0 0 18px;
}
.lp-hero__title::after {
    content: '.';
    color: var(--lp-accent);
}
.lp-hero__text {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.55;
    color: var(--lp-ink-soft);
    margin: 0 0 28px;
    max-width: 540px;
}
.lp-hero__actions {
    display: flex; flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.lp-hero__stats {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap;
    gap: 24px 36px;
    padding-top: 28px;
    border-top: 1px solid var(--lp-line);
}
.lp-hero__stats li {
    display: flex; flex-direction: column; gap: 2px;
}
.lp-hero__stats strong {
    font-family: var(--lp-font-display);
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
    line-height: 1;
}
.lp-hero__stats span {
    font-size: 12.5px;
    color: var(--lp-ink-mute);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Hero artwork */
.lp-hero__art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}
.lp-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.lp-hero__blob--1 {
    inset: 0;
    background: radial-gradient(circle at 30% 30%, var(--lp-accent) 0%, transparent 65%);
    opacity: 0.65;
    animation: lp-blob 16s ease-in-out infinite;
}
.lp-hero__blob--2 {
    inset: 10% 0 0 10%;
    background: radial-gradient(circle at 70% 70%, var(--lp-accent2) 0%, transparent 65%);
    opacity: 0.5;
    animation: lp-blob 18s ease-in-out infinite reverse;
}
@keyframes lp-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-3%, 4%) scale(1.05); }
    66% { transform: translate(4%, -3%) scale(0.97); }
}

.lp-hero__rings {
    position: absolute; inset: 6%;
    border-radius: 50%;
}
.lp-hero__rings span {
    position: absolute; inset: 0;
    border: 2px dashed var(--lp-ink);
    border-radius: 50%;
    opacity: 0.18;
    animation: lp-spin 50s linear infinite;
}
.lp-hero__rings span:nth-child(2) {
    inset: 8%;
    border-color: var(--lp-accent);
    opacity: 0.35;
    border-style: solid;
    border-width: 1px;
    animation-duration: 40s;
    animation-direction: reverse;
}
.lp-hero__rings span:nth-child(3) {
    inset: 18%;
    border: 1px solid var(--lp-ink);
    opacity: 0.1;
    animation-duration: 60s;
}
@keyframes lp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.lp-hero__map {
    position: absolute; inset: 5%;
    width: 90%; height: 90%;
    z-index: 2;
}
.lp-hero__country {
    fill: rgba(255, 255, 255, 0.85);
    stroke: var(--lp-ink);
    stroke-width: 2;
    stroke-linejoin: round;
}
.lp-hero__route {
    fill: none;
    stroke: var(--lp-accent);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 5 9;
    animation: lp-route-march 2.4s linear infinite;
}
@keyframes lp-route-march {
    to { stroke-dashoffset: -28; }
}
.lp-hero__pin {
    stroke: white;
    stroke-width: 2;
}
.lp-hero__pin--start {
    fill: var(--lp-accent);
    transform-origin: 175px 60px;
    transform-box: fill-box;
    animation: lp-pin-pulse 1.8s ease-in-out infinite;
}
.lp-hero__pin--end {
    fill: var(--lp-ink);
}
@keyframes lp-pin-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.15); }
}
.lp-hero__walker line,
.lp-hero__walker circle {
    fill: var(--lp-ink);
    stroke: var(--lp-ink);
    stroke-width: 2.5;
    stroke-linecap: round;
}
.lp-hero__walker circle {
    stroke: none;
}
.lp-hero__walker-inner {
    animation: lp-walker-bob 1.6s ease-in-out infinite;
    transform-origin: center;
}
@keyframes lp-walker-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* =============================================================
   SCHEMAS GRID
   ============================================================= */
.lp-schemas { padding: 80px 0; }
@media (max-width: 600px) { .lp-schemas { padding: 56px 0; } }

.lp-schemas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.lp-schema-card {
    position: relative;
    display: flex; flex-direction: column;
    gap: 10px;
    padding: 24px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    text-decoration: none; color: inherit;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    overflow: hidden;
    animation: lp-fade-up .55s cubic-bezier(.2,.7,.3,1) calc(var(--lp-i, 0) * 0.06s) both;
}
@keyframes lp-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.lp-schema-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lp-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.lp-schema-card:hover {
    transform: translateY(-4px);
    border-color: var(--lp-ink);
    box-shadow: var(--lp-shadow-lg);
}
.lp-schema-card:hover::after { transform: scaleX(1); }
.lp-schema-card__num {
    position: absolute; top: 22px; right: 22px;
    font-family: var(--lp-font-display);
    font-size: 36px; font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--lp-line);
    line-height: 1;
    transition: color .25s;
}
.lp-schema-card:hover .lp-schema-card__num { color: var(--lp-accent); }
.lp-schema-card__icon {
    width: 48px; height: 48px;
    color: var(--lp-accent);
    margin-bottom: 4px;
}
.lp-schema-card__icon svg { width: 100%; height: 100%; }
.lp-schema-card__level {
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-ink-mute);
}
.lp-schema-card__title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0;
}
.lp-schema-card__desc {
    font-size: 14.5px; line-height: 1.5;
    color: var(--lp-ink-soft);
    margin: 0; flex: 1;
}
.lp-schema-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px;
    font-size: 14px; font-weight: 700;
    color: var(--lp-ink);
    transition: gap .2s, color .2s;
}
.lp-schema-card:hover .lp-schema-card__cta {
    gap: 12px; color: var(--lp-accent);
}

/* =============================================================
   PROMO BLOCK (calculator promo)
   ============================================================= */
.lp-promo { padding: 16px 0 80px; }
@media (max-width: 600px) { .lp-promo { padding: 0 0 56px; } }
.lp-promo__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px;
    background: var(--lp-ink);
    color: white;
    border-radius: var(--lp-radius-xl);
    align-items: center;
    overflow: hidden;
    position: relative;
}
@media (min-width: 800px) {
    .lp-promo__inner {
        grid-template-columns: 1.4fr 1fr;
        padding: 64px;
    }
}
@media (max-width: 600px) {
    .lp-promo__inner { padding: 36px 28px; }
}
.lp-promo__inner::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--lp-accent) 0%, transparent 70%);
    opacity: 0.18;
    border-radius: 50%;
}
.lp-promo__body { position: relative; z-index: 1; }
.lp-promo__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    color: white;
}
.lp-promo__text {
    font-size: 16px; line-height: 1.55;
    color: rgba(255,255,255,0.78);
    margin: 0 0 24px;
}
.lp-promo__viz {
    position: relative; z-index: 1;
    display: flex; justify-content: center;
}
.lp-promo__gauge {
    position: relative;
    width: 100%; max-width: 280px;
}
.lp-promo__gauge svg { width: 100%; height: auto; }
.lp-promo__gauge-text {
    position: absolute;
    bottom: 14%; left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1;
}
.lp-promo__gauge-num {
    display: block;
    font-family: var(--lp-font-display);
    font-size: 36px; font-weight: 900;
    color: var(--lp-accent2);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.lp-promo__gauge-unit {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    font-weight: 600;
}

/* =============================================================
   GENERIC GRID (latest, related, archive)
   ============================================================= */
.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.lp-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
    border-color: var(--lp-line-strong);
}
.lp-card__link { text-decoration: none; color: inherit; display: block; }
.lp-card__media {
    aspect-ratio: 3 / 2;
    background: var(--lp-bg-2);
    overflow: hidden;
}
.lp-card__img { width: 100%; height: 100%; object-fit: cover; }
.lp-card__img--placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--lp-bg-2), var(--lp-bg));
    color: var(--lp-ink-mute);
    font-size: 13px;
    text-align: center;
}
.lp-card__body {
    padding: 18px 20px 20px;
    display: flex; flex-direction: column; gap: 8px;
}
.lp-card__cat {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-accent);
}
.lp-card__title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.25;
}
.lp-card__excerpt {
    font-size: 14px; line-height: 1.5;
    color: var(--lp-ink-soft);
    margin: 0;
}
.lp-card__meta {
    font-size: 12px;
    color: var(--lp-ink-mute);
    margin-top: 4px;
}

.lp-latest { padding: 0 0 80px; }

/* =============================================================
   POST / PAGE
   ============================================================= */
.lp-post, .lp-page { padding: 32px 0 48px; }
.lp-post__head, .lp-page__head { margin-bottom: 28px; }
.lp-post__title, .lp-page__title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 14px;
}
.lp-post__cat {
    display: inline-block;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-accent);
    text-decoration: none;
    padding: 4px 10px;
    background: var(--lp-accent-soft);
    border-radius: 999px;
    margin-bottom: 14px;
}
.lp-post__lead {
    font-size: 18px; line-height: 1.5;
    color: var(--lp-ink-soft);
    margin: 0 0 18px;
}
.lp-post__meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 13.5px;
    color: var(--lp-ink-mute);
}
.lp-post__author {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--lp-ink);
    font-weight: 600;
}
.lp-post__avatar { border-radius: 50%; }
.lp-post__dot { color: var(--lp-line-strong); }
.lp-post__hero {
    margin-bottom: 32px;
}
.lp-post__hero-img, .lp-page__hero-img {
    width: 100%; height: auto;
    border-radius: var(--lp-radius-lg);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.lp-post__content,
.lp-page__content {
    font-size: 17px; line-height: 1.7;
    color: var(--lp-ink);
    max-width: 720px;
}
.lp-post__content p,
.lp-page__content p {
    margin: 0 0 1.2em;
}
.lp-post__content h2,
.lp-page__content h2 {
    margin-top: 1.6em; margin-bottom: 0.6em;
    font-size: 1.7rem; font-weight: 800;
    letter-spacing: -0.025em;
}
.lp-post__content h3,
.lp-page__content h3 {
    margin-top: 1.4em; margin-bottom: 0.5em;
    font-size: 1.3rem; font-weight: 700;
}
.lp-post__content blockquote,
.lp-page__content blockquote {
    margin: 1.5em 0;
    padding: 18px 24px;
    border-left: 4px solid var(--lp-accent);
    background: var(--lp-bg-2);
    border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
    font-style: italic;
    color: var(--lp-ink);
}
.lp-post__content a,
.lp-page__content a {
    color: var(--lp-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}
.lp-post__tags {
    margin: 32px 0 0;
    padding: 16px 0;
    border-top: 1px solid var(--lp-line);
    font-size: 13px;
    color: var(--lp-ink-soft);
}
.lp-post__tags-label {
    font-weight: 700;
    color: var(--lp-ink-mute);
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}
.lp-post__tags a {
    color: var(--lp-ink);
    background: var(--lp-bg-2);
    padding: 4px 10px;
    border-radius: 999px;
    text-decoration: none;
    margin-right: 4px;
    font-size: 12.5px;
}
.lp-post__tags a:hover { background: var(--lp-ink); color: white; }

/* =============================================================
   LAYOUT (article + sidebar)
   ============================================================= */
.lp-layout { display: block; }
@media (min-width: 960px) {
    .lp-layout--with-side {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 56px;
        max-width: 1140px;
    }
}
.lp-layout__main, .lp-layout__side { min-width: 0; }

/* =============================================================
   SIDEBAR
   ============================================================= */
.lp-side {
    display: flex; flex-direction: column;
    gap: 18px;
}
@media (min-width: 960px) {
    .lp-side { position: sticky; top: 92px; }
}
.lp-side__widget {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 20px 22px 18px;
}
.lp-side__eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-accent);
    margin-bottom: 6px;
}
.lp-side__title {
    font-size: 17px; font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}
.lp-side__text { font-size: 13.5px; line-height: 1.5; color: var(--lp-ink-soft); margin: 0 0 12px; }

.lp-side__author { background: var(--lp-bg-2); border-color: var(--lp-line-strong); }
.lp-side__author-head { display: flex; gap: 12px; margin-bottom: 10px; }
.lp-side__author-avatar { border-radius: 50%; flex-shrink: 0; }
.lp-side__author-meta { flex: 1; min-width: 0; }
.lp-side__author-name {
    font-size: 16px; font-weight: 700;
    letter-spacing: -0.015em; margin: 4px 0 2px;
}
.lp-side__author-role { font-size: 12.5px; color: var(--lp-ink-soft); }
.lp-side__author-bio { font-size: 13px; line-height: 1.5; color: var(--lp-ink-soft); margin: 0; }

.lp-side__cta {
    background: var(--lp-ink); border-color: var(--lp-ink); color: white;
}
.lp-side__cta .lp-side__eyebrow { color: var(--lp-accent2); }
.lp-side__cta .lp-side__title { color: white; }
.lp-side__cta .lp-side__text { color: rgba(255,255,255,0.7); }
.lp-side__cta-btn {
    display: inline-block;
    padding: 10px 18px;
    background: var(--lp-accent); color: white;
    border-radius: 999px;
    font-size: 13.5px; font-weight: 700;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.lp-side__cta-btn:hover {
    background: var(--lp-accent-deep);
    color: white;
    transform: translateY(-1px);
}

.lp-side__list { list-style: none; margin: 0; padding: 0; }
.lp-side__item + .lp-side__item { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--lp-line); }
.lp-side__link { display: flex; gap: 10px; text-decoration: none; color: inherit; }
.lp-side__thumb {
    flex-shrink: 0; width: 60px; height: 60px;
    border-radius: 8px; overflow: hidden;
    background: var(--lp-bg-2);
}
.lp-side__thumb-img { width: 100%; height: 100%; object-fit: cover; }
.lp-side__thumb .lp-card__img--placeholder {
    width: 100%; height: 100%; padding: 4px;
    font-size: 9px;
}
.lp-side__link-body { flex: 1; min-width: 0; }
.lp-side__link-title {
    display: block;
    font-size: 13.5px; font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
    transition: color .15s;
}
.lp-side__link:hover .lp-side__link-title { color: var(--lp-accent); }
.lp-side__link-date { font-size: 11.5px; color: var(--lp-ink-mute); }

.lp-side__tool-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.lp-side__tool-link {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px;
    background: var(--lp-bg-2);
    border-radius: 10px;
    text-decoration: none; color: var(--lp-ink);
    font-size: 13.5px; font-weight: 600;
    transition: background .15s, transform .15s;
}
.lp-side__tool-link:hover {
    background: var(--lp-ink); color: white;
    transform: translateX(3px);
}
.lp-side__tool-icon { width: 18px; height: 18px; color: var(--lp-accent); }
.lp-side__tool-link:hover .lp-side__tool-icon { color: var(--lp-accent2); }

/* =============================================================
   AUTHOR BOX (under article)
   ============================================================= */
.lp-author-box {
    margin: 48px 0 32px;
    padding: 28px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    position: relative;
    overflow: hidden;
}
.lp-author-box::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
}
@media (max-width: 600px) {
    .lp-author-box {
        grid-template-columns: 1fr;
        padding: 22px;
        text-align: center;
    }
    .lp-author-box__avatar { justify-self: center; }
}
.lp-author-box__avatar-img {
    border-radius: 50%;
    border: 3px solid var(--lp-surface);
    box-shadow: var(--lp-shadow-md);
}
.lp-author-box__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; font-weight: 700;
    color: var(--lp-accent);
    margin-bottom: 4px;
}
@media (max-width: 600px) { .lp-author-box__eyebrow { justify-content: center; } }
.lp-author-box__eyebrow-pulse {
    width: 6px; height: 6px; border-radius: 50%; background: var(--lp-accent);
    animation: lp-pulse 1.8s ease-in-out infinite;
}
.lp-author-box__name {
    font-size: 24px; font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 4px;
}
.lp-author-box__role {
    font-size: 13.5px; color: var(--lp-ink-soft);
    margin: 0 0 10px; font-weight: 500;
}
.lp-author-box__expertise {
    font-size: 12.5px; color: var(--lp-ink-soft);
    margin: 0 0 8px;
}
.lp-author-box__exp-label {
    font-weight: 700; color: var(--lp-ink); margin-right: 4px;
}
.lp-author-box__credentials {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 600;
    color: var(--lp-accent2-deep);
    background: rgba(196, 245, 78, 0.18);
    padding: 4px 10px; border-radius: 999px;
    margin: 0 0 12px;
}
.lp-author-box__bio {
    font-size: 14.5px; line-height: 1.6;
    margin: 0 0 14px;
}
.lp-author-box__meta {
    display: flex; flex-wrap: wrap; gap: 14px 22px;
    padding: 12px 0;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    margin: 0 0 14px;
}
@media (max-width: 600px) { .lp-author-box__meta { justify-content: center; } }
.lp-author-box__meta-item { display: flex; flex-direction: column; gap: 2px; }
.lp-author-box__meta-label {
    font-size: 10px; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 700;
    color: var(--lp-ink-mute);
}
.lp-author-box__meta-value {
    font-size: 13px; font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.lp-author-box__actions {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: 14px;
}
@media (max-width: 600px) { .lp-author-box__actions { justify-content: center; } }
.lp-author-box__archive {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 700;
    color: var(--lp-accent);
    text-decoration: none;
    transition: gap .15s;
}
.lp-author-box__archive:hover { gap: 10px; color: var(--lp-accent-deep); }
.lp-author-box__socials {
    display: flex; gap: 6px;
    list-style: none; padding: 0; margin: 0;
}
.lp-author-box__socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    background: var(--lp-bg-2);
    border-radius: 50%;
    color: var(--lp-ink-soft);
    transition: all .15s;
}
.lp-author-box__socials a:hover {
    background: var(--lp-ink); color: white;
    transform: translateY(-2px);
}

/* =============================================================
   RELATED POSTS, ARCHIVE
   ============================================================= */
.lp-related, .lp-archive { padding: 48px 0; }
@media (max-width: 600px) { .lp-related, .lp-archive { padding: 32px 0; } }

/* =============================================================
   BREADCRUMBS
   ============================================================= */
.lp-bc {
    margin-bottom: 18px;
    font-size: 12.5px;
    color: var(--lp-ink-mute);
}
.lp-bc__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.lp-bc__item { display: inline-flex; align-items: center; }
.lp-bc__sep { color: var(--lp-line-strong); }
.lp-bc__link {
    color: var(--lp-ink-soft);
    text-decoration: none;
    transition: color .15s;
}
.lp-bc__link:hover { color: var(--lp-accent); }
.lp-bc__item--current { color: var(--lp-ink); font-weight: 600; }

/* =============================================================
   COMMENTS, 404, SEARCH
   ============================================================= */
.lp-comments {
    padding: 48px 0;
    border-top: 1px solid var(--lp-line);
    margin-top: 48px;
}
.lp-comments__title {
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.lp-comments__list { list-style: none; padding: 0; }
.lp-comments__list ol { list-style: none; padding-left: 24px; }
.lp-comments__list .comment {
    padding: 16px 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-404 {
    padding: 100px 0;
    text-align: center;
}
.lp-404__inner { max-width: 480px; margin: 0 auto; }
.lp-404__code {
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 900;
    color: var(--lp-accent);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
}
.lp-404__title {
    font-size: 2rem;
    margin: 0 0 12px;
}
.lp-404__text {
    color: var(--lp-ink-soft);
    margin: 0 0 28px;
}

.lp-search {
    display: flex;
    border: 2px solid var(--lp-line);
    border-radius: 999px;
    overflow: hidden;
    max-width: 420px;
}
.lp-search__label { position: absolute; left: -10000px; }
.lp-search__input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    font-size: 14.5px;
    background: transparent;
    font-family: inherit;
}
.lp-search__input:focus { outline: none; }
.lp-search__submit {
    padding: 12px 22px;
    background: var(--lp-accent);
    color: white;
    border: none;
    font-size: 13.5px;
    font-weight: 700;
}

.lp-pagination {
    margin-top: 40px;
    display: flex; justify-content: center; gap: 4px;
    flex-wrap: wrap;
}
.lp-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--lp-line);
    color: var(--lp-ink);
    text-decoration: none;
    font-weight: 600; font-size: 14px;
    transition: all .15s;
}
.lp-pagination .page-numbers:hover {
    background: var(--lp-ink); color: white;
    border-color: var(--lp-ink);
}
.lp-pagination .page-numbers.current {
    background: var(--lp-accent); color: white;
    border-color: var(--lp-accent);
}

/* =============================================================
   FOOTER
   ============================================================= */
.lp-footer {
    margin-top: 80px;
    background: var(--lp-ink);
    color: var(--lp-bg);
}
.lp-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 24px 40px;
    align-items: start;
}
@media (min-width: 700px) {
    .lp-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
}
.lp-footer__brand {
    display: inline-block;
    text-decoration: none;
    color: var(--lp-bg);
    margin-bottom: 14px;
}
.lp-footer__brand img {
    max-height: 40px;
    filter: brightness(0) invert(1);
}
.lp-footer__name {
    font-family: var(--lp-font-display);
    font-size: 24px; font-weight: 900;
    letter-spacing: -0.03em;
}
.lp-footer__name::after {
    content: '';
    display: inline-block; vertical-align: middle;
    width: 9px; height: 9px;
    background: var(--lp-accent);
    border-radius: 50%; margin-left: 4px;
    transform: translateY(-2px);
}
.lp-footer__about {
    font-size: 14px; line-height: 1.6;
    color: rgba(247,247,245,0.7);
    margin: 0 0 18px;
    max-width: 360px;
}
.lp-footer__socials {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 8px;
}
.lp-footer__social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: var(--lp-bg);
    transition: all .15s;
}
.lp-footer__social-link:hover {
    background: var(--lp-accent);
    color: white;
    transform: translateY(-2px);
}
.lp-footer__title {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--lp-accent2);
    margin: 0 0 16px;
}
.lp-footer__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.lp-footer__list a {
    font-size: 14px;
    color: rgba(247,247,245,0.78);
    text-decoration: none;
    transition: color .15s, padding-left .15s;
    display: inline-block;
}
.lp-footer__list a:hover {
    color: var(--lp-accent2);
    padding-left: 4px;
}
.lp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 24px;
}
.lp-footer__bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 12.5px;
    color: rgba(247,247,245,0.5);
}
.lp-footer__company { color: rgba(247,247,245,0.4); }
.lp-footer__bottom-inner a {
    color: rgba(247,247,245,0.6);
    text-decoration: none;
}
.lp-footer__bottom-inner a:hover { color: var(--lp-accent2); }
.lp-footer__copy, .lp-footer__back { margin: 0; }

/* =============================================================
   GUTENBERG / EDITOR
   ============================================================= */
.alignwide { margin-left: -40px; margin-right: -40px; max-width: calc(100% + 80px); }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
@media (max-width: 800px) { .alignwide { margin-left: 0; margin-right: 0; max-width: 100%; } }

/* =============================================================
   PRINT
   ============================================================= */
@media print {
    .lp-header, .lp-footer, .lp-related, .lp-comments, .lp-side { display: none !important; }
    body { background: white; color: black; }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* =============================================================
   HOMEPAGE — POPULAIR (3 berichten, 1 groot + 2 klein)
   ============================================================= */
.lp-section-head--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.lp-section-head--center .lp-section-lead {
    margin-left: auto;
    margin-right: auto;
}

.lp-populair {
    padding: 64px 0 48px;
}
@media (max-width: 600px) { .lp-populair { padding: 48px 0 32px; } }

.lp-pop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 800px) {
    .lp-pop-grid {
        grid-template-columns: 1.4fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "feat second"
            "feat third";
        gap: 22px;
    }
    .lp-pop-card--feature { grid-area: feat; }
    .lp-pop-card:nth-child(2) { grid-area: second; }
    .lp-pop-card:nth-child(3) { grid-area: third; }
}

.lp-pop-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-pop-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-lg);
    border-color: var(--lp-line-strong);
}
.lp-pop-card__link { text-decoration: none; color: inherit; display: block; height: 100%; }
.lp-pop-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--lp-bg-2);
    overflow: hidden;
}
.lp-pop-card__img { width: 100%; height: 100%; object-fit: cover; }
.lp-pop-card__img.lp-card__img--placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--lp-bg-2), var(--lp-bg));
    color: var(--lp-ink-mute);
    font-size: 14px;
    text-align: center;
}
.lp-pop-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--lp-accent);
    color: white;
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.lp-pop-card__body {
    padding: 18px 22px 22px;
    display: flex; flex-direction: column;
    gap: 8px;
}
.lp-pop-card--feature .lp-pop-card__body {
    padding: 24px 28px 28px;
}
.lp-pop-card__cat {
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-accent);
}
.lp-pop-card__title {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}
.lp-pop-card--feature .lp-pop-card__title {
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.15;
}
.lp-pop-card__excerpt {
    font-size: 14.5px; line-height: 1.55;
    color: var(--lp-ink-soft);
    margin: 0;
}
.lp-pop-card__meta {
    margin-top: 4px;
    font-size: 12px;
    color: var(--lp-ink-mute);
}

/* =============================================================
   HOMEPAGE — CATEGORIE STRIPS
   ============================================================= */
.lp-cat-strip {
    padding: 48px 0;
}
@media (max-width: 600px) { .lp-cat-strip { padding: 32px 0; } }
.lp-cat-strip__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--lp-ink);
}
.lp-cat-strip__head .lp-section-title {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin: 0 0 8px;
}
.lp-cat-strip__head .lp-section-lead {
    margin: 0;
    font-size: 15px;
    max-width: 540px;
}
.lp-cat-strip__more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 700;
    color: var(--lp-ink);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--lp-bg-2);
    transition: all .15s;
    flex-shrink: 0;
}
.lp-cat-strip__more:hover {
    background: var(--lp-ink); color: white;
    transform: translateX(2px);
}

/* =============================================================
   HOMEPAGE — TOOLS BLOK (compact)
   ============================================================= */
.lp-tools-block { padding: 48px 0; }
@media (max-width: 600px) { .lp-tools-block { padding: 32px 0; } }

.lp-tools-block__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 28px;
}
@media (min-width: 880px) {
    .lp-tools-block__inner {
        grid-template-columns: 1.7fr 1fr;
        gap: 24px;
    }
}

.lp-tools-block__schemas {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    padding: 24px 26px 26px;
}
.lp-tools-block__sub {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-ink-mute);
    margin-bottom: 14px;
}
.lp-tools-block__sub--light {
    color: var(--lp-accent2);
}
.lp-tools-block__list {
    list-style: none; padding: 0; margin: 0;
}
.lp-tools-block__item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--lp-ink);
    transition: background .15s, transform .15s;
    border-bottom: 1px solid var(--lp-line);
}
.lp-tools-block__list li:last-child .lp-tools-block__item { border-bottom: none; }
.lp-tools-block__item:hover {
    background: var(--lp-bg-2);
    transform: translateX(3px);
}
.lp-tools-block__icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    color: var(--lp-accent);
    background: var(--lp-accent-soft);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    padding: 7px;
}
.lp-tools-block__icon svg { width: 100%; height: 100%; }
.lp-tools-block__item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.lp-tools-block__item-title {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.lp-tools-block__item-level {
    font-size: 11.5px;
    color: var(--lp-ink-mute);
    letter-spacing: 0.04em;
}
.lp-tools-block__item-arrow {
    color: var(--lp-ink-mute);
    transition: transform .15s, color .15s;
}
.lp-tools-block__item:hover .lp-tools-block__item-arrow {
    transform: translateX(2px);
    color: var(--lp-accent);
}

.lp-tools-block__calc {
    background: var(--lp-ink);
    color: white;
    border-radius: var(--lp-radius-lg);
    padding: 28px;
    display: flex; flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.lp-tools-block__calc::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--lp-accent2) 0%, transparent 70%);
    opacity: 0.18;
    border-radius: 50%;
}
.lp-tools-block__calc > * { position: relative; z-index: 1; }
.lp-tools-block__calc-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
    margin: 0 0 10px;
}
.lp-tools-block__calc-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
    margin: 0 0 18px;
}
.lp-tools-block__calc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    align-self: flex-start;
    padding: 10px 18px;
    background: var(--lp-accent2);
    color: var(--lp-ink);
    border-radius: 999px;
    font-size: 13.5px; font-weight: 700;
    text-decoration: none;
    transition: transform .15s, background .15s;
}
.lp-tools-block__calc-btn:hover {
    background: var(--lp-accent);
    color: white;
    transform: translateY(-1px);
}

/* =============================================================
   HOMEPAGE — ACHTERBLAD (compactere kleinere cards)
   ============================================================= */
.lp-achterblad {
    margin-top: 40px;
    padding: 64px 0;
    background: var(--lp-bg-2);
}
@media (max-width: 600px) { .lp-achterblad { padding: 48px 0; } }

.lp-achterblad__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.lp-achterblad__card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: transform .2s, border-color .2s;
}
.lp-achterblad__card:hover {
    transform: translateY(-2px);
    border-color: var(--lp-line-strong);
}
.lp-achterblad__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.lp-achterblad__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--lp-bg-2);
}
.lp-achterblad__img { width: 100%; height: 100%; object-fit: cover; }
.lp-achterblad__img.lp-card__img--placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
    color: var(--lp-ink-mute);
    font-size: 12px;
    text-align: center;
}
.lp-achterblad__body {
    padding: 14px 16px 16px;
    display: flex; flex-direction: column;
    gap: 4px;
}
.lp-achterblad__cat {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-accent);
    align-self: flex-start;
}
.lp-achterblad__title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
}
.lp-achterblad__date {
    margin-top: 4px;
    font-size: 11.5px;
    color: var(--lp-ink-mute);
}
.lp-achterblad__more {
    margin: 28px 0 0;
    text-align: center;
}
.lp-achterblad__more a {
    color: var(--lp-ink);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}
.lp-achterblad__more a:hover {
    color: var(--lp-accent);
}
