/* ============================================================
   Gezindo — Landing Page (modern, scroll-effects)
   Super strak, donker premium design met emerald/sky accenten
   ============================================================ */

:root {
    --lp-bg: #070D17;
    --lp-bg-soft: #0B1525;
    --lp-surface: rgba(255, 255, 255, 0.04);
    --lp-surface-hover: rgba(255, 255, 255, 0.07);
    --lp-border: rgba(255, 255, 255, 0.08);
    --lp-border-strong: rgba(255, 255, 255, 0.14);
    --lp-text: #F1F5F9;
    --lp-text-dim: #94A3B8;
    --lp-text-faint: #64748B;
    --lp-emerald: #6366F1;
    --lp-emerald-soft: rgba(99, 102, 241, 0.12);
    --lp-sky: #8B5CF6;
    --lp-sky-soft: rgba(139, 92, 246, 0.12);
    --lp-amber: #FBBF24;
    --lp-grad: linear-gradient(135deg, #818CF8 0%, #8B5CF6 100%);
    --lp-grad-text: linear-gradient(110deg, #C7D2FE 0%, #A78BFA 100%);
    --lp-radius: 20px;
    --lp-radius-lg: 28px;
    --lp-font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --lp-font-body: 'Inter', sans-serif;
    --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Basis ---------- */
.landing-page {
    font-family: var(--lp-font-body);
    background: var(--lp-bg);
    color: var(--lp-text);
    min-height: 100vh;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.landing-page.hidden { display: none !important; }

.landing-page ::selection { background: rgba(99, 102, 241, 0.35); }

.lp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Reveal-on-scroll (met stagger via --lp-d) ---------- */
.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s var(--lp-ease), transform 0.75s var(--lp-ease);
    transition-delay: var(--lp-d, 0s);
}
.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .lp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Scroll-voortgangsbalk ---------- */
.lp-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--lp-grad);
    z-index: 2000;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.55);
    pointer-events: none;
}

/* ---------- Navigatie ---------- */
.lp-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1180px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px 10px 18px;
    border-radius: 18px;
    background: rgba(11, 18, 32, 0.72);
    border: 1px solid var(--lp-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: top 0.35s var(--lp-ease), padding 0.35s var(--lp-ease),
                background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.lp-nav.lp-scrolled {
    top: 10px;
    padding: 7px 12px 7px 16px;
    background: rgba(7, 13, 23, 0.88);
    border-color: var(--lp-border-strong);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--lp-text);
}
.lp-brand svg { display: block; border-radius: 10px; }
.lp-brand-name {
    font-family: var(--lp-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.landing-nav-links .lp-nav-link {
    padding: 8px 14px;
    border-radius: 10px;
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}
.landing-nav-links .lp-nav-link:hover {
    color: var(--lp-text);
    background: var(--lp-surface-hover);
}

.lp-nav-cta {
    margin-left: 8px;
    padding: 9px 20px;
    border: none;
    border-radius: 11px;
    background: var(--lp-grad);
    color: #ffffff;
    font-family: var(--lp-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s var(--lp-ease), box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.28);
}
.lp-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(99, 102, 241, 0.4);
}

.lp-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--lp-border);
    border-radius: 11px;
    background: var(--lp-surface);
    color: var(--lp-text);
    font-size: 1rem;
    cursor: pointer;
}

@media (max-width: 880px) {
    .lp-menu-btn { display: flex; align-items: center; justify-content: center; }
    .landing-nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 6px;
        border-radius: 18px;
        background: rgba(11, 18, 32, 0.96);
        border: 1px solid var(--lp-border);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .landing-nav-links.mobile-open { display: flex; }
    .landing-nav-links .lp-nav-link { padding: 12px 16px; }
    .lp-nav-cta { margin: 4px 0 0; padding: 13px 20px; }
}

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    padding: 150px 0 90px;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: -12% 0;
    pointer-events: none;
    will-change: transform;
    background:
        radial-gradient(560px 380px at 18% 8%, rgba(99, 102, 241, 0.15), transparent 65%),
        radial-gradient(620px 420px at 85% 22%, rgba(139, 92, 246, 0.14), transparent 65%),
        radial-gradient(800px 600px at 50% 110%, rgba(99, 102, 241, 0.07), transparent 60%);
}
.lp-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 55% at 50% 35%, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 35%, black 25%, transparent 75%);
}

