/* Buchungsprozess fuer die eigenstaendige Preisversion. */
.pz-page .bp {
    --bp-ink: #16324a;
    --bp-muted: #647789;
    --bp-line: #dce6ee;
    --bp-soft: #f2f7fa;
    --bp-brand: #0a2540;
    --bp-brand-dark: #031e35;
    --bp-accent: #d97606;
    padding: 78px 0 96px;
    scroll-margin-top: 76px;
    background:
        radial-gradient(circle at 8% 8%, rgba(10, 37, 64, 0.09), transparent 30%),
        radial-gradient(circle at 94% 88%, rgba(217, 118, 6, 0.08), transparent 28%),
        #f7fafc;
}

.pz-page .bp[hidden],
.pz-page .bp [hidden] {
    display: none !important;
}

.pz-page .bp-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.pz-page .bp-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.pz-page .bp-wrap {
    position: relative;
}

.pz-page .bp-close {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid var(--bp-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--bp-muted);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
}

.pz-page .bp-close:hover {
    border-color: #b9cbd8;
    color: var(--bp-ink);
}

.pz-page .bp-head {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 0 110px;
    text-align: center;
}

.pz-page .bp-head .eyebrow {
    justify-content: center;
}

.pz-page .bp-title {
    margin: 10px 0 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--bp-ink);
}

.pz-page .bp-intro {
    margin: 15px auto 0;
    color: var(--bp-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.pz-page .bp-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin: 0 auto 30px;
    padding: 0;
    list-style: none;
}

.pz-page .bp-progress li {
    position: relative;
    color: #8797a5;
    font-size: 0.79rem;
    font-weight: 750;
    text-align: center;
}

.pz-page .bp-progress-button {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: center;
    cursor: pointer;
}

.pz-page .bp-progress-button:not(:disabled):hover .bp-step-dot {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(10, 37, 64, 0.18);
}

.pz-page .bp-progress-button:focus-visible {
    outline: 3px solid rgba(10, 37, 64, 0.2);
    outline-offset: 5px;
    border-radius: 10px;
}

.pz-page .bp-progress-button:disabled {
    cursor: default;
}

.pz-page .bp-progress li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 17px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px;
    background: var(--bp-line);
}

.pz-page .bp-step-dot {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--bp-line);
    border-radius: 50%;
    background: #fff;
    color: #8293a1;
    font-size: 0.82rem;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.pz-page .bp-progress li.is-active,
.pz-page .bp-progress li.is-done,
.pz-page .bp-progress li.is-reached {
    color: var(--bp-ink);
}

.pz-page .bp-progress li.is-reached .bp-step-dot {
    border-color: var(--bp-brand);
}

.pz-page .bp-progress li.is-active .bp-step-dot,
.pz-page .bp-progress li.is-done .bp-step-dot {
    border-color: var(--bp-brand);
    background: var(--bp-brand);
    color: #fff;
}

.pz-page .bp-progress li.is-done:not(:last-child)::after {
    background: var(--bp-brand);
}

.pz-page .bp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.pz-page .bp-panel,
.pz-page .bp-summary {
    border: 1px solid var(--bp-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(23, 50, 73, 0.08);
}

.pz-page .bp-panel {
    min-width: 0;
    padding: clamp(24px, 4vw, 42px);
}

.pz-page .bp-summary {
    position: sticky;
    top: 92px;
    overflow: hidden;
}

.pz-page .bp-summary-head {
    padding: 22px 24px;
    border-bottom: 1px solid var(--bp-line);
    background: linear-gradient(135deg, #0a2540, #164f78);
    color: #fff;
}

.pz-page .bp-summary-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pz-page .bp-summary-title {
    margin: 5px 0 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.2rem;
}

.pz-page .bp-summary-body {
    padding: 22px 24px 24px;
}

.pz-page .bp-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f5;
    color: var(--bp-muted);
    font-size: 0.88rem;
}

.pz-page .bp-summary-row strong {
    color: var(--bp-ink);
    text-align: right;
}

.pz-page .bp-price-block {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 2px solid var(--bp-line);
}

.pz-page .bp-price-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 0.84rem;
}

.pz-page .bp-price-line strong {
    color: var(--bp-ink);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.24rem;
}

.pz-page .bp-no-payment {
    display: flex;
    gap: 9px;
    margin: 18px 0 0;
    padding: 12px;
    border-radius: 13px;
    background: #edf3f8;
    color: #405f78;
    font-size: 0.78rem;
    line-height: 1.48;
}

.pz-page .bp-no-payment svg {
    flex: 0 0 17px;
    width: 17px;
    margin-top: 1px;
}

.pz-page .bp-step-head {
    margin-bottom: 26px;
}

