/* =====================================================================
   M1 - centrale marketingsite (mockup 4c). Alleen geladen op pagina's die
   View::render(marketingShell: ...) gebruiken (homepage, "Tickets kwijt?"),
   bovenop app.css (lettertypes Plus Jakarta Sans / JetBrains Mono komen
   daar vandaan). Alles hangt onder body.marketing-body - raakt geen enkele
   andere pagina.
   ===================================================================== */

.marketing-body {
    --mkt-ink: #101014;
    --mkt-paper: #fdfbf7;
    --mkt-card: #ffffff;
    --mkt-purple: #5d5dff;
    --mkt-purple-hover: #4b4bf0;
    --mkt-purple-ink: #4646d6;
    --mkt-yellow: #ffc80a;
    --mkt-muted: #5c5c6b;
    --mkt-line: #e9e4da;
    --mkt-radius: 22px;
    margin: 0;
    background: var(--mkt-paper);
    color: var(--mkt-ink);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

.marketing-body .mkt-main {
    display: block;
    margin: 0;
    padding: 0;
    max-width: none;
}

.marketing-body h1,
.marketing-body h2,
.marketing-body h3 {
    font-family: var(--font-sans);
    color: inherit;
}

/* Toetsenbordfocus: paars op licht, geel op de donkere vlakken. */
.marketing-body :focus-visible {
    outline: 3px solid var(--mkt-purple);
    outline-offset: 3px;
}

.mkt-nav :focus-visible,
.mkt-hero :focus-visible,
.mkt-subhero :focus-visible,
.mkt-pricing__panel :focus-visible,
.mkt-footer :focus-visible {
    outline-color: var(--mkt-yellow);
}

.mkt-skip {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 200;
    background: #ffffff;
    color: var(--mkt-ink);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.mkt-skip:focus {
    left: 16px;
}

/* ---------- knoppen ---------- */
.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mkt-btn--primary {
    background: var(--mkt-purple);
    color: #ffffff;
}

.mkt-btn--primary:hover {
    background: var(--mkt-purple-hover);
    color: #ffffff;
}

.mkt-btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.mkt-btn--ghost:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.mkt-btn--light {
    background: #ffffff;
    color: var(--mkt-ink);
}

.mkt-btn--light:hover {
    background: #f1f0ff;
    color: var(--mkt-ink);
}

.mkt-btn--outline {
    background: transparent;
    color: var(--mkt-ink);
    border-color: var(--mkt-ink);
}

.mkt-btn--outline:hover {
    background: var(--mkt-ink);
    color: #ffffff;
}

.mkt-btn--small {
    min-height: 42px;
    padding: 0 20px;
    font-size: 0.92rem;
}

/* ---------- navigatie ---------- */
.mkt-nav {
    background: var(--mkt-ink);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mkt-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.mkt-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    flex: none;
}

.mkt-brand img {
    display: block;
    max-height: 32px;
    max-width: 180px;
}

.mkt-brand__mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--mkt-purple);
    flex: none;
}

.mkt-nav__links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.mkt-nav__links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
}

.mkt-nav__links a:hover {
    color: #ffffff;
}

@media (max-width: 860px) {
    .mkt-nav__links {
        display: none;
    }

    .mkt-nav__cta {
        margin-left: auto;
    }
}

/* ---------- gedeelde typografie ---------- */
.mkt-eyebrow {
    margin: 0 0 18px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mkt-yellow);
}

/* ---------- hero ---------- */
.mkt-hero {
    background:
        radial-gradient(90% 80% at 88% 12%, rgba(93, 93, 255, 0.28) 0%, rgba(93, 93, 255, 0) 60%),
        linear-gradient(180deg, #14142a 0%, var(--mkt-ink) 100%);
    color: #ffffff;
}

.mkt-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 96px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: center;
}

.mkt-hero h1 {
    margin: 0 0 22px;
    font-size: clamp(2.3rem, 5.2vw, 3.7rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #ffffff;
    overflow-wrap: anywhere;
}

.mkt-hero__lead {
    margin: 0 0 34px;
    max-width: 580px;
    font-size: 1.14rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
}

.mkt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.mkt-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mkt-stat__value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.mkt-stat__label {
    display: block;
    margin-top: 4px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.62);
}

.mkt-hero__vat {
    margin: 16px 0 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .mkt-hero__inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 52px 20px 64px;
        gap: 44px;
    }

    .mkt-hero__lead {
        font-size: 1.04rem;
    }

    .mkt-stats {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .mkt-hero__actions .mkt-btn {
        width: 100%;
    }
}

