.jbpm-pricing-section {
    --jbpm-orange: #ff8c00;
    --jbpm-orange-dark: #dd7800;
    --jbpm-dark: #383e42;
    --jbpm-dark-deep: #252b2f;
    --jbpm-text: #3f474c;
    --jbpm-muted: #70797e;
    --jbpm-border: #dfe3e5;
    --jbpm-soft: #f3f4f5;
    --jbpm-white: #ffffff;
    padding: 78px 0;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(255, 140, 0, .08),
            transparent 240px
        ),
        #fff;
    color: var(--jbpm-text);
}

.jbpm-pricing-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.jbpm-pricing-heading {
    margin-bottom: 30px;
}

.jbpm-pricing-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    color: #b96200;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .085em;
}

.jbpm-pricing-eyebrow span {
    width: 24px;
    height: 2px;
    background: var(--jbpm-dark);
}

.jbpm-pricing-heading__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 80px;
    align-items: end;
}

.jbpm-pricing-heading h2 {
    max-width: 700px;
    margin: 0;
    color: var(--jbpm-dark);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: .98;
    letter-spacing: -.042em;
}

.jbpm-pricing-heading__grid > div:last-child {
    justify-self: end;
    max-width: 430px;
}

.jbpm-pricing-heading p:not(.jbpm-pricing-eyebrow) {
    margin: 0;
    color: var(--jbpm-muted);
    font-size: 16px;
    line-height: 1.65;
}

.jbpm-pricing-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 34px 0 26px;
}

.jbpm-pricing-filter {
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid var(--jbpm-border);
    border-radius: 999px;
    background: #fff;
    color: var(--jbpm-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.jbpm-pricing-filter:hover,
.jbpm-pricing-filter:focus-visible {
    border-color: var(--jbpm-orange);
    outline: 0;
}

.jbpm-pricing-filter.is-active {
    border-color: var(--jbpm-orange);
    background: var(--jbpm-orange);
    color: #fff;
}

.jbpm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.jbpm-price-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--jbpm-border);
    border-radius: 11px;
    background: #fff;
    box-shadow:
        0 12px 30px rgba(32, 38, 42, .06),
        0 2px 5px rgba(32, 38, 42, .03);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.jbpm-price-card:hover {
    transform: translateY(-3px);
    border-color: #cdd2d5;
    box-shadow:
        0 18px 38px rgba(32, 38, 42, .10),
        0 2px 5px rgba(32, 38, 42, .04);
}

.jbpm-price-card[hidden] {
    display: none !important;
}

.jbpm-price-card--featured {
    border: 2px solid var(--jbpm-orange);
    padding: 24px;
}

.jbpm-price-card__badge {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 5px 8px;
    border-radius: 4px;
    background: var(--jbpm-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .055em;
}

.jbpm-price-card__category {
    margin: 0 0 9px;
    padding-right: 88px;
    color: #bd6500;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.jbpm-price-card h3 {
    margin: 0 0 9px;
    color: var(--jbpm-dark);
    font-size: 21px;
    line-height: 1.16;
    letter-spacing: -.022em;
}

.jbpm-price-card__intro {
    min-height: 46px;
    margin: 0 0 16px;
    color: var(--jbpm-muted);
    font-size: 13px;
    line-height: 1.5;
}

.jbpm-price-card__price {
    margin: 0 0 16px;
    padding: 15px 0 14px;
    border-top: 1px solid #eceeef;
    border-bottom: 1px solid #eceeef;
}

.jbpm-price-card__from,
.jbpm-price-card__price-label,
.jbpm-price-card__price strong,
.jbpm-price-card__incl,
.jbpm-price-card__price small {
    display: block;
}

.jbpm-price-card__from,
.jbpm-price-card__price-label {
    margin-bottom: 4px;
    color: var(--jbpm-muted);
    font-size: 11px;
    font-weight: 800;
}

.jbpm-price-card__price strong {
    color: var(--jbpm-dark);
    font-size: 25px;
    line-height: 1.05;
    letter-spacing: -.025em;
}

.jbpm-price-card__price strong > span {
    display: inline;
    color: var(--jbpm-orange);
}

.jbpm-price-card__incl {
    margin-top: 5px;
    color: var(--jbpm-dark);
    font-size: 12px;
    font-weight: 700;
}

.jbpm-price-card__price small {
    margin-top: 3px;
    color: var(--jbpm-muted);
    font-size: 11px;
}

.jbpm-price-card__content {
    flex: 1;
    min-height: 54px;
    margin-bottom: 15px;
    color: var(--jbpm-text);
    font-size: 12px;
    line-height: 1.55;
}

.jbpm-price-card__content p {
    margin: 0;
}

.jbpm-price-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 15px;
}

.jbpm-price-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 7px;
    border-radius: 5px;
    background: var(--jbpm-soft);
    color: #555f64;
    font-size: 10px;
    font-weight: 750;
}