.pz-page .bp-step-label {
    margin: 0 0 6px;
    color: var(--bp-accent);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pz-page .bp-step-head h3 {
    margin: 0;
    color: var(--bp-ink);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.15;
}

.pz-page .bp-step-head h3:focus {
    outline: none;
}

.pz-page .bp-step-head p:last-child {
    margin: 9px 0 0;
    color: var(--bp-muted);
    line-height: 1.62;
}

.pz-page .bp-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pz-page .bp-choice,
.pz-page .bp-provider-choice {
    position: relative;
    display: block;
}

.pz-page .bp-choice input,
.pz-page .bp-provider-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pz-page .bp-choice-card,
.pz-page .bp-provider-card {
    display: flex;
    height: 100%;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pz-page .bp-choice-card {
    min-height: 222px;
    flex-direction: column;
    padding: 22px 20px;
    border: 1.5px solid var(--bp-line);
    border-radius: 18px;
    background: #fff;
}

.pz-page .bp-choice-card:hover,
.pz-page .bp-provider-card:hover {
    transform: translateY(-2px);
    border-color: #829fba;
    box-shadow: 0 13px 28px rgba(22, 50, 74, 0.08);
}

.pz-page .bp-choice input:focus-visible + .bp-choice-card,
.pz-page .bp-provider-choice input:focus-visible + .bp-provider-card {
    outline: 3px solid rgba(10, 37, 64, 0.2);
    outline-offset: 2px;
}

.pz-page .bp-choice input:checked + .bp-choice-card,
.pz-page .bp-provider-choice input:checked + .bp-provider-card {
    border-color: var(--bp-brand);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1), 0 15px 34px rgba(22, 50, 74, 0.1);
}

.pz-page .bp-choice input:checked + .bp-choice-card::after,
.pz-page .bp-provider-choice input:checked + .bp-provider-card::after {
    content: '✓';
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bp-brand);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 900;
}

.pz-page .bp-plan-badge {
    align-self: flex-start;
    min-height: 22px;
    margin: -4px 0 11px;
    color: var(--bp-accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
}

.pz-page .bp-plan-name {
    margin: 0;
    color: var(--bp-ink);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.12rem;
}

.pz-page .bp-plan-price {
    margin: 7px 0 0;
    color: var(--bp-ink);
    font-size: 1.24rem;
    font-weight: 800;
}

.pz-page .bp-plan-price small {
    color: var(--bp-muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.pz-page .bp-plan-desc {
    margin: 16px 0 0;
    color: var(--bp-muted);
    font-size: 0.83rem;
    line-height: 1.55;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
}

.pz-page .bp-provider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pz-page .bp-provider-card {
    align-items: flex-start;
    gap: 14px;
    min-height: 112px;
    padding: 22px;
    border: 1.5px solid var(--bp-line);
    border-radius: 18px;
    background: #fff;
}

.pz-page .bp-provider-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #edf3f8;
    color: var(--bp-brand);
}

.pz-page .bp-provider-icon svg {
    width: 22px;
}

.pz-page .bp-provider-card strong {
    display: block;
    margin-top: 1px;
    color: var(--bp-ink);
}

.pz-page .bp-provider-card small {
    display: block;
    margin-top: 5px;
    color: var(--bp-muted);
    line-height: 1.45;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: pretty;
}

.pz-page .bp-count-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid var(--bp-line);
    border-radius: 16px;
    background: var(--bp-soft);
}

.pz-page .bp-count-box label {
    color: var(--bp-ink);
    font-weight: 750;
}

.pz-page .bp-count-box label small {
    display: block;
    margin-top: 3px;
    color: var(--bp-muted);
    font-weight: 500;
}

.pz-page .bp-counter {
    display: grid;
    grid-template-columns: 38px 48px 38px;
    align-items: center;
    border: 1px solid #bfd0db;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.pz-page .bp-counter button {
    height: 40px;
    border: 0;
    background: #fff;
    color: var(--bp-brand);
    font: inherit;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
}

.pz-page .bp-counter button:hover {
    background: #edf3f8;
}

.pz-page .bp-counter input {
    width: 100%;
    height: 40px;
    border: 0;
    border-inline: 1px solid #d6e2e9;
    background: #fff;
    color: var(--bp-ink);
    font: inherit;
    font-weight: 800;
    text-align: center;
    appearance: textfield;
}

.pz-page .bp-services {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid var(--bp-line);
}

.pz-page .bp-services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.pz-page .bp-services-head h4 {
    margin: 0;
    color: var(--bp-ink);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.08rem;
}

.pz-page .bp-services-head span {
    color: var(--bp-muted);
    font-size: 0.75rem;
}

.pz-page .bp-service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid var(--bp-line);
    border-radius: 16px;
    overflow: hidden;
}

.pz-page .bp-service-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f5;
}

.pz-page .bp-service-item:last-child {
    border-bottom: 0;
}