/* ---------- decoratieve e-ticket-compositie ---------- */
.mkt-visual {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding: 44px 36px;
}

.mkt-visual__panel {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: repeating-linear-gradient(135deg, rgba(93, 93, 255, 0.34) 0 14px, rgba(93, 93, 255, 0.16) 14px 28px);
}

.mkt-visual__ticket {
    position: relative;
    max-width: 290px;
    margin: 0 auto;
    padding: 24px 24px 28px;
    border-radius: 22px;
    background: #ffffff;
    color: var(--mkt-ink);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transform: rotate(-3deg);
}

.mkt-visual__notch {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    border-radius: 50%;
    background: #25254f;
}

.mkt-visual__notch--l {
    left: -11px;
}

.mkt-visual__notch--r {
    right: -11px;
}

.mkt-visual__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mkt-visual__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7c7c89;
}

.mkt-visual__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #e7f5ef;
    color: #1f7a5a;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mkt-visual__lines span {
    display: block;
    height: 9px;
    margin-top: 12px;
    border-radius: 5px;
    background: #ecebf3;
}

.mkt-visual__lines span + span {
    width: 62%;
    margin-top: 8px;
}

.mkt-visual__divider {
    margin: 20px -24px;
    border-top: 2px dashed #e4e2ec;
}

.mkt-visual__qr {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 150px;
    margin: 0 auto;
}

.mkt-visual__cell {
    aspect-ratio: 1;
    border-radius: 2px;
    background: #ecebf3;
}

.mkt-visual__cell--on {
    background: var(--mkt-ink);
}

.mkt-visual__chip {
    position: absolute;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.mkt-visual__chip--scan {
    top: 22px;
    right: 14px;
    background: var(--mkt-yellow);
    color: var(--mkt-ink);
}

.mkt-visual__chip--fee {
    bottom: 22px;
    left: 14px;
    background: var(--mkt-purple);
    color: #ffffff;
}

@media (max-width: 900px) {
    .mkt-visual {
        max-width: 360px;
        padding: 36px 26px;
    }
}

/* ---------- secties ---------- */
.mkt-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 24px 0;
}

.mkt-section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px 24px;
    margin-bottom: 28px;
}

.mkt-section__head h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mkt-section__head p {
    margin: 0;
    font-size: 0.96rem;
    color: var(--mkt-muted);
}

@media (max-width: 900px) {
    .mkt-section {
        padding: 64px 20px 0;
    }
}

/* ---------- featurekaarten ---------- */
.mkt-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mkt-feature {
    padding: 30px 28px;
    border-radius: var(--mkt-radius);
    border: 1px solid var(--mkt-line);
    background: var(--mkt-card);
    box-shadow: 0 1px 2px rgba(16, 16, 20, 0.04);
}

.mkt-feature__mark {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 12px;
}

.mkt-feature__mark--purple {
    background: var(--mkt-purple);
}

.mkt-feature__mark--ink {
    background: var(--mkt-ink);
}

.mkt-feature__mark--yellow {
    background: var(--mkt-yellow);
}

.mkt-feature h3 {
    margin: 0 0 10px;
    font-size: 1.14rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mkt-feature p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--mkt-muted);
}

@media (max-width: 900px) {
    .mkt-features {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ---------- evenementen ---------- */
.mkt-events {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mkt-events--single {
    grid-template-columns: minmax(0, 420px);
}

.mkt-event {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--mkt-radius);
    border: 1px solid var(--mkt-line);
    background: var(--mkt-card);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mkt-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(16, 16, 20, 0.08);
}

.mkt-event__media {
    aspect-ratio: 16 / 9;
    background: var(--mkt-ink);
}

.mkt-event__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Geen eigen afbeelding: een puur decoratief vlak (zelfde streeppatroon als
   de hero), zodat alle kaarten in een rij even hoog en rustig blijven. */
.mkt-event__media--placeholder {
    background:
        repeating-linear-gradient(135deg, rgba(93, 93, 255, 0.3) 0 14px, rgba(93, 93, 255, 0.14) 14px 28px),
        var(--mkt-ink);
}

.mkt-event__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 6px;
    padding: 22px 22px 24px;
}

.mkt-event__org {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mkt-muted);
    overflow-wrap: anywhere;
}

.mkt-event__title {
    margin: 0;
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    overflow-wrap: anywhere;
}