.lp-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--lp-emerald-soft);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #C7D2FE;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.lp-hero h1 {
    margin: 22px 0 18px;
    font-family: var(--lp-font-display);
    font-size: clamp(2.5rem, 5.2vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}
.lp-grad-text {
    background: var(--lp-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-hero-sub {
    max-width: 480px;
    color: var(--lp-text-dim);
    font-size: 1.13rem;
    line-height: 1.7;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 14px;
    background: var(--lp-grad);
    color: #ffffff;
    font-family: var(--lp-font-body);
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s var(--lp-ease), box-shadow 0.25s;
    box-shadow: 0 6px 26px rgba(99, 102, 241, 0.32);
}
.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.45);
}

.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border: 1px solid var(--lp-border-strong);
    border-radius: 14px;
    background: var(--lp-surface);
    color: var(--lp-text);
    font-family: var(--lp-font-body);
    font-size: 1.02rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.25s var(--lp-ease);
}
.lp-btn-ghost:hover {
    background: var(--lp-surface-hover);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.lp-hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--lp-border);
}
.lp-stat strong {
    display: block;
    font-family: var(--lp-font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    background: var(--lp-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-stat span {
    color: var(--lp-text-faint);
    font-size: 0.86rem;
}

/* Hero app preview */
.lp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.lp-phone {
    position: relative;
    width: 330px;
    border-radius: 38px;
    padding: 14px;
    background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
    border: 1px solid var(--lp-border-strong);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.3),
        0 0 90px rgba(99, 102, 241, 0.12);
    transform: rotate(2.5deg);
    transition: transform 0.5s var(--lp-ease);
}
.lp-phone:hover { transform: rotate(0deg) translateY(-6px); }

.lp-phone-screen {
    border-radius: 28px;
    background: #0D1726;
    border: 1px solid var(--lp-border);
    padding: 22px 18px 18px;
    overflow: hidden;
}

.lp-phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.lp-phone-day {
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 1.05rem;
}
.lp-phone-day small {
    display: block;
    color: var(--lp-text-faint);
    font-size: 0.72rem;
    font-weight: 500;
}
.lp-phone-avatars { display: flex; }
.lp-phone-avatars span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid #0D1726;
}
.lp-phone-avatars span + span { margin-left: -8px; }

.lp-phone-events { display: grid; gap: 10px; }
.lp-phone-event {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-phone-event i {
    width: 34px;
    height: 34px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.82rem;
}
.lp-phone-event-info { min-width: 0; }
.lp-phone-event-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-phone-event-info span {
    color: var(--lp-text-faint);
    font-size: 0.74rem;
}
.lp-phone-check {
    margin-left: auto;
    color: var(--lp-emerald);
    font-size: 0.9rem;
}

.lp-phone-fab {
    margin: 16px 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-grad);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.4);
}

.lp-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border-radius: 14px;
    background: rgba(13, 23, 38, 0.9);
    border: 1px solid var(--lp-border-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    animation: lpFloat 5.5s ease-in-out infinite;
}
.lp-float i { color: var(--lp-emerald); }
.lp-float-1 { top: 12%; left: -8%; animation-delay: 0s; }
.lp-float-2 { bottom: 20%; right: -10%; animation-delay: 1.4s; }
.lp-float-2 i { color: var(--lp-sky); }
.lp-float-3 { bottom: -4%; left: 2%; animation-delay: 2.8s; }
.lp-float-3 i { color: var(--lp-amber); }

@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
    .lp-float { animation: none; }
}

@media (max-width: 980px) {
    .lp-hero { padding: 130px 0 70px; }
    .lp-hero-inner { grid-template-columns: 1fr; gap: 64px; }
    .lp-hero-sub { max-width: 560px; }
    .lp-float-1 { left: 0; }
    .lp-float-2 { right: 0; }
}