.pz-page .bp-service-check {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #edf3f8;
    color: var(--bp-brand);
    font-size: 0.72rem;
    font-weight: 900;
}

.pz-page .bp-service-copy strong {
    display: block;
    color: var(--bp-ink);
    font-size: 0.86rem;
}

.pz-page .bp-service-copy small {
    display: block;
    margin-top: 3px;
    color: var(--bp-muted);
    font-size: 0.74rem;
    line-height: 1.42;
}

.pz-page .bp-service-qty {
    max-width: 150px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #edf3f7;
    color: #456174;
    font-size: 0.72rem;
    font-weight: 750;
    text-align: center;
}

.pz-page .bp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pz-page .bp-field {
    display: grid;
    gap: 7px;
}

.pz-page .bp-field--full {
    grid-column: 1 / -1;
}

.pz-page .bp-field label,
.pz-page .bp-fieldset legend {
    color: var(--bp-ink);
    font-size: 0.82rem;
    font-weight: 750;
}

.pz-page .bp-field label span {
    color: var(--bp-accent);
}

.pz-page .bp-field input,
.pz-page .bp-field select,
.pz-page .bp-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cbd9e2;
    border-radius: 11px;
    background: #fff;
    color: var(--bp-ink);
    font: inherit;
    font-size: 0.9rem;
    outline: 0;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.pz-page .bp-field textarea {
    min-height: 100px;
    resize: vertical;
}

.pz-page .bp-field input:focus,
.pz-page .bp-field select:focus,
.pz-page .bp-field textarea:focus {
    border-color: var(--bp-brand);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}

.pz-page .bp-fieldset {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    padding: 18px;
    border: 1px solid var(--bp-line);
    border-radius: 14px;
}

.pz-page .bp-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--bp-muted);
    font-size: 0.82rem;
    line-height: 1.52;
}

.pz-page .bp-check + .bp-check {
    margin-top: 13px;
}

.pz-page .bp-check input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--bp-brand);
}

.pz-page .bp-check a {
    color: var(--bp-brand-dark);
    font-weight: 700;
}

.pz-page .bp-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--bp-line);
}

.pz-page .bp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.pz-page .bp-button:hover {
    transform: translateY(-1px);
}

.pz-page .bp-button--primary {
    margin-left: auto;
    background: var(--bp-brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(10, 37, 64, 0.2);
}

.pz-page .bp-button--primary:hover {
    background: var(--bp-brand-dark);
}

.pz-page .bp-button--secondary {
    border: 1px solid var(--bp-line);
    background: #fff;
    color: var(--bp-ink);
}

.pz-page .bp-form-error {
    margin: 14px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #f2cf8a;
    border-left: 4px solid #d97606;
    background: #fff8e8;
    color: #8a5200;
    font-size: 0.82rem;
}

.pz-page .bp-success {
    padding: 28px 4px 8px;
    text-align: center;
}

.pz-page .bp-success-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #edf3f8;
    color: var(--bp-brand);
    font-size: 1.4rem;
    font-weight: 900;
}

.pz-page .bp-success h3 {
    margin: 0;
    color: var(--bp-ink);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.7rem;
}

.pz-page .bp-success p {
    max-width: 540px;
    margin: 12px auto 0;
    color: var(--bp-muted);
    line-height: 1.65;
}

.pz-page .bp-success .bp-button {
    margin-top: 24px;
}

@media (max-width: 1180px) {
    .pz-page .bp-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .pz-page .bp-summary {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
    }

    .pz-page .bp-summary-head {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-bottom: 0;
    }
}

@media (max-width: 920px) {
    .pz-page .bp-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .pz-page .bp-summary {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
    }

    .pz-page .bp-summary-head {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-bottom: 0;
    }

    .pz-page .bp-choice-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pz-page .bp-choice-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .pz-page .bp {
        padding: 56px 0 70px;
    }

    .pz-page .bp-close {
        position: static;
        margin: 0 0 20px auto;
    }

    .pz-page .bp-head {
        padding: 0;
    }

    .pz-page .bp-progress li {
        font-size: 0.69rem;
    }

    .pz-page .bp-progress li:not(:last-child)::after {
        left: calc(50% + 18px);
        width: calc(100% - 36px);
    }

    .pz-page .bp-step-dot {
        width: 32px;
        height: 32px;
    }

    .pz-page .bp-panel {
        padding: 23px 18px;
        border-radius: 18px;
    }

    .pz-page .bp-provider-grid,
    .pz-page .bp-form-grid,
    .pz-page .bp-summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .pz-page .bp-count-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .pz-page .bp-service-item {
        grid-template-columns: 26px minmax(0, 1fr);
    }

    .pz-page .bp-service-qty {
        grid-column: 2;
        justify-self: start;
    }

    .pz-page .bp-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .pz-page .bp-button,
    .pz-page .bp-button--primary {
        width: 100%;
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pz-page .bp * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
