:root {
    --navy: #1f3a5f;
    --teal: #0aa6b5;
    --bg: #cfecef;
    --bg-2: #e7f3f6;
    --card: #1f3a5f;
    --text: #0b1a2b;
    --muted: #5b6b7c;
    --white: #fff;
    --radius: 18px;
    --shadow: 0 16px 40px rgba(9, 30, 66, .10);
    --container: 1120px;
}

* { box-sizing: border-box }

html, body { height: 100% }

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a { color: inherit; text-decoration: none }

img { max-width: 100%; display: block }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px
}

.topbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand img {
    height: 86px;
    width: auto;
}

.nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .02em;
    box-shadow: 0 10px 18px rgba(10, 166, 181, .20);
    text-transform: uppercase;
    white-space: nowrap;
}

.pill:active { transform: translateY(1px) }

.hero-titlebar {
    background: var(--navy);
    color: #fff;
    padding: 14px 0;
}

.hero-title {
    margin: 0;
    font-family: Parisienne, cursive;
    font-size: 34px;
    text-align: center;
    letter-spacing: .02em;
    line-height: 1.15;
}

.hero { background: #fff; padding: 0 }

.hero-img { margin: 0; max-width: none }

.hero-img img {
    width: 100%;
    height: clamp(320px, 58vh, 560px);
    object-fit: cover;
    border-radius: 0;
}

.info-band {
    background: var(--bg);
    padding: 22px 0 26px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card {
    background: var(--card);
    color: #fff;
    border-radius: 16px;
    padding: 22px 22px 20px;
    box-shadow: var(--shadow);
    min-height: 220px;
}

.card h3 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 900;
}

.card p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 12.5px;
    line-height: 1.65;
}

.card-list {
    margin: 0;
    padding-left: 16px;
    color: rgba(255, 255, 255, .90);
    font-size: 12.5px;
    line-height: 1.65;
}

.info-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 0;
    font-weight: 900;
    letter-spacing: .02em;
    font-size: 10px;
    text-transform: uppercase;
    box-shadow: 0 14px 22px rgba(9, 30, 66, .12);
    width: 100%;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
}

.btn.primary { background: var(--teal); color: #fff }
.btn.secondary { background: #fff; color: var(--navy) }

.benefits {
    background: #fff;
    padding: 34px 0;
}

.section-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
}

.two-col {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: center;
}

.muted {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.bullets {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--text);
    line-height: 1.7;
    font-size: 13px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.cta-row .btn { width: auto }

.img-frame {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.img-frame::after {
    content: "";
    position: absolute;
    inset: auto -28px -28px auto;
    width: 210px;
    height: 210px;
    background: #b9f0e8;
    border-radius: 18px;
    transform: translate(26px, 26px);
    z-index: 0;
}

.img-frame img { position: relative; z-index: 1 }

.benefits-logo {
    margin-top: 14px;
    width: 90px;
    height: auto;
}

.bar {
    background: var(--navy);
    color: #fff;
    padding: 14px 0;
}

.bar-title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
}

.apply {
    color: #fff;
    padding: 44px 0 54px;
    background:
            linear-gradient(180deg, rgba(24, 50, 82, .86) 0%, rgba(24, 50, 82, .92) 100%),
            url("../images/faq-bg.jpg");
    background-size: cover;
    background-position: center;
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.apply-lead {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.6;
}

.apply .muted { color: rgba(255, 255, 255, .84) }

.cards-stack {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cards-image {
    width: min(520px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 36px rgba(0,0,0,.22));
}

.deelnemers {
    background: #fff;
    padding: 34px 0;
}

.deelnemers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
    touch-action: pan-y;
    border-radius: 18px;
    padding: 14px 12px;
}

.carousel::before,
.carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    z-index: 2;
    pointer-events: none;
}

.carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.carousel::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.carousel-track {
    display: flex;
    gap: 14px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    cursor: grab;
    padding: 2px 44px; /* ruimte voor fades */
    margin: 0; /* fix: geen extra margin onderaan */
}

.carousel.is-dragging .carousel-track { cursor: grabbing }

.participant-card {
    flex: 0 0 auto;
    width: 260px;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 150px auto;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 12px 26px rgba(9, 30, 66, .10);
    transform: translateZ(0);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.participant-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(9, 30, 66, .14);
    border-color: rgba(10, 166, 181, .35);
}

.participant-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 14px;
    display: block;
    background: #fff;
    pointer-events: none;
}

.participant-name {
    padding: 12px 12px 14px;
    font-weight: 900;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    border-top: 1px solid rgba(15, 23, 42, .06);
}

.faq {
    color: #fff;
    padding: 44px 0;
    background:
            linear-gradient(180deg, rgba(24, 50, 82, .86) 0%, rgba(24, 50, 82, .92) 100%),
            url("../images/faq-bg.jpg");
    background-size: cover;
    background-position: center;
}

.faq-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 900;
}

.faq-cols {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: flex-start;
}

.faq-text {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.65;
}

.q {
    margin: 14px 0 6px;
    font-weight: 900;
    font-size: 13px
}

.a {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.65
}

.logo-box {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    width: min(360px, 100%);
    margin-left: auto;
}

.footer-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.contact-inline {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-inline-title {
    font-weight: 900;
    font-size: 13px;
}

.contact-inline-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
    font-size: 12px;
    box-shadow: 0 14px 22px rgba(0,0,0,.18);
}

.contact-inline-mail:active {
    transform: translateY(1px);
}
@media (max-width: 980px) {
    .info-grid { grid-template-columns: 1fr }
    .two-col { grid-template-columns: 1fr }
    .apply-grid { grid-template-columns: 1fr }
    .faq-cols { grid-template-columns: 1fr }
    .card { min-height: 0 }
    .cta-row .btn { width: 100% }

    .cards-stack {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        justify-items: center;
    }

    .brand img { height: 72px }
    .hero-title { font-size: 30px }

    .carousel { border-radius: 16px; padding: 12px 10px }
    .carousel-track { padding: 2px 38px }
}

@media (max-width: 640px) {
    .topbar-inner {
        gap: 12px;
        padding: 16px 0;
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .brand img { height: 64px }
    .hero-title { font-size: 26px }
    .hero-img img { height: clamp(240px, 42vh, 420px) }

    .cards-stack { display: block }

    .logo-box { margin-left: 0 }
    .bar-title { text-align: center }

    .participant-card { width: 220px; grid-template-rows: 140px auto }
    .carousel::before, .carousel::after { width: 42px }
    .carousel-track { padding: 2px 30px }
}

@media (max-width: 420px) {
    .container { padding: 0 14px }
    .brand img { height: 58px }
    .pill { font-size: 10px; padding: 8px 12px }
    .btn { font-size: 10px; padding: 11px 14px }
}