/* ---------- Sectie-koppen ---------- */
.lp-section {
    position: relative;
    padding: 96px 0;
}
.lp-section-alt {
    background: var(--lp-bg-soft);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-section-head {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}
.lp-section-head h2 {
    margin: 18px 0 14px;
    font-family: var(--lp-font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.lp-section-head p {
    color: var(--lp-text-dim);
    font-size: 1.06rem;
}

/* ---------- Features (bento) ---------- */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lp-feature-card {
    position: relative;
    padding: 28px;
    border-radius: var(--lp-radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid var(--lp-border);
    transition: transform 0.3s var(--lp-ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(165, 180, 252, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}
.lp-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.35);
    background: var(--lp-surface-hover);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}
.lp-feature-card:hover::before { opacity: 1; }
.lp-feature-card:hover .lp-feature-icon { transform: scale(1.08) rotate(-3deg); }
.lp-feature-card.lp-featured {
    background: linear-gradient(150deg, rgba(99, 102, 241, 0.10), rgba(139, 92, 246, 0.06));
    border-color: rgba(99, 102, 241, 0.3);
}

.lp-new-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--lp-grad);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.25rem;
    margin-bottom: 20px;
    transition: transform 0.35s var(--lp-ease);
}
.lp-icon-emerald { background: rgba(99, 102, 241, 0.14); color: #818CF8; }
.lp-icon-sky     { background: rgba(139, 92, 246, 0.14); color: #A78BFA; }
.lp-icon-amber   { background: rgba(251, 191, 36, 0.13); color: #FBBF24; }
.lp-icon-rose    { background: rgba(244, 63, 94, 0.13);  color: #FB7185; }
.lp-icon-violet  { background: rgba(139, 92, 246, 0.14); color: #A78BFA; }
.lp-icon-teal    { background: rgba(20, 184, 166, 0.14); color: #2DD4BF; }

.lp-feature-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.13rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 9px;
}
.lp-feature-card p {
    color: var(--lp-text-dim);
    font-size: 0.93rem;
    line-height: 1.65;
}

.lp-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}
.lp-feature-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--lp-border);
    color: var(--lp-text-dim);
    font-size: 0.76rem;
    font-weight: 500;
}
.lp-feature-tags i { font-size: 0.68rem; color: var(--lp-emerald); }

.lp-features-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}
.lp-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 19px;
    border-radius: 999px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    color: var(--lp-text-dim);
    font-size: 0.88rem;
    font-weight: 500;
}
.lp-strip-item i { color: var(--lp-emerald); font-size: 0.82rem; }

@media (max-width: 980px) {
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .lp-features-grid { grid-template-columns: 1fr; }
}

/* ---------- Game Center & Shop ---------- */
.lp-game-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.lp-game-card {
    padding: 34px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    transition: transform 0.3s var(--lp-ease), border-color 0.3s;
}
.lp-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.35);
}
.lp-game-card .lp-feature-icon { width: 56px; height: 56px; font-size: 1.4rem; }

.lp-game-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.lp-game-card > p {
    color: var(--lp-text-dim);
    font-size: 0.96rem;
    margin-bottom: 22px;
}

.lp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}
.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--lp-border);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--lp-text);
}
.lp-chip i { color: var(--lp-amber); font-size: 0.78rem; }

.lp-xp-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 13px;
    background: rgba(251, 191, 36, 0.09);
    border: 1px solid rgba(251, 191, 36, 0.22);
    color: #FDE68A;
    font-size: 0.9rem;
}
.lp-xp-banner i { color: var(--lp-amber); }

.lp-xp-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin-top: 40px;
}
.lp-xp-method {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    border-radius: 15px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    transition: border-color 0.25s, transform 0.25s var(--lp-ease);
}
.lp-xp-method:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}
.lp-xp-method i {
    width: 38px;
    height: 38px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--lp-emerald-soft);
    color: #818CF8;
    font-size: 0.92rem;
}
.lp-xp-method span {
    flex: 1;
    font-size: 0.88rem;
    color: var(--lp-text-dim);
}
.lp-xp-method strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #C7D2FE;
    white-space: nowrap;
}