.mkt-event__title a {
    color: inherit;
    text-decoration: none;
}

/* Hele kaart klikbaar, maar één focusbaar element (de titellink). */
.mkt-event__title a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.mkt-event__meta {
    margin: 0;
    font-size: 0.92rem;
    color: var(--mkt-muted);
    overflow-wrap: anywhere;
}

.mkt-event__date {
    color: var(--mkt-ink);
    font-weight: 600;
}

.mkt-status {
    align-self: flex-start;
    margin-top: auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f0ec;
    color: var(--mkt-ink);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.mkt-event__body .mkt-status {
    margin-top: 14px;
}

.mkt-status--available {
    background: #eeeaff;
    color: var(--mkt-purple-ink);
}

.mkt-status--free {
    background: #e7f5ef;
    color: #1f7a5a;
}

.mkt-status--future {
    background: #fff4d6;
    color: #6f5400;
}

@media (max-width: 1000px) {
    .mkt-events {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mkt-events,
    .mkt-events--single {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ---------- "Tickets kwijt?"-ingang ---------- */
.mkt-lost {
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0 24px;
}

.mkt-lost__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 28px;
    padding: 26px 30px;
    border-radius: var(--mkt-radius);
    border: 1px solid var(--mkt-line);
    background: var(--mkt-card);
}

.mkt-lost h2 {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 800;
}

.mkt-lost p {
    margin: 0;
    max-width: 640px;
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--mkt-muted);
}

@media (max-width: 900px) {
    .mkt-lost {
        margin-top: 48px;
        padding: 0 20px;
    }

    .mkt-lost__inner {
        padding: 22px;
    }
}

/* ---------- tarieven ---------- */
.mkt-pricing {
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0 24px;
}

.mkt-pricing__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    gap: 44px;
    align-items: center;
    padding: 56px 52px;
    border-radius: 28px;
    background: var(--mkt-ink);
    color: #ffffff;
}

.mkt-pricing__panel--plain {
    grid-template-columns: minmax(0, 1fr);
}

.mkt-pricing h2 {
    margin: 0 0 16px;
    font-size: clamp(1.85rem, 3.4vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.mkt-pricing__text p {
    margin: 0 0 24px;
    max-width: 640px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
}

.mkt-pricing__text .mkt-eyebrow {
    margin: 0 0 16px;
    color: var(--mkt-yellow);
}

.mkt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mkt-tags li {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mkt-rates {
    width: 100%;
    margin: 0 0 12px;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.mkt-rates caption {
    text-align: left;
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.84rem;
}

.mkt-rates th,
.mkt-rates td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
}

.mkt-rates td {
    text-align: right;
    font-family: var(--font-mono);
    font-weight: 700;
    color: #ffffff;
}

.mkt-rates thead th {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 600;
}

.mkt-rates thead th:last-child {
    text-align: right;
}

.mkt-pricing__text .mkt-pricing__vatline {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
}

.mkt-price-card {
    padding: 32px 28px;
    border-radius: var(--mkt-radius);
    background: var(--mkt-purple);
    text-align: center;
}

.mkt-price-card__label {
    margin: 0 0 12px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.mkt-price-card__value {
    margin: 0;
    font-family: var(--font-mono);
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.mkt-price-card__vat {
    margin: 12px 0 24px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.82);
}

.mkt-price-card .mkt-btn {
    width: 100%;
}

@media (max-width: 900px) {
    .mkt-pricing {
        margin-top: 48px;
        padding: 0 20px;
    }

    .mkt-pricing__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        padding: 38px 24px;
    }
}

/* ---------- voettekst ---------- */
.mkt-footer {
    margin-top: 96px;
    background: var(--mkt-ink);
    color: #ffffff;
}

.mkt-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
}

.mkt-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.mkt-footer__links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.mkt-footer__links a:hover {
    color: var(--mkt-yellow);
}

@media (max-width: 900px) {
    .mkt-footer {
        margin-top: 64px;
    }

    .mkt-footer__inner {
        padding: 32px 20px;
    }
}

/* ---------- "Tickets kwijt?"-pagina ---------- */
.mkt-subhero {
    background:
        radial-gradient(80% 90% at 90% 0%, rgba(93, 93, 255, 0.26) 0%, rgba(93, 93, 255, 0) 60%),
        linear-gradient(180deg, #14142a 0%, var(--mkt-ink) 100%);
    color: #ffffff;
}

.mkt-subhero__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}

.mkt-subhero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.mkt-subhero__lead {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
}

.mkt-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.mkt-card {
    margin-top: -48px;
    padding: 34px 32px;
    border-radius: var(--mkt-radius);
    border: 1px solid var(--mkt-line);
    background: var(--mkt-card);
    box-shadow: 0 20px 40px rgba(16, 16, 20, 0.08);
}

.mkt-card h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 800;
}

.mkt-card p {
    margin: 0 0 14px;
    line-height: 1.6;
}

.mkt-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.mkt-input {
    display: block;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1.5px solid #d4cfc4;
    border-radius: 14px;
    background: #ffffff;
    color: var(--mkt-ink);
    font-family: inherit;
    font-size: 1rem;
}

.mkt-input:focus-visible {
    border-color: var(--mkt-purple);
    outline: 3px solid rgba(93, 93, 255, 0.35);
    outline-offset: 0;
}

.mkt-input[aria-invalid="true"] {
    border-color: #b3352b;
}

.mkt-hint {
    margin: 8px 0 0;
    font-size: 0.88rem;
    color: var(--mkt-muted);
}

.mkt-card .mkt-hint {
    margin: 8px 0 0;
}

.mkt-field-error {
    margin: 10px 0 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #b3352b;
}

.mkt-card .mkt-field-error {
    margin: 10px 0 0;
}

.mkt-form__actions {
    margin-top: 24px;
}

.mkt-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mkt-notice__icon {
    flex: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e7f5ef;
    position: relative;
}

.mkt-notice__icon::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 9px;
    width: 8px;
    height: 14px;
    border: solid #1f7a5a;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.mkt-muted {
    color: var(--mkt-muted);
}

.mkt-info {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.mkt-info li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--mkt-muted);
}

