:root {
    --ptp-dark: #111;
    --ptp-light: #f4efe7;
    --ptp-accent: #d7ff39;
    --ptp-white: #fff;
    --ptp-muted: #222;
    --ptp-line: rgba(17, 17, 17, .12);
}

/* Basis */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--ptp-light);
    color: var(--ptp-dark);
    line-height: 1.6;
}

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

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

.container {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ptp-line);
}

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 24px;
}

.brand span {
    background: var(--ptp-accent);
    padding: 2px 8px;
}

.menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.menu a {
    font-weight: 750;
    font-size: 14px;
}

.header-cta {
    background: var(--ptp-dark);
    color: var(--ptp-white);
    padding: 12px 18px;
    font-weight: 900;
}

.hamb {
    display: none;
    background: none;
    border: 0;
    width: 36px;
    padding: 0;
}

.hamb span {
    display: block;
    height: 2px;
    background: var(--ptp-dark);
    margin: 7px 0;
}

/* Hero */
.hero {
    background: var(--ptp-dark);
    color: var(--ptp-white);
    padding: 64px 0 46px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 900;
    color: var(--ptp-accent);
    margin: 0 0 14px;
}

.hero h1 {
    font-size: clamp(46px, 7vw, 94px);
    line-height: .9;
    letter-spacing: -.075em;
    margin: 0 0 22px;
    max-width: 850px;
}

.lead {
    font-size: clamp(18px, 2vw, 23px);
    max-width: 640px;
    color: rgba(255, 255, 255, .78);
    margin: 0 0 28px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 20px;
    font-weight: 950;
    border: 1px solid currentColor;
}

.btn-primary {
    background: var(--ptp-accent);
    color: #111;
    border-color: var(--ptp-accent);
}

.btn-secondary {
    color: var(--ptp-white);
}

.hero-card {
    position: relative;
}

.hero-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .16);
}

/* Stat strip */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--ptp-accent);
    color: #111;
    margin-top: -1px;
}

.stat {
    padding: 18px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.stat strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.05em;
}

.stat span {
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

/* Sections */
.section {
    padding: 78px 0;
}

.section-white {
    background: #fff;
}

.section-dark {
    background: var(--ptp-dark);
    color: var(--ptp-white);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: 30px;
}

.section-head h2,
.split h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 0;
}

.section-head p {
    max-width: 520px;
    margin: 0;
    color: #666;
}

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