.jbpm-price-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.jbpm-price-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 9px 11px;
    border-radius: 6px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
}

.jbpm-price-card__button--secondary {
    border: 1px solid #cdd2d5;
    background: #fff;
    color: var(--jbpm-dark);
}

.jbpm-price-card__button--secondary:hover,
.jbpm-price-card__button--secondary:focus-visible {
    border-color: var(--jbpm-dark);
    color: var(--jbpm-dark);
    outline: 0;
}

.jbpm-price-card__button--primary {
    border: 1px solid var(--jbpm-orange);
    background: var(--jbpm-orange);
    color: #fff !important;
}

.jbpm-price-card__button--primary:hover,
.jbpm-price-card__button--primary:focus-visible {
    border-color: var(--jbpm-orange-dark);
    background: var(--jbpm-orange-dark);
    color: #fff !important;
    outline: 0;
}

.jbpm-pricing-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    margin-top: 54px;
    padding: 28px 32px;
    border-radius: 10px;
    background:
        linear-gradient(
            115deg,
            rgba(255, 140, 0, .10),
            transparent 55%
        ),
        var(--jbpm-dark);
    box-shadow: 0 16px 38px rgba(27, 32, 35, .14);
}

.jbpm-pricing-cta__eyebrow {
    margin: 0 0 5px !important;
    color: #ffad47 !important;
    font-size: 10px !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .065em;
}

.jbpm-pricing-cta h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 25px;
    line-height: 1.12;
}

.jbpm-pricing-cta p:not(.jbpm-pricing-cta__eyebrow) {
    max-width: 710px;
    margin: 0;
    color: #cdd3d6;
    font-size: 13px;
    line-height: 1.55;
}

.jbpm-pricing-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--jbpm-orange);
    color: #fff !important;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none !important;
    white-space: nowrap;
}

.jbpm-pricing-cta__button:hover,
.jbpm-pricing-cta__button:focus-visible {
    background: var(--jbpm-orange-dark);
    color: #fff !important;
}

.jbpm-pricing-footnote {
    margin: 16px 0 0;
    color: var(--jbpm-muted);
    font-size: 10px;
}

@media (max-width: 1024px) {
    .jbpm-pricing-heading__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jbpm-pricing-heading__grid > div:last-child {
        justify-self: start;
        max-width: 680px;
    }

    .jbpm-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .jbpm-pricing-section {
        padding: 54px 0;
    }

    .jbpm-pricing-shell {
        width: min(100% - 26px, 1180px);
    }

    .jbpm-pricing-heading h2 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .jbpm-pricing-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }

    .jbpm-pricing-filter {
        flex: 0 0 auto;
    }

    .jbpm-pricing-grid {
        grid-template-columns: 1fr;
    }

    .jbpm-price-card__intro {
        min-height: auto;
    }

    .jbpm-pricing-cta {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .jbpm-pricing-cta__button {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .jbpm-price-card {
        padding: 21px;
    }

    .jbpm-price-card__actions {
        grid-template-columns: 1fr;
    }

    .jbpm-price-card__category {
        padding-right: 0;
    }

    .jbpm-price-card__badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 10px;
    }
}


/* ==========================================================
   v1.3.1 — informatie-popup
   ========================================================== */

html.jbpm-modal-open,
body.jbpm-modal-open {
    overflow: hidden;
}

.jbpm-modal[hidden] {
    display: none !important;
}

.jbpm-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000;
    display: flex;
    width: 100vw;
    height: 100dvh;
    margin: 0 !important;
    transform: none !important;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .18s ease;
}

.jbpm-modal.is-open {
    opacity: 1;
}

.jbpm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(27, 31, 34, .78);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.jbpm-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(860px, calc(100vh - 48px));
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
    transform: translateY(10px) scale(.985);
    transition: transform .18s ease;
}

.jbpm-modal.is-open .jbpm-modal__dialog {
    transform: translateY(0) scale(1);
}

.jbpm-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 34px 24px;
    background: #383e42;
}

.jbpm-modal__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 9px;
    color: #ff9b1a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.jbpm-modal__eyebrow span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ff8c00;
}

.jbpm-modal__header h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.jbpm-modal__close {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    margin: -7px -8px 0 0;
    border: 1px solid #d8dcde;
    border-radius: 50%;
    background: #fff;
    color: #566066;
    font: inherit;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
}

.jbpm-modal__close:hover,
.jbpm-modal__close:focus-visible {
    border-color: #ff8c00;
    color: #ff8c00;
    outline: 0;
}

.jbpm-modal__body {
    max-height: calc(100vh - 235px);
    overflow-y: auto;
    padding: 28px 34px;
}

.jbpm-modal__lead {
    margin: 0 0 20px;
    color: #687278;
    font-size: 14px;
    line-height: 1.65;
}