.mkt-info li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--mkt-purple);
}

.mkt-info a {
    color: var(--mkt-purple-ink);
    font-weight: 700;
}

@media (max-width: 640px) {
    .mkt-subhero__inner {
        padding: 44px 20px 84px;
    }

    .mkt-narrow {
        padding: 0 16px;
    }

    .mkt-card {
        padding: 26px 20px;
    }

    .mkt-form__actions .mkt-btn {
        width: 100%;
    }
}

/* =====================================================================
   M1.1 - door de beheerder instelbare homepage: onderdelen kunnen uit
   staan en teksten kunnen langer zijn dan de M1-standaard.
   ===================================================================== */

/* Lange (maar geldige) teksten breken af i.p.v. horizontaal te scrollen. */
.mkt-hero__lead,
.marketing-body .mkt-eyebrow,
.mkt-section__head h2,
.mkt-section__head p,
.mkt-feature h3,
.mkt-feature p,
.mkt-lost h2,
.mkt-lost p,
.mkt-pricing h2,
.mkt-pricing__text p,
.mkt-cta h2,
.mkt-cta p,
.mkt-btn {
    overflow-wrap: anywhere;
}

.mkt-btn {
    max-width: 100%;
}

.mkt-lost__inner > div {
    min-width: 0;
}

/* Geen kerncijfers onder de knoppen (tarieven uit): geen losse witruimte. */
.mkt-hero__actions:last-child {
    margin-bottom: 0;
}

/* Optionele bovenregel boven een sectiekop op de lichte achtergrond. */
.mkt-section__head .mkt-eyebrow {
    margin: 0 0 10px;
    color: var(--mkt-purple-ink);
}

/* ---------- contact / CTA ---------- */
.mkt-cta {
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0 24px;
}

.mkt-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px 36px;
    padding: 46px 48px;
    border-radius: 28px;
    background:
        radial-gradient(70% 120% at 100% 0%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 60%),
        var(--mkt-purple);
    color: #ffffff;
}

.mkt-cta__text {
    flex: 1 1 420px;
    min-width: 0;
}

.mkt-cta h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.mkt-cta p {
    margin: 10px 0 0;
    max-width: 640px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.mkt-cta :focus-visible {
    outline-color: #ffffff;
}

@media (max-width: 900px) {
    .mkt-cta {
        margin-top: 48px;
        padding: 0 20px;
    }

    .mkt-cta__inner {
        padding: 34px 24px;
    }
}

@media (max-width: 480px) {
    .mkt-cta .mkt-btn {
        width: 100%;
    }
}

/* ---------- alle onderdelen uit: rustig openingsblok ---------- */
.mkt-subhero--plain .mkt-subhero__inner {
    padding-bottom: 76px;
}

.mkt-subhero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

/* Geen navigatielinks (alle onderdelen uit): de contactknop blijft rechts. */
.mkt-brand + .mkt-nav__cta {
    margin-left: auto;
}

/* Alleen het openingsblok over: op het 1200px-raster van navigatie en
   voettekst, en het blok vult het scherm zodat de voettekst er direct
   onder aansluit (geen losse lichte strook tussen twee donkere vlakken). */
.marketing-body:has(.mkt-subhero--plain) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.marketing-body:has(.mkt-subhero--plain) .mkt-main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}