@media (max-width: 880px) {
    .lp-game-grid { grid-template-columns: 1fr; }
    .lp-xp-methods { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .lp-xp-methods { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------- */
.pricing-toggle-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}
.toggle-label-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-text-faint);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.25s;
}
.toggle-label-new.active { color: var(--lp-text); }
.toggle-label-new.active i { color: var(--lp-emerald); }

.toggle-switch-new {
    position: relative;
    width: 56px;
    height: 30px;
    border-radius: 999px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border-strong);
    cursor: pointer;
    transition: background 0.25s;
}
.toggle-slider-new {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lp-grad);
    transition: transform 0.3s var(--lp-ease);
    transform: translateX(26px);
}
.toggle-switch-new:not(.xp-mode) .toggle-slider-new { transform: translateX(26px); }
.toggle-switch-new.xp-mode .toggle-slider-new { transform: translateX(26px); }

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: stretch;
}

.lp-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 22px;
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    transition: transform 0.3s var(--lp-ease), border-color 0.3s;
}
.lp-price-card:hover {
    transform: translateY(-5px);
    border-color: var(--lp-border-strong);
}
.lp-price-card.lp-popular {
    background: linear-gradient(165deg, rgba(99, 102, 241, 0.13), rgba(139, 92, 246, 0.07));
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 18px 50px rgba(99, 102, 241, 0.12);
}
.lp-price-card.lp-gold {
    background: linear-gradient(165deg, rgba(251, 191, 36, 0.10), rgba(251, 146, 60, 0.05));
    border-color: rgba(251, 191, 36, 0.32);
}

.lp-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--lp-grad);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}
.lp-price-badge.lp-badge-gold {
    background: linear-gradient(135deg, #FDE68A, #F59E0B);
    color: #451a03;
}
.lp-price-badge.lp-badge-fire {
    background: linear-gradient(135deg, #FDA4AF, #F43F5E);
    color: #4c0519;
}

.lp-price-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.lp-price-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.lp-price-amount {
    font-family: var(--lp-font-display);
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.lp-price-period {
    color: var(--lp-text-faint);
    font-size: 0.82rem;
    margin-left: 3px;
}
.lp-price-xp {
    margin-top: 5px;
    color: var(--lp-text-dim);
    font-size: 0.82rem;
}
.lp-price-xp strong { color: #FDE68A; }
.lp-price-save {
    margin-top: 7px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--lp-emerald-soft);
    color: #C7D2FE;
    font-size: 0.74rem;
    font-weight: 600;
}

.lp-price-features {
    list-style: none;
    margin: 20px 0 24px;
    padding: 18px 0 0;
    border-top: 1px solid var(--lp-border);
    display: grid;
    gap: 10px;
    flex: 1;
}
.lp-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--lp-text-dim);
    font-size: 0.84rem;
    line-height: 1.45;
}
.lp-price-features li i {
    margin-top: 3px;
    font-size: 0.72rem;
    color: var(--lp-emerald);
}
.lp-price-features li.lp-x i { color: var(--lp-text-faint); }
.lp-price-features li.lp-x { color: var(--lp-text-faint); }
.lp-price-features li strong { color: var(--lp-text); }

.lp-price-btn {
    width: 100%;
    padding: 13px 16px;
    border-radius: 13px;
    border: 1px solid var(--lp-border-strong);
    background: var(--lp-surface);
    color: var(--lp-text);
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: transform 0.25s var(--lp-ease), background 0.2s, box-shadow 0.25s;
}
.lp-price-btn:hover { transform: translateY(-2px); background: var(--lp-surface-hover); }
.lp-price-btn.lp-btn-grad {
    border: none;
    background: var(--lp-grad);
    color: #ffffff;
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.3);
}
.lp-price-btn.lp-btn-grad:hover { box-shadow: 0 10px 30px rgba(99, 102, 241, 0.42); }
.lp-price-btn.lp-btn-gold {
    border: none;
    background: linear-gradient(135deg, #FDE68A, #F59E0B);
    color: #451a03;
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.28);
}
.lp-price-btn.lp-btn-gold:hover { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4); }