.jbpm-modal__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
    padding: 16px 18px;
    border-left: 4px solid #ff8c00;
    border-radius: 8px;
    background: #fff4e4;
}

.jbpm-modal__price-row > div:first-child > span,
.jbpm-modal__price-row > div:first-child > strong,
.jbpm-modal__price-row > div:first-child > small {
    display: block;
}

.jbpm-modal__price-row > div:first-child > span {
    margin-bottom: 2px;
    color: #687278;
    font-size: 11px;
    font-weight: 800;
}

.jbpm-modal__price-row > div:first-child > strong {
    color: #383e42;
    font-size: 22px;
}

.jbpm-modal__price-row > div:first-child > small {
    margin-top: 2px;
    color: #6f787d;
    font-size: 11px;
}

.jbpm-modal__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.jbpm-modal__tags span {
    padding: 5px 8px;
    border: 1px solid #d9dddf;
    border-radius: 999px;
    background: #fff;
    color: #485157;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.jbpm-modal__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.jbpm-modal__panel {
    padding: 19px 20px;
    border: 1px solid #dce1e4;
    border-radius: 10px;
    background: #f9fafb;
}

.jbpm-modal__panel--wide {
    margin-top: 18px;
    border-left: 4px solid #ff8c00;
}

.jbpm-modal__panel h4 {
    margin: 0 0 12px;
    color: #383e42;
    font-size: 14px;
}

.jbpm-modal__panel ul {
    margin: 0 0 0 18px;
    padding: 0;
    color: #687278;
    font-size: 13px;
    line-height: 1.6;
}

.jbpm-modal__panel li {
    margin: 6px 0;
}

.jbpm-modal__content {
    color: #687278;
    font-size: 13px;
    line-height: 1.65;
}

.jbpm-modal__content > *:first-child {
    margin-top: 0;
}

.jbpm-modal__content > *:last-child {
    margin-bottom: 0;
}

.jbpm-modal__note {
    margin: 18px 0 0;
    color: #757d82;
    font-size: 11px;
}

.jbpm-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px 34px 24px;
    border-top: 1px solid #eceeef;
    background: #fff;
}

.jbpm-modal__button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border-radius: 6px;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none !important;
    cursor: pointer;
}

.jbpm-modal__button--secondary {
    border: 1px solid #cfd5d8;
    background: #fff;
    color: #4d565b;
}

.jbpm-modal__button--secondary:hover,
.jbpm-modal__button--secondary:focus-visible {
    border-color: #383e42;
    color: #383e42;
    outline: 0;
}

.jbpm-modal__button--primary {
    border: 1px solid #ff8c00;
    background: #ff8c00;
    color: #fff !important;
}

.jbpm-modal__button--primary:hover,
.jbpm-modal__button--primary:focus-visible {
    border-color: #df7900;
    background: #df7900;
    color: #fff !important;
    outline: 0;
}

@media (max-width: 720px) {
    .jbpm-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .jbpm-modal__dialog {
        max-height: calc(100vh - 24px);
        border-radius: 15px;
    }

    .jbpm-modal__header {
        padding: 22px 21px 19px;
    }

    .jbpm-modal__body {
        max-height: calc(100vh - 210px);
        padding: 22px 21px;
    }

    .jbpm-modal__price-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .jbpm-modal__tags {
        justify-content: flex-start;
    }

    .jbpm-modal__columns {
        grid-template-columns: 1fr;
    }

    .jbpm-modal__footer {
        padding: 15px 21px 20px;
    }
}

@media (max-width: 430px) {
    .jbpm-modal {
        padding: 0;
    }

    .jbpm-modal__dialog {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .jbpm-modal__body {
        max-height: calc(100vh - 205px);
    }

    .jbpm-modal__footer {
        display: grid;
        grid-template-columns: 1fr 1.35fr;
    }
}


body > .jbpm-modal {
    box-sizing: border-box;
    font-family: inherit;
}

body > .jbpm-modal *,
body > .jbpm-modal *::before,
body > .jbpm-modal *::after {
    box-sizing: border-box;
}


/* v1.4.0 - embedded layout en stappenplan */
.jbpm-pricing-section--embedded {
    padding: 0;
    background: transparent;
}

.jbpm-pricing-section--embedded > .jbpm-pricing-shell {
    width: 100%;
    max-width: none;
}

.jbpm-modal__steps {
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid #dce1e4;
    border-radius: 10px;
    background: #fff;
}

.jbpm-modal__steps h4 {
    margin: 0 0 14px;
    color: #383e42;
    font-size: 15px;
}

.jbpm-modal__steps ol {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jbpm-modal__steps li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f5f6f7;
}

.jbpm-modal__steps li > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff8c00;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.jbpm-modal__steps li > p {
    margin: 5px 0 0;
    color: #4d565b;
    font-size: 13px;
    line-height: 1.45;
}