.program-card {
    background: var(--ptp-light);
    border: 1px solid var(--ptp-line);
    padding: 24px;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card .nr {
    display: block;
    font-weight: 1000;
    font-size: 13px;
    color: #666;
}

.program-card h3 {
    display: block;
    font-size: 26px;
    line-height: 1;
    margin: 16px 0 8px;
    letter-spacing: -.04em;
    color: #111;
}

.program-card p {
    display: block;
    margin: 0;
    color: #555;
}

.program-card a {
    display: inline-block;
    color: #111;
}

/* Split section */
.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.split img {
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.checklist {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.check {
    padding: 14px 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-weight: 800;
}

/* Proof / quote */
.proof {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
}

.quote {
    background: var(--ptp-dark);
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
}

.quote p {
    font-size: 28px;
    line-height: 1.16;
    letter-spacing: -.04em;
    margin: 0;
}

.quote cite {
    font-style: normal;
    color: var(--ptp-accent);
    font-weight: 900;
}

.proof img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* CTA */
.cta-block {
    background: var(--ptp-accent);
    color: #111;
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cta-block h2 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 0;
}

.cta-block p {
    margin: 10px 0 0;
    max-width: 640px;
}

/* Footer */
.site-footer {
    background: #050505;
    color: #fff;
    padding: 34px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.credit {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

.credit a {
    text-decoration: underline;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Socials */
.social-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    background: rgba(255, 255, 255, .06);
    transition: transform .18s ease, background .18s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .14);
}

.social-links svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.social-links--dark a {
    border-color: rgba(0, 0, 0, .16);
    color: #111;
    background: rgba(255, 255, 255, .45);
}

.social-links--dark a:hover {
    background: #fff;
}

.contact-social {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 900;
}

.contact-social span {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
}

/* Floating contact buttons */
.floating-contact {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 98;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.floating-contact__btn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--ptp-dark);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    transition: transform .18s ease, background .18s ease;
}

.floating-contact__btn:hover {
    transform: translateY(-2px);
}

.floating-contact__btn svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.floating-contact__btn--whatsapp {
    background: #111;
    color: var(--ptp-accent);
}

.floating-contact__btn--phone {
    background: var(--ptp-dark);
    color: #fff;
}

/* Pages */
.page-section {
    padding: 76px 0;
}

.narrow {
    max-width: 820px;
}

.page-section h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -.06em;
}

.wp-block-button__link {
    border-radius: 0 !important;
}

/* Mobiel */
@media (max-width: 860px) {
    .header-inner {
        height: 66px;
    }

    .menu {
        position: fixed;
        inset: 66px 0 auto 0;
        background: #fff;
        border-bottom: 1px solid var(--ptp-line);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 18px;
    }

    .menu.open {
        display: flex;
    }

    .hamb {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 42px 0 32px;
    }

    .hero-grid,
    .split,
    .proof,
    .cta-block {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: -1;
    }

    .hero h1 {
        font-size: 50px;
    }

    .section {
        padding: 54px 0;
    }

    .section-head {
        display: block;
    }

    .program-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-card {
        min-height: auto !important;
        height: auto !important;
        padding: 26px !important;
        display: block !important;
        overflow: visible !important;
    }

    .program-card .nr {
        display: block !important;
        margin: 0 0 18px 0 !important;
        color: #666 !important;
        -webkit-text-fill-color: #666 !important;
        font-size: 18px !important;
        font-weight: 1000 !important;
        line-height: 1.2 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .program-card h3 {
        display: block !important;
        margin: 0 0 10px 0 !important;
        color: #111 !important;
        -webkit-text-fill-color: #111 !important;
        font-size: 28px !important;
        font-weight: 900 !important;
        line-height: 1.05 !important;
        letter-spacing: -.04em !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .program-card p {
        display: block !important;
        margin: 0 0 24px 0 !important;
        color: #555 !important;
        -webkit-text-fill-color: #555 !important;
        font-size: 16px !important;
        line-height: 1.55 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .program-card a {
        display: inline-block !important;
        margin: 0 !important;
        color: #111 !important;
        -webkit-text-fill-color: #111 !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .stat-strip {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .stat {
        padding: 13px;
    }

    .stat strong {
        font-size: 22px;
    }

    .proof img {
        height: auto;
    }

    .cta-block {
        padding: 30px;
    }

    .footer-inner {
        display: block;
    }

    .footer-brand {
        margin-bottom: 16px;
    }

    .contact-social {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-contact {
        right: 12px;
        bottom: 12px;
    }

    .floating-contact__btn {
        width: 42px;
        height: 42px;
    }

    .floating-contact__btn svg {
        width: 19px;
        height: 19px;
    }
}
/* Definitieve mobiele fix trajectkaarten */
@media (max-width: 860px) {
    .program-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        overflow: visible !important;
    }

    .program-card {
        display: block !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 28px !important;
        background: var(--ptp-light) !important;
        border: 1px solid var(--ptp-line) !important;
        overflow: visible !important;
    }

    .program-card > * {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        transform: none !important;
    }

    .program-card .nr {
        display: block !important;
        margin: 0 0 28px 0 !important;
        color: #666 !important;
        -webkit-text-fill-color: #666 !important;
        font-size: 18px !important;
        font-weight: 1000 !important;
        line-height: 1.2 !important;
    }

    .program-card h3,
    .program-card .program-title {
        display: block !important;
        margin: 0 0 12px 0 !important;
        color: #111 !important;
        -webkit-text-fill-color: #111 !important;
        font-size: 30px !important;
        font-weight: 900 !important;
        line-height: 1.05 !important;
        letter-spacing: -0.04em !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .program-card p,
    .program-card .program-text {
        display: block !important;
        margin: 0 0 30px 0 !important;
        color: #555 !important;
        -webkit-text-fill-color: #555 !important;
        font-size: 18px !important;
        line-height: 1.5 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .program-card a {
        display: inline-block !important;
        margin: 0 !important;
        color: #111 !important;
        -webkit-text-fill-color: #111 !important;
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
}