@media (max-width: 1100px) {
    .lp-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .lp-pricing-grid { grid-template-columns: 1fr; }
}

/* Donatie */
.lp-donate {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(120deg, rgba(244, 63, 94, 0.09), rgba(139, 92, 246, 0.07));
    border: 1px solid rgba(244, 63, 94, 0.2);
}
.lp-donate-text { display: flex; align-items: center; gap: 18px; }
.lp-donate-text i {
    width: 52px;
    height: 52px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(244, 63, 94, 0.14);
    color: #FB7185;
    font-size: 1.25rem;
}
.lp-donate-text h3 {
    font-family: var(--lp-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.lp-donate-text p { color: var(--lp-text-dim); font-size: 0.92rem; }

.lp-donate-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-donate-btn {
    padding: 11px 22px;
    border-radius: 12px;
    border: 1px solid var(--lp-border-strong);
    background: var(--lp-surface);
    color: var(--lp-text);
    font-family: var(--lp-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s var(--lp-ease), background 0.2s, border-color 0.2s;
}
.lp-donate-btn:hover {
    transform: translateY(-2px);
    background: var(--lp-surface-hover);
    border-color: rgba(244, 63, 94, 0.4);
}

/* ---------- Over ons ---------- */
.lp-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}
.lp-about-card {
    padding: 34px;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
}
.lp-about-card h3 {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--lp-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.lp-about-card h3 i { color: var(--lp-emerald); }
.lp-about-card p {
    color: var(--lp-text-dim);
    font-size: 0.97rem;
    line-height: 1.75;
}
.lp-about-card p + p { margin-top: 13px; }

.lp-mission-points {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}
.lp-mission-points div {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.92rem;
    color: var(--lp-text-dim);
}
.lp-mission-points i { color: var(--lp-emerald); font-size: 0.85rem; }
.lp-mission-quote {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 4px;
    padding: 14px 18px;
    border-radius: 13px;
    background: var(--lp-emerald-soft);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: #C7D2FE;
    font-weight: 600;
    font-size: 0.95rem;
}

.lp-team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}
.lp-team-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 16px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
}
.lp-team-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-display);
    font-weight: 800;
    color: #ffffff;
    background: var(--lp-grad);
}
.lp-team-card strong { display: block; font-size: 0.98rem; }
.lp-team-card span { color: var(--lp-text-faint); font-size: 0.82rem; }

/* ---------- CTA-band ---------- */
.lp-cta-band {
    position: relative;
    margin: 0 24px;
    max-width: 1180px;
    border-radius: var(--lp-radius-lg);
    padding: 64px 32px;
    text-align: center;
    background:
        radial-gradient(420px 260px at 25% 0%, rgba(99, 102, 241, 0.22), transparent 70%),
        radial-gradient(420px 260px at 80% 100%, rgba(139, 92, 246, 0.2), transparent 70%),
        var(--lp-bg-soft);
    border: 1px solid rgba(99, 102, 241, 0.25);
    overflow: hidden;
}
@media (min-width: 1228px) {
    .lp-cta-band { margin: 0 auto; }
}
.lp-cta-band h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.lp-cta-band p {
    color: var(--lp-text-dim);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 30px;
}

/* ---------- Footer ---------- */
.lp-footer {
    padding: 64px 0 36px;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-bg);
}
.lp-footer-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 44px;
}
.lp-footer-brand { display: flex; align-items: center; gap: 13px; }
.lp-footer-brand svg { border-radius: 10px; }
.lp-footer-brand strong {
    display: block;
    font-family: var(--lp-font-display);
    font-size: 1.2rem;
    font-weight: 800;
}
.lp-footer-brand span { color: var(--lp-text-faint); font-size: 0.86rem; }

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
}
.lp-footer-links a {
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.2s;
}
.lp-footer-links a:hover { color: var(--lp-text); }