.mkt-subhero--plain {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
}

.mkt-subhero--plain .mkt-subhero__inner {
    width: 100%;
    max-width: 1200px;
    padding: 88px 24px;
}

.mkt-subhero--plain .mkt-subhero__lead {
    max-width: 580px;
}

.marketing-body:has(.mkt-subhero--plain) .mkt-footer {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
    .mkt-subhero--plain .mkt-subhero__inner {
        padding: 56px 20px;
    }
}

/* =====================================================================
   M1.2B - runtime-afwerking: vaste (sticky) kop, ankerafstand,
   iconen in de featurekaarten, koopactie op evenementkaarten en het
   contactformulier in de marketingschil.
   ===================================================================== */

/* Vaste kop: zelfde compacte donkere balk, blijft bovenaan staan. */
.mkt-nav {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Ankers (/#functies, /#evenementen, /#tarieven - ook via /prijzen) landen
   net ONDER de vaste kop i.p.v. erachter. */
.marketing-body main [id] {
    scroll-margin-top: 84px;
}

/* ---------- iconen in de featurekaarten ---------- */
.mkt-feature__mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt-feature__mark svg {
    display: block;
    width: 22px;
    height: 22px;
}

.mkt-feature__mark--purple {
    color: #ffffff;
}

.mkt-feature__mark--ink {
    color: var(--mkt-yellow);
}

.mkt-feature__mark--yellow {
    color: var(--mkt-ink);
}

/* ---------- koopactie op evenementkaarten ---------- */
.mkt-event__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 12px;
    margin-top: auto;
    padding-top: 16px;
}

.mkt-event__body .mkt-event__foot .mkt-status {
    margin-top: 0;
}

.mkt-event__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1.5px solid var(--mkt-purple);
    background: var(--mkt-purple);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.mkt-event__cta svg {
    flex: none;
    transition: transform 0.15s ease;
}

.mkt-event:hover .mkt-event__cta {
    background: var(--mkt-purple-hover);
    border-color: var(--mkt-purple-hover);
}

.mkt-event:hover .mkt-event__cta svg {
    transform: translateX(2px);
}

.mkt-event__cta--quiet {
    background: transparent;
    border-color: var(--mkt-ink);
    color: var(--mkt-ink);
}

.mkt-event:hover .mkt-event__cta--quiet {
    background: var(--mkt-ink);
    border-color: var(--mkt-ink);
    color: #ffffff;
}

/* Toetsenbord: focus op de (enige) link van de kaart omlijnt de hele kaart. */
.mkt-event:has(.mkt-event__title a:focus-visible) {
    outline: 3px solid var(--mkt-purple);
    outline-offset: 3px;
}

@media (max-width: 480px) {
    .mkt-event__cta {
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* ---------- contactformulier ---------- */
.mkt-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
}

.mkt-field--full {
    grid-column: 1 / -1;
}

.mkt-form__error {
    margin: 0 0 18px;
}

.mkt-optional {
    font-weight: 500;
    color: var(--mkt-muted);
}

.mkt-textarea {
    min-height: 150px;
    padding: 14px 16px;
    line-height: 1.5;
    resize: vertical;
}

@media (max-width: 640px) {
    .mkt-form__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
}

/* Foutmelding bovenaan het contactformulier: duidelijk, rustig vlak met
   ruimte tot het eerste veld (overschrijft de M1-veldmelding-marge). */
.mkt-card .mkt-form__error {
    margin: 0 0 20px;
    padding: 12px 16px;
    border: 1px solid #f1c5c0;
    border-radius: 12px;
    background: #fdf1ef;
}

/* Korte pagina's (bijv. de bedankpagina): de voettekst sluit onderaan het
   scherm aan i.p.v. een lege strook eronder. Lange pagina's veranderen niet. */
.marketing-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.marketing-body .mkt-main {
    flex: 1 0 auto;
}