.lp-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 26px;
    border-top: 1px solid var(--lp-border);
    color: var(--lp-text-faint);
    font-size: 0.85rem;
}
.lp-footer-bottom i.fa-heart { color: #FB7185; }

/* ============================================================
   LOGIN-PAGINA (login.html)
   ============================================================ */
.lp-login-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    overflow: hidden;
}
.lp-login-wrap .lp-hero-bg,
.lp-login-wrap .lp-hero-grid { position: absolute; }

.lp-login-card {
    position: relative;
    width: 100%;
    max-width: 430px;
    padding: 40px 36px 32px;
    border-radius: 26px;
    background: rgba(13, 23, 38, 0.85);
    border: 1px solid var(--lp-border-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.lp-login-head { text-align: center; margin-bottom: 28px; }
.lp-login-head svg { border-radius: 14px; margin-bottom: 16px; }
.lp-login-head h1 {
    font-family: var(--lp-font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}
.lp-login-head > p { color: var(--lp-text-faint); font-size: 0.9rem; margin-top: 4px; }

.lp-login-card h2 {
    font-family: var(--lp-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.lp-login-card #loginSubtitle {
    color: var(--lp-text-dim);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.lp-google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 18px;
    border-radius: 13px;
    border: 1px solid var(--lp-border-strong);
    background: #fff;
    color: #1e293b;
    font-family: var(--lp-font-body);
    font-size: 0.94rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s var(--lp-ease), box-shadow 0.2s;
}
.lp-google-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.lp-google-btn img { width: 18px; height: 18px; }

.lp-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0;
    color: var(--lp-text-faint);
    font-size: 0.8rem;
}
.lp-divider::before,
.lp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lp-border);
}

.lp-field { margin-bottom: 16px; }
.lp-field label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--lp-text-dim);
    font-size: 0.82rem;
    font-weight: 600;
}
.lp-field label i { font-size: 0.75rem; color: var(--lp-emerald); }
.lp-input-wrap { position: relative; }
.lp-field input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid var(--lp-border-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--lp-text);
    font-family: var(--lp-font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.lp-field input::placeholder { color: var(--lp-text-faint); }
.lp-field input:focus {
    outline: none;
    border-color: var(--lp-emerald);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.lp-pass-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: var(--lp-text-faint);
    cursor: pointer;
    transition: color 0.2s;
}
.lp-pass-toggle:hover { color: var(--lp-text); }

.lp-pass-reqs {
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lp-border);
}
.lp-pass-reqs p { font-size: 0.78rem; color: var(--lp-text-dim); margin-bottom: 7px; }
.lp-pass-reqs ul { list-style: none; display: grid; gap: 4px; }
.lp-pass-reqs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--lp-text-faint);
}
.lp-pass-reqs li i { font-size: 0.45rem; }
.lp-pass-reqs li.valid { color: #C7D2FE; }
.lp-pass-reqs li.valid i { color: var(--lp-emerald); }

.lp-login-msg {
    margin: 4px 0 14px;
    padding: 11px 15px;
    border-radius: 11px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #FDA4AF;
    font-size: 0.85rem;
}

.lp-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border: none;
    border-radius: 13px;
    background: var(--lp-grad);
    color: #ffffff;
    font-family: var(--lp-font-body);
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s var(--lp-ease), box-shadow 0.25s;
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.3);
}
.lp-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.42);
}

.lp-login-toggle {
    margin-top: 20px;
    text-align: center;
    color: var(--lp-text-faint);
    font-size: 0.88rem;
}
.lp-login-toggle button {
    border: none;
    background: none;
    color: #C7D2FE;
    font-family: var(--lp-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 6px;
}
.lp-login-toggle button:hover { text-decoration: underline; }

.lp-login-back {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: var(--lp-text-faint);
    font-size: 0.84rem;
    text-decoration: none;
    transition: color 0.2s;
}
.lp-login-back:hover { color: var(--lp-text); }

.lp-login-perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--lp-border);
}
.lp-login-perks span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--lp-text-faint);
    font-size: 0.78rem;
}
.lp-login-perks i { color: var(--lp-emerald); font-size: 0.74rem; }


/* ============================================================
   VERFIJNINGEN — scroll effects & extra polish (v2)
   ============================================================ */

/* Ankers niet onder de vaste nav laten verdwijnen */
.lp-section, .lp-hero { scroll-margin-top: 92px; }

/* Knoppen: subtiele indruk bij klikken */
.lp-btn-primary:active, .lp-btn-ghost:active, .lp-price-btn:active,
.lp-nav-cta:active, .lp-donate-btn:active, .lp-submit-btn:active {
    transform: translateY(0) scale(0.97);
}

/* Hero-telefoon: diepere schaduw + parallax-ready */
.lp-phone {
    will-change: transform;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.3),
        0 0 110px rgba(99, 102, 241, 0.14);
}

/* Telefoon-events: één voor één inzweven bij laden */
.lp-phone-event {
    opacity: 0;
    transform: translateX(14px);
    animation: lpEventIn 0.55s var(--lp-ease) forwards;
}
.lp-phone-event:nth-child(1) { animation-delay: 0.45s; }
.lp-phone-event:nth-child(2) { animation-delay: 0.62s; }
.lp-phone-event:nth-child(3) { animation-delay: 0.79s; }
.lp-phone-event:nth-child(4) { animation-delay: 0.96s; }
@keyframes lpEventIn {
    to { opacity: 1; transform: translateX(0); }
}

/* Hero-tekst: zachte entrance bij laden */
.lp-hero-inner > div:first-child > * {
    opacity: 0;
    transform: translateY(22px);
    animation: lpHeroIn 0.8s var(--lp-ease) forwards;
}
.lp-hero-inner > div:first-child > *:nth-child(1) { animation-delay: 0.05s; }
.lp-hero-inner > div:first-child > *:nth-child(2) { animation-delay: 0.14s; }
.lp-hero-inner > div:first-child > *:nth-child(3) { animation-delay: 0.23s; }
.lp-hero-inner > div:first-child > *:nth-child(4) { animation-delay: 0.32s; }
.lp-hero-inner > div:first-child > *:nth-child(5) { animation-delay: 0.41s; }
@keyframes lpHeroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Populaire pricing-card iets groter op desktop */
@media (min-width: 1100px) {
    .lp-price-card.lp-popular { transform: scale(1.045); z-index: 1; }
    .lp-price-card.lp-popular:hover { transform: scale(1.045) translateY(-5px); }
}

/* Footer-links: animerende underline */
.lp-footer-links a {
    position: relative;
}
.lp-footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: var(--lp-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--lp-ease);
}
.lp-footer-links a:hover::after { transform: scaleX(1); }

/* Nav-links: subtiele underline-indicator */
.landing-nav-links .lp-nav-link {
    position: relative;
}
.landing-nav-links .lp-nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: var(--lp-grad);
    transform: scaleX(0);
    transition: transform 0.25s var(--lp-ease);
}
.landing-nav-links .lp-nav-link:hover::after { transform: scaleX(1); }

/* Game-cards & about-cards: zelfde hairline-gradient als features */
.lp-game-card, .lp-about-card, .lp-price-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.022));
}
.lp-price-card.lp-popular {
    background: linear-gradient(165deg, rgba(99, 102, 241, 0.14), rgba(139, 92, 246, 0.07));
}
.lp-price-card.lp-gold {
    background: linear-gradient(165deg, rgba(251, 191, 36, 0.11), rgba(251, 146, 60, 0.05));
}

/* XP-banner pulse-accent */
.lp-xp-banner i { animation: lpPulse 2.6s ease-in-out infinite; }
@keyframes lpPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.18); opacity: 0.85; }
}

/* CTA-band: zachte gloed-animatie */
.lp-cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(380px 220px at 50% 50%, rgba(99, 102, 241, 0.10), transparent 70%);
    animation: lpCtaGlow 6s ease-in-out infinite;
}
@keyframes lpCtaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-phone-event, .lp-hero-inner > div:first-child > * {
        opacity: 1; transform: none; animation: none;
    }
    .lp-xp-banner i, .lp-cta-band::after { animation: none; }
    .lp-nav { transition: none; }
}


/* ============================================================
   Gezindo — Fotogalerij & sfeerbeelden (levendig)
   ============================================================ */

/* ---- Lifestyle bento-galerij ---- */
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 198px;
    gap: 14px;
}
.lp-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    background: var(--lp-surface);
}
.lp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--lp-ease);
}
.lp-gallery-item:hover img { transform: scale(1.06); }
.lp-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,13,23,0) 38%, rgba(7,13,23,0.82) 100%);
    pointer-events: none;
}
.lp-gallery-cap {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: var(--lp-font-display);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.lp-gallery-cap i { color: var(--lp-emerald); font-size: 0.85rem; }
.lp-g-large { grid-column: span 2; grid-row: span 2; }
.lp-g-wide  { grid-column: span 2; }
@media (max-width: 760px) {
    .lp-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .lp-g-large { grid-column: span 2; grid-row: span 1; }
    .lp-g-wide  { grid-column: span 2; }
    .lp-gallery-cap { font-size: 0.9rem; }
}

/* ---- About sfeerbanner ---- */
.lp-about-banner {
    position: relative;
    height: 320px;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lp-border);
    margin-bottom: 18px;
}
.lp-about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}
.lp-about-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,13,23,0.88) 0%, rgba(7,13,23,0.55) 45%, rgba(7,13,23,0.15) 100%);
}
.lp-about-banner-text {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 34px 38px;
    max-width: 560px;
}
.lp-about-banner-text h3 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}
.lp-about-banner-text p {
    color: var(--lp-text-dim);
    font-size: 1.02rem;
}

/* ---- CTA met sfeerfoto ---- */
.lp-cta-band { isolation: isolate; }
.lp-cta-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
}
.lp-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(440px 280px at 22% 0%, rgba(99,102,241,0.42), transparent 70%),
        radial-gradient(440px 280px at 82% 100%, rgba(139,92,246,0.38), transparent 70%),
        linear-gradient(180deg, rgba(7,13,23,0.80) 0%, rgba(7,13,23,0.90) 100%);
}
.lp-cta-band > h2,
.lp-cta-band > p,
.lp-cta-band > .lp-btn-primary { position: relative; z-index: 2; }

/* <picture> wrappers transparant t.b.v. bestaande img-regels */
.lp-gallery-item picture, .lp-about-banner picture, .lp-cta-band picture { display: contents; }



/* ============================================================
   Mobiel: overzichtelijker + minder scrollen (<=760px)
   ============================================================ */
@media (max-width: 760px) {
    /* Secties compacter -> fors minder scrollen */
    .lp-section { padding: 50px 0; }
    .lp-section-head { margin-bottom: 28px; }
    .lp-section-head p { font-size: 0.97rem; }

    /* Over ons: kaarten ONDER elkaar i.p.v. geknepen kolommen */
    .lp-about-grid { grid-template-columns: 1fr; gap: 14px; }
    .lp-about-card { padding: 22px; }
    .lp-about-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
    .lp-about-banner { height: 210px; margin-bottom: 14px; }
    .lp-about-banner-text { padding: 22px 20px; }
    .lp-mission-points { margin-top: 16px; }

    /* Hero compacter */
    .lp-hero { padding: 112px 0 54px; }
    .lp-hero-stats { gap: 22px; margin-top: 28px; padding-top: 22px; }
    .lp-hero-actions { margin-top: 26px; }

    /* Galerij compacter */
    .lp-gallery { gap: 10px; grid-auto-rows: 134px; }

    /* Game Center / XP / prijzen / donatie / CTA / footer strakker */
    .lp-game-card { padding: 24px; }
    .lp-xp-methods { margin-top: 26px; gap: 10px; }
    .lp-donate { padding: 22px; margin-top: 28px; gap: 16px; }
    .lp-cta-band { padding: 44px 22px; }
    .lp-footer { padding: 44px 0 28px; }
    .lp-footer-grid { gap: 24px; margin-bottom: 30px; }
}
