:root {
    --primary: #0b2f59;
    --primary-hover: #174b86;
    --accent: #b32025;
    --background: #f5f6f8;
    --surface: #ffffff;
    --text: #1d2938;
    --muted: #687586;
    --border: #dfe4ea;
    --border-dark: #cbd3dc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.55;
}

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

img,
svg {
    display: block;
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin-inline: auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        ),
        url("../img/background.png");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(0,0,0,.06);

    transition:all .25s ease;
}

.header-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.main-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.main-logo img {
    width: 310px;
    max-height: 74px;
    object-fit: contain;
    object-position: left center;
}

.header-divider {
    width: 1px;
    height: 54px;
    margin-left: auto;
    background: var(--border);
}

.premium-brand {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.premium-brand img {
    width: 200px;
    height: 74px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* MAIN */

.main-content {
    flex: 1;
}

.booking-section {
    padding: 48px 0 70px;
}

.page-heading {
    margin-bottom: 44px;
}

.page-heading h1 {
    color: var(--primary);
    font-size: clamp(31px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.page-heading p {
    max-width: 680px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 17px;
}

/* KURSGRUPPEN */

.course-group + .course-group {
    margin-top: 52px;
}

.group-heading {
    margin-bottom: 15px;
}

.group-heading h2 {
    color: var(--primary);
    font-size: 22px;
}

.group-heading p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

/* KURSLISTE */

.course-list {
    border-top: 1px solid var(--border-dark);
    background: var(--surface);
}

.course-row {
    min-height: 122px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 25px 6px;
    border-bottom: 1px solid var(--border);
}

.course-information {
    min-width: 0;
}

.course-information h3 {
    color: var(--primary);
    font-size: 20px;
    line-height: 1.25;
}

.course-information p {
    max-width: 700px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 15px;
}

.action-button {
    min-width: 175px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    gap: 14px;
    padding: 0 15px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    color: #ffffff;
    background: var(--primary);
    font-size: 14px;
    font-weight: 650;
    transition:
        color 150ms ease,
        border-color 150ms ease,
        background 150ms ease;
}

.action-button:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.action-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-button-secondary {
    color: var(--primary);
    background: transparent;
}

.action-button-secondary:hover {
    color: #ffffff;
}

/* FOOTER */

.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-inner {
    min-height: 118px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 34px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: var(--primary);
}

.footer-brand span,
.footer-contact,
.footer-links,
.footer-copyright {
    color: var(--muted);
    font-size: 13px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    grid-column: 1 / -1;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

/* MOBILE */

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1100px);
    }

    .header-inner {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .main-logo img {
        width: 260px;
        max-height: 64px;
    }

    .header-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .premium-brand img {
        width: 165px;
        height: 62px;
    }

    .booking-section {
        padding: 36px 0 50px;
    }

    .page-heading {
        margin-bottom: 34px;
    }

    .course-group + .course-group {
        margin-top: 42px;
    }

    .course-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 22px 0;
    }

    .action-button {
        width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-copyright {
        grid-column: auto;
    }
}
/* ÖFFENTLICHE TERMINÜBERSICHT */

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.back-link:hover {
    color: var(--accent);
}

.public-date-list {
    border-top: 1px solid var(--border-dark);
    background: var(--surface);
}

.public-date-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 220px;
    align-items: center;
    gap: 25px;
    min-height: 150px;
    padding: 25px 10px;
    border-bottom: 1px solid var(--border);
}

.date-column {
    width: 64px;
    height: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background: #ffffff;
}

.date-day {
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.date-information h2 {
    color: var(--primary);
    font-size: 21px;
}

.date-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.date-booking {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

.date-booking strong {
    color: var(--primary);
    font-size: 17px;
}

.date-booking > span:not(.action-button) {
    color: var(--muted);
    font-size: 13px;
}

.date-booking .action-button {
    margin-top: 7px;
}

.action-disabled {
    color: var(--muted);
    border-color: var(--border);
    background: #edf0f3;
    cursor: not-allowed;
}

.public-empty-state {
    padding: 45px 28px;
    border: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
}

.public-empty-state strong {
    color: var(--primary);
    font-size: 18px;
}

.public-empty-state p {
    margin-top: 8px;
    color: var(--muted);
}

@media (max-width: 760px) {
    .public-date-row {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: flex-start;
    }

    .date-booking {
        grid-column: 1 / -1;
        align-items: stretch;
        padding-left: 89px;
    }

    .date-booking .action-button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .public-date-row {
        grid-template-columns: 1fr;
    }

    .date-booking {
        grid-column: auto;
        padding-left: 0;
    }
}
/* BUCHUNGSFORMULAR */

.booking-form-container,
.confirmation-container {
    max-width: 920px;
}

.selected-course-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    background: var(--border);
}

.selected-course-summary > div {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    background: var(--surface);
}

.selected-course-summary span {
    color: var(--muted);
    font-size: 12px;
}

.selected-course-summary strong {
    margin-top: 5px;
    color: var(--primary);
    font-size: 14px;
}

.public-alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border: 1px solid;
    border-radius: 8px;
}

.public-alert ul {
    margin-top: 8px;
    padding-left: 20px;
}

.public-alert-error {
    color: #8f2025;
    border-color: #ecc4c6;
    background: #fff5f5;
}

.public-booking-form {
    display: grid;
    gap: 20px;
}

.public-form-section {
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.public-form-section h2 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 19px;
}

.public-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.public-form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

.public-form-field span {
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
}

.public-form-field input,
.public-form-field select,
.public-form-field textarea {
    width: 100%;
    border: 1px solid var(--border-dark);
    border-radius: 7px;
    outline: none;
    background: #ffffff;
}

.public-form-field input,
.public-form-field select {
    height: 44px;
    padding: 0 12px;
}

.public-form-field textarea {
    min-height: 110px;
    padding: 11px 12px;
    resize: vertical;
}

.public-form-field input:focus,
.public-form-field select:focus,
.public-form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 47, 89, 0.07);
}

.billing-company-fields {
    display: none;
}

.billing-company-fields.visible {
    display: block;
}

.public-checkbox-list {
    display: grid;
    gap: 13px;
}

.public-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted);
    font-size: 13px;
}

.public-checkbox input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.public-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.public-secondary-button,
.public-submit-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    font-weight: 650;
}

.public-secondary-button {
    color: var(--primary);
    border: 1px solid var(--border-dark);
    background: var(--surface);
}

.public-submit-button {
    border: 0;
    cursor: pointer;
}

.confirmation-container {
    padding: 48px;
    border: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
}

.confirmation-symbol {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #ffffff;
    background: #24734a;
    font-size: 32px;
    font-weight: 700;
}

.confirmation-container h1 {
    color: var(--primary);
    font-size: 34px;
}

.confirmation-lead {
    margin-top: 8px;
    color: var(--muted);
}

.confirmation-number {
    margin-top: 22px;
    padding: 14px;
    background: #f4f6f8;
}

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    text-align: left;
}

.confirmation-details > div {
    padding: 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.confirmation-details dt {
    color: var(--muted);
    font-size: 12px;
}

.confirmation-details dd {
    margin-top: 4px;
    color: var(--primary);
    font-weight: 650;
}

.confirmation-button {
    width: fit-content;
    margin: 28px auto 0;
}

@media (max-width: 760px) {
    .selected-course-summary {
        grid-template-columns: 1fr 1fr;
    }

    .public-form-grid {
        grid-template-columns: 1fr;
    }

    .public-form-field-full {
        grid-column: auto;
    }

    .public-form-actions {
        flex-direction: column-reverse;
    }

    .public-form-actions a,
    .public-form-actions button {
        width: 100%;
    }

    .confirmation-details {
        grid-template-columns: 1fr;
    }
}
/* BUCHUNGSASSISTENT */

.booking-progress {
    display: flex;
    align-items: flex-start;
    margin: 34px 0 28px;
}

.progress-step {
    width: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 0;
    color: var(--muted);
    background: transparent;
    cursor: default;
}

.progress-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    color: var(--muted);
    background: var(--surface);
    font-weight: 700;
}

.progress-label {
    font-size: 12px;
    font-weight: 650;
    text-align: center;
}

.progress-step.active .progress-number {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
}

.progress-step.active .progress-label {
    color: var(--primary);
}

.progress-step.completed {
    cursor: pointer;
}

.progress-step.completed .progress-number {
    color: #ffffff;
    border-color: #28754d;
    background: #28754d;
}

.progress-step.completed .progress-number {
    font-size: 0;
}

.progress-step.completed .progress-number::after {
    content: "✓";
    font-size: 16px;
}

.progress-line {
    height: 2px;
    flex: 1;
    margin-top: 17px;
    background: var(--border-dark);
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
}

.wizard-heading {
    margin-bottom: 23px;
}

.wizard-heading > span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wizard-heading h2 {
    margin-top: 5px;
    margin-bottom: 0;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 17px;
}

.wizard-next,
.wizard-back,
.voucher-check-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    font-weight: 650;
    cursor: pointer;
}

.wizard-next,
.voucher-check-button {
    color: #ffffff;
    border: 1px solid var(--primary);
    background: var(--primary);
}

.wizard-next:hover,
.voucher-check-button:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.wizard-back {
    color: var(--primary);
    border: 1px solid var(--border-dark);
    background: var(--surface);
}

.public-form-field small {
    color: var(--muted);
    font-size: 12px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.payment-option {
    min-height: 118px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background: var(--surface);
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--primary);
}

.payment-option:has(input:checked) {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 47, 89, 0.08);
}

.payment-option input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
}

.payment-option-content {
    display: flex;
    flex-direction: column;
}

.payment-option-content strong {
    color: var(--primary);
}

.payment-option-content small {
    margin-top: 6px;
    color: var(--muted);
}

.remarks-field {
    margin-top: 22px;
}

.voucher-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
}

.voucher-result {
    margin-top: 15px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 7px;
    font-size: 14px;
}

.voucher-result-success {
    color: #246840;
    border-color: #b8ddc7;
    background: #f1faf5;
}

.voucher-result-error {
    color: #8f2025;
    border-color: #ecc4c6;
    background: #fff5f5;
}

.price-summary {
    margin-top: 24px;
    border: 1px solid var(--border);
}

.price-summary > div {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
}

.price-summary > div:last-child {
    border-bottom: 0;
}

.price-summary span {
    color: var(--muted);
}

.price-summary strong {
    color: var(--primary);
}

.price-summary .price-total {
    background: #f5f7f9;
}

.price-summary .price-total span,
.price-summary .price-total strong {
    color: var(--primary);
    font-size: 17px;
    font-weight: 750;
}

.public-checkbox-list {
    margin-top: 24px;
}

.ticket-number {
    display: inline-flex;
    margin: 3px 5px 3px 0;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .booking-progress {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .progress-step {
        width: 100px;
        flex: 0 0 100px;
    }

    .progress-line {
        min-width: 25px;
    }

    .progress-label {
        font-size: 10px;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .voucher-entry {
        grid-template-columns: 1fr;
    }

    .voucher-check-button {
        width: 100%;
    }

    .wizard-actions {
        flex-direction: column-reverse;
    }

    .wizard-actions button {
        width: 100%;
    }
}
/* ÖFFENTLICHER DOWNLOADBEREICH */

.public-header-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
}

.public-header-navigation a:hover,
.public-header-navigation a.active {
    color: var(--primary);
}

.public-download-group + .public-download-group {
    margin-top: 42px;
}

.public-download-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 13px;
}

.public-download-heading h2 {
    color: var(--primary);
    font-size: 22px;
}

.public-download-heading span {
    color: var(--muted);
    font-size: 13px;
}

.public-download-list {
    border-top: 1px solid var(--border-dark);
    background: var(--surface);
}

.public-download-row {
    min-height: 118px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 20px 8px;
    border-bottom: 1px solid var(--border);
}

.public-file-type {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    background: #ffffff;
    font-size: 11px;
    font-weight: 750;
}

.public-download-information h3 {
    color: var(--primary);
    font-size: 18px;
}

.public-download-information p {
    margin-top: 5px;
    color: var(--text);
    font-size: 14px;
}

.public-download-information span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.public-download-button {
    min-width: 150px;
}

@media (max-width: 760px) {
    .public-header-navigation {
        width: 100%;
        order: 3;
        margin-left: 0;
    }

    .public-download-row {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .public-download-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}
/* ÖFFENTLICHE HEADER-NAVIGATION */

.public-header-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 18px;
}

.public-header-navigation a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
}

.public-header-navigation a:hover,
.public-header-navigation a.active {
    color: var(--primary);
}

@media (max-width: 760px) {
    .public-header-navigation {
        width: 100%;
        order: 3;
        margin: 12px 0 0;
    }
}
/* EINHEITLICHE ÖFFENTLICHE NAVIGATION */

.header-inner {
    display: flex;
    align-items: center;
}

.public-header-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    margin-right: 24px;
}

.public-header-navigation a {
    position: relative;
    padding: 8px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
}

.public-header-navigation a:hover,
.public-header-navigation a.active {
    color: var(--primary);
}

.public-header-navigation a.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--primary);
}

@media (max-width: 760px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .public-header-navigation {
        width: 100%;
        order: 3;
        margin: 14px 0 0;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }
}
/* ÖFFENTLICHE HAUPTNAVIGATION */

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

.public-header-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.public-header-navigation a {
    position: relative;
    padding: 10px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.public-header-navigation a:hover,
.public-header-navigation a.active {
    color: var(--primary);
}

.public-header-navigation a.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.header-divider {
    margin-left: 10px;
}

@media (max-width: 760px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .public-header-navigation {
        width: 100%;
        order: 3;
        margin-left: 0;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }
}
/* STARTSEITEN-NAVIGATION */

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

.public-header-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    margin-right: 20px;
}

.public-header-navigation a {
    position: relative;
    padding: 10px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.public-header-navigation a:hover,
.public-header-navigation a.active {
    color: var(--primary);
}

.public-header-navigation a.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

@media (max-width: 760px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .public-header-navigation {
        width: 100%;
        order: 3;
        margin: 12px 0 0;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }
}
/* PDF-VORSCHAU IM DOWNLOADBEREICH */

.public-download-row {
    grid-template-columns: 110px minmax(0, 1fr) auto;
}

.public-file-preview {
    width: 96px;
    height: 128px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-dark);
    border-radius: 7px;
    background: #ffffff;
}

.public-file-preview iframe {
    width: 300px;
    height: 400px;
    border: 0;
    pointer-events: none;
    transform: scale(0.32);
    transform-origin: top left;
}

.public-file-preview .public-file-type {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
}

@media (max-width: 760px) {
    .public-download-row {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    .public-file-preview {
        width: 76px;
        height: 102px;
    }

    .public-file-preview iframe {
        transform: scale(0.255);
    }
}
/* DOWNLOAD-KACHELN */

.public-download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.public-download-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.public-download-preview {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
    background: #f3f5f7;
}

.public-download-preview iframe {
    width: 800px;
    height: 1000px;
    border: 0;
    pointer-events: none;
    transform: scale(0.41);
    transform-origin: top left;
}

.public-file-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}

.public-download-card-body {
    min-height: 150px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
}

.public-download-card-body h3 {
    color: var(--primary);
    font-size: 17px;
    line-height: 1.3;
}

.public-download-card-body p {
    margin-top: 7px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
}

.public-download-card-body span {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
}

.public-download-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    background: #ffffff;
}

.public-download-icon:hover {
    color: #ffffff;
    background: var(--primary);
}

.public-download-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1050px) {
    .public-download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .public-download-grid {
        grid-template-columns: 1fr;
    }

    .public-download-card-body {
        min-height: auto;
    }
}
/* PDF-VORSCHAU OHNE RECHTEN STREIFEN */

.public-download-preview {
    overflow: hidden;
}

.public-download-preview iframe {
    width: 840px;
    height: 1040px;

    margin-right: -40px;

    transform: scale(0.43);
    transform-origin: top left;
}

/* ============================================
   DOWNLOAD-KARTEN V2
============================================ */

.public-download-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;

    border:1px solid #d9e2ec;
    border-radius:14px;

    background:#fff;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.public-download-card:hover{
    transform:translateY(-4px);

    border-color:#0d3b73;

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);
}

.public-download-card>a{
    color:inherit;
    text-decoration:none;
}

.public-download-preview{

    height:430px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:14px;

    background:#f5f7fa;

    border-bottom:1px solid #d9e2ec;
}

.public-download-cover{

    width:100%;
    height:100%;

    object-fit:contain;

    display:block;
}

.public-download-card-body{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:18px;

    padding:22px;
}

.public-download-card-body h3{

    margin:0;

    color:#153b6d;

    font-size:24px;

    font-weight:700;
}

.public-download-card-body span{

    display:block;

    margin-top:10px;

    color:#7b8794;

    font-size:14px;
}

.public-download-icon{

    width:54px;
    height:54px;

    flex:0 0 54px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid #153b6d;

    transition:.18s;

    background:#fff;
}

.public-download-card:hover
.public-download-icon{

    background:#153b6d;

    color:#fff;
}

.public-download-icon svg{

    width:26px;
    height:26px;
}

/* FINALE BUCHUNGSBESTÄTIGUNG */

.confirmation-page {
    max-width: 1080px;
}

.confirmation-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.confirmation-symbol {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #1f7a4d;
}

.confirmation-symbol svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confirmation-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #1f7a4d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.confirmation-hero h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(30px, 4vw, 44px);
}

.confirmation-hero p {
    max-width: 680px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.confirmation-reference {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--border);
}

.confirmation-reference > div {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px;
    background: #ffffff;
}

.confirmation-reference span {
    color: var(--muted);
    font-size: 12px;
}

.confirmation-reference > div > strong {
    margin-top: 8px;
    color: var(--primary);
    font-size: 22px;
}

.confirmation-ticket-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 9px;
}

.confirmation-ticket-list .ticket-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 6px 12px;
    border: 2px solid var(--primary);
    border-radius: 999px;
    color: var(--primary);
    background: #ffffff;
    font-size: 14px;
}

.confirmation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 24px;
}

.confirmation-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
}

.confirmation-card-heading {
    padding: 21px 24px;
    border-bottom: 1px solid var(--border);
}

.confirmation-card-heading span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.confirmation-card-heading h2 {
    margin: 5px 0 0;
    color: var(--primary);
    font-size: 19px;
}

.confirmation-details {
    margin: 0;
}

.confirmation-details > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 15px 24px;
    border-bottom: 1px solid var(--border);
}

.confirmation-details > div:last-child {
    border-bottom: 0;
}

.confirmation-details dt {
    color: var(--muted);
    font-size: 13px;
}

.confirmation-details dd {
    margin: 0;
    color: var(--text);
    font-weight: 650;
    text-align: right;
}

.confirmation-price {
    color: var(--primary) !important;
    font-size: 21px;
}

.confirmation-notice {
    margin: 18px 24px 24px;
    padding: 14px;
    border-left: 3px solid var(--primary);
    color: var(--muted);
    background: #f5f7fa;
    font-size: 12px;
    line-height: 1.5;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}

.confirmation-actions .action-button {
    min-height: 48px;
}

.confirmation-actions svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confirmation-support {
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f8fafc;
}

.confirmation-support strong {
    color: var(--primary);
}

.confirmation-support p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.confirmation-support a {
    color: var(--primary);
    font-weight: 650;
}

@media (max-width: 820px) {
    .confirmation-layout,
    .confirmation-reference {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .confirmation-hero {
        align-items: flex-start;
    }

    .confirmation-symbol {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .confirmation-symbol svg {
        width: 27px;
        height: 27px;
    }

    .confirmation-details > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .confirmation-details dd {
        text-align: left;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-actions .action-button {
        width: 100%;
    }
}
/* SCHLICHTE BUCHUNGSBESTÄTIGUNG */

.simple-confirmation {
    max-width: 900px;
}

.simple-confirmation-head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}

.simple-confirmation-head h1 {
    margin: 0;
    color: var(--primary);
}

.simple-confirmation-head p {
    margin: 7px 0 0;
    color: var(--muted);
}

.simple-confirmation-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
}

.simple-confirmation-reference {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--border);
}

.simple-confirmation-reference > div {
    padding: 22px 24px;
}

.simple-confirmation-reference > div + div {
    border-left: 1px solid var(--border);
}

.simple-confirmation-reference span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.simple-confirmation-reference strong {
    display: block;
    margin-top: 8px;
    color: var(--primary);
    font-size: 21px;
}

.simple-confirmation-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.simple-confirmation-details > div {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.simple-confirmation-details > div:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.simple-confirmation-details dt {
    color: var(--muted);
    font-size: 12px;
}

.simple-confirmation-details dd {
    margin: 7px 0 0;
    color: var(--text);
    font-weight: 700;
}

.simple-confirmation-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

@media (max-width: 680px) {
    .simple-confirmation-head {
        align-items: flex-start;
    }

    .simple-confirmation-reference,
    .simple-confirmation-details {
        grid-template-columns: 1fr;
    }

    .simple-confirmation-reference > div + div,
    .simple-confirmation-details > div:nth-child(odd) {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--border);
    }

    .simple-confirmation-actions {
        flex-direction: column;
    }

    .simple-confirmation-actions a {
        width: 100%;
    }
}
/* BUCHUNGSASSISTENT SCHRITT 5 */

.booking-confirmation-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.confirmation-summary-group {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #ffffff;
}

.confirmation-summary-group h3 {
    margin: 0;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-size: 16px;
}

.confirmation-summary-group dl {
    margin: 0;
}

.confirmation-summary-group dl > div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
}

.confirmation-summary-group dl > div:last-child {
    border-bottom: 0;
}

.confirmation-summary-group dt {
    color: var(--muted);
    font-size: 12px;
}

.confirmation-summary-group dd {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.confirmation-summary-total {
    background: #f5f7fa;
}

.confirmation-summary-total dd {
    color: var(--primary);
    font-size: 18px;
}

.booking-final-notice {
    margin-top: 20px;
    padding: 15px 17px;
    border-left: 3px solid var(--primary);
    background: #f5f7fa;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .booking-progress {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
    }

    .progress-step {
        min-width: 105px;
    }

    .progress-line {
        min-width: 30px;
    }
}

@media (max-width: 720px) {
    .booking-confirmation-summary {
        grid-template-columns: 1fr;
    }

    .confirmation-summary-group dl > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .confirmation-summary-group dd {
        text-align: left;
    }
}
/* SCHLICHTE ERFOLGSSEITE */

.final-success-page {
    max-width: 980px;
}

.final-success-box {
    min-height: 260px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 42px 0;
}

.final-success-icon {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #1f7a4d;
}

.final-success-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.final-success-content {
    max-width: 680px;
}

.final-success-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #1f7a4d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.final-success-content h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(34px, 5vw, 48px);
}

.final-success-content p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .final-success-box {
        align-items: flex-start;
        gap: 20px;
        min-height: 220px;
        padding: 30px 0;
    }

    .final-success-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .final-success-icon svg {
        width: 28px;
        height: 28px;
    }
}
/* BUCHUNGSASSISTENT SCHRITT 6 */

.booking-success-panel {
    padding: 0;
}

.booking-success-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 48px 30px;
}

.booking-success-icon {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #1f8757;
}

.booking-success-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-success-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #148044;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.booking-success-content h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(32px, 4vw, 46px);
}

.booking-success-content p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
}

body[data-booking-success="1"] .wizard-actions {
    display: none;
}

body[data-booking-success="1"] .booking-form-container {
    max-width: 1060px;
}

@media (max-width: 640px) {
    .booking-success-content {
        min-height: 240px;
        align-items: flex-start;
        gap: 20px;
        padding: 34px 20px;
    }

    .booking-success-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .booking-success-icon svg {
        width: 28px;
        height: 28px;
    }
}
/* ===========================
   Öffentliche Kursansicht
=========================== */

.public-course-number{
    margin-top:6px;
    margin-bottom:10px;
    font-size:13px;
    color:#66768a;
    font-weight:500;
}

.public-course-number strong{
    color:#0d376d;
    font-weight:700;
}

.course-location{
    color:#4b5d73;
    font-weight:500;
}

/* FINAL COURSE OVERVIEW START */

.final-course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.final-course-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.final-course-card-content {
    min-width: 0;
}

.final-course-label {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.final-course-card h3,
.final-request-row h3 {
    margin-top: 8px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.25;
}

.final-course-card p,
.final-request-row p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.final-course-facts {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.final-course-facts li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 13px;
}



.final-course-button {
    width: fit-content;
    min-height: 44px;
    height: 44px;
    align-self: flex-start;
}

.final-request-list {
    border-top: 1px solid var(--border-dark);
    background: var(--surface);
}

.final-request-row {
    min-height: 154px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 25px 8px;
    border-bottom: 1px solid var(--border);
}

.final-request-content {
    min-width: 0;
}

.final-request-row h3 {
    margin-top: 0;
    font-size: 19px;
}

.final-request-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    margin-top: 12px;
}

.final-request-facts span {
    color: var(--muted);
    font-size: 12px;
}

.final-request-facts span::before {
    content: "\2713\00a0";
    color: var(--primary);
    font-weight: 800;
}

.final-request-row .action-button {
    height: 44px;
    min-height: 44px;
    align-self: center;
}

@media (max-width: 780px) {
    .final-course-grid {
        grid-template-columns: 1fr;
    }

    .final-course-card {
        min-height: auto;
    }

    .final-request-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding: 24px 0;
    }

    .final-request-row .action-button,
    .final-course-button {
        width: 100%;
    }
}

/* FINAL COURSE OVERVIEW END */

/* SUBTLE HEADER BANNER START */

.subtle-header-banner{
    position:relative;
    width:100%;
    height:125px;
    overflow:hidden;
    background-image:url("../img/background.png");
    background-repeat:no-repeat;
    background-size:100%;
    background-position:center 42%;
}

.subtle-header-banner-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.88) 0%,
            rgba(255,255,255,.35) 16%,
            rgba(255,255,255,.06) 34%,
            rgba(255,255,255,0) 55%
        );
}

@media(max-width:768px){

    .subtle-header-banner{
        height:95px;
        background-size:cover;
        background-position:center;
    }

}

/* SUBTLE HEADER BANNER END */

/* STICKY HEADER BANNER START */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        ),
        url("../img/background.png");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(0,0,0,.06);

    transition:all .25s ease;
}

.subtle-header-banner {
    position: sticky;
    top: 100px;
    z-index: 900;
}

.main-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .subtle-header-banner {
        top: 176px;
    }
}

/* STICKY HEADER BANNER END */
.final-course-facts li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary);
    background: transparent;
    font-weight: 800;
}

/* ===== Header Background ===== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        ),
        url("../img/background.png");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(0,0,0,.06);

    transition:all .25s ease;
}

.subtle-header-banner{
    display:none;
}

/* ============================= */



/* ===== Scroll Header ===== */

.site-header{
    transition:
        background-color .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease;
}

.site-header.scrolled{
    background:
        linear-gradient(
            rgba(255,255,255,.72),
            rgba(255,255,255,.72)
        ),
        url("../img/background.png");

    background-size:cover;
    background-position:center;

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

/* ========================= */


/* ===== Header Fade ===== */

.site-header{
    position:sticky;
    overflow:visible;
}

.site-header::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-32px;

    height:32px;

    pointer-events:none;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,.70) 0%,
        rgba(255,255,255,.45) 35%,
        rgba(255,255,255,.15) 70%,
        rgba(255,255,255,0) 100%
    );
}

/* ======================= */

/* DIRECT BOOKABLE CARDS START */

.final-course-grid {
    gap: 20px;
}

.final-course-card {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: 0 4px 14px rgba(11, 47, 89, .04);
    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.final-course-card:hover {
    border-color: var(--border-dark);
    box-shadow: 0 7px 18px rgba(11, 47, 89, .07);
}

.final-course-card::before {
    display: none;
}

.final-course-label {
    display: block;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    color: var(--accent);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.final-course-card h3 {
    margin-top: 8px;
    color: var(--primary);
    font-size: 22px;
}

.final-course-card p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.final-course-facts {
    gap: 8px;
    margin-top: 19px;
}

.final-course-facts li {
    padding-left: 22px;
    color: var(--text);
    font-size: 13px;
}

.final-course-facts li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary);
    background: transparent;
    font-weight: 800;
}

.final-course-button {
    width: fit-content;
    min-width: 175px;
    min-height: 44px;
    height: 44px;
    margin-top: 2px;
    justify-content: space-between;
    border-radius: 7px;
}

.final-course-button svg {
    margin-left: 0;
}

@media (max-width: 780px) {
    .final-course-card {
        min-height: auto;
        padding: 24px;
    }

    .final-course-button {
        width: 100%;
    }
}

/* DIRECT BOOKABLE CARDS END */

/* COURSE CARD BACKGROUNDS START */

/* Frühere Pseudoelemente deaktivieren */
.final-course-grid > .final-course-card::before,
.final-course-grid > .final-course-card::after {
    display: none !important;
}

/* Allgemeine Kartenbasis */
.final-course-grid > .final-course-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 48% auto;
}

/* Erste Karte: Erste Hilfe */
.final-course-grid > .final-course-card:nth-child(1) {
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 47%,
            rgba(255,255,255,.96) 60%,
            rgba(255,255,255,.70) 79%,
            rgba(255,255,255,.38) 100%
        ),
        url("../img/erstehilfe.png");
}

/* Zweite Karte: Kindernotfall */
.final-course-grid > .final-course-card:nth-child(2) {
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 47%,
            rgba(255,255,255,.96) 60%,
            rgba(255,255,255,.70) 79%,
            rgba(255,255,255,.38) 100%
        ),
        url("../img/kindernotfall.png");
}

.final-course-card-content,
.final-course-button {
    position: relative;
    z-index: 2;
}

@media (max-width: 780px) {
    .final-course-grid > .final-course-card {
        background-size: 62% auto;
    }

    .final-course-grid > .final-course-card:nth-child(1),
    .final-course-grid > .final-course-card:nth-child(2) {
        background-image:
            linear-gradient(
                90deg,
                rgba(255,255,255,1) 0%,
                rgba(255,255,255,.98) 58%,
                rgba(255,255,255,.72) 100%
            ),
            var(--course-card-image);
    }
}

/* COURSE CARD BACKGROUNDS END */

/* COURSE CARD IMAGE REFINEMENT START */

.final-course-grid > .final-course-card {
    background-size: 52% auto;
    background-position: right -18px center;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease,
        background-size .25s ease;
}

.final-course-grid > .final-course-card:nth-child(1) {
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 42%,
            rgba(255,255,255,.97) 53%,
            rgba(255,255,255,.76) 68%,
            rgba(255,255,255,.34) 83%,
            rgba(255,255,255,.12) 100%
        ),
        url("../img/erstehilfe.png");
}

.final-course-grid > .final-course-card:nth-child(2) {
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 42%,
            rgba(255,255,255,.97) 53%,
            rgba(255,255,255,.76) 68%,
            rgba(255,255,255,.34) 83%,
            rgba(255,255,255,.12) 100%
        ),
        url("../img/kindernotfall.png");
}

.final-course-grid > .final-course-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 47, 89, .22);
    box-shadow:
        0 12px 26px rgba(11, 47, 89, .10);
    background-size: 54% auto;
}

@media (max-width: 780px) {
    .final-course-grid > .final-course-card {
        background-size: 64% auto;
        background-position: right center;
    }

    .final-course-grid > .final-course-card:nth-child(1),
    .final-course-grid > .final-course-card:nth-child(2) {
        background-image:
            linear-gradient(
                90deg,
                rgba(255,255,255,1) 0%,
                rgba(255,255,255,.99) 52%,
                rgba(255,255,255,.80) 72%,
                rgba(255,255,255,.42) 100%
            ),
            var(--course-image);
    }
}

@media (max-width: 520px) {
    .final-course-grid > .final-course-card {
        background-size: cover;
        background-position: center;
    }

    .final-course-grid > .final-course-card:nth-child(1) {
        background-image:
            linear-gradient(
                rgba(255,255,255,.88),
                rgba(255,255,255,.88)
            ),
            url("../img/erstehilfe.png");
    }

    .final-course-grid > .final-course-card:nth-child(2) {
        background-image:
            linear-gradient(
                rgba(255,255,255,.88),
                rgba(255,255,255,.88)
            ),
            url("../img/kindernotfall.png");
    }
}

/* COURSE CARD IMAGE REFINEMENT END */

/* PUBLIC TRUST BAR START */

.public-trust-bar {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.public-trust-bar-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.public-trust-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-right: 1px solid var(--border);
}

.public-trust-item:first-child {
    padding-left: 0;
}

.public-trust-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.public-trust-check {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11, 47, 89, .22);
    border-radius: 50%;
    background: rgba(11, 47, 89, .05);
}

.public-trust-check::before {
    content: "\2713";
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.public-trust-item strong,
.public-trust-item small {
    display: block;
}

.public-trust-item strong {
    color: var(--primary);
    font-size: 13px;
    line-height: 1.35;
}

.public-trust-item small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 880px) {
    .public-trust-bar-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-trust-item {
        border-bottom: 1px solid var(--border);
    }

    .public-trust-item:nth-child(2) {
        border-right: 0;
    }

    .public-trust-item:nth-child(3),
    .public-trust-item:nth-child(4) {
        border-bottom: 0;
    }

    .public-trust-item:first-child,
    .public-trust-item:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 540px) {
    .public-trust-bar-inner {
        grid-template-columns: 1fr;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .public-trust-item,
    .public-trust-item:first-child,
    .public-trust-item:nth-child(3),
    .public-trust-item:last-child {
        min-height: 62px;
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .public-trust-item:last-child {
        border-bottom: 0;
    }
}

/* PUBLIC TRUST BAR END */

/* FINAL PUBLIC FOOTER START */

.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-inner {
    padding-top: 38px;
    padding-bottom: 22px;
}

.footer-main {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.5fr)
        minmax(130px, .7fr)
        minmax(190px, .9fr)
        minmax(180px, .9fr);
    gap: 46px;
    align-items: start;
}

.footer-brand strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.footer-column h2 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.footer-column nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-column a {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    transition: color .16s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 40px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        padding-top: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        margin-top: 28px;
    }
}

/* FINAL PUBLIC FOOTER END */

/* MINIMAL PUBLIC FOOTER START */

.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-simple {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 28px;
    padding-bottom: 28px;
    text-align: center;
}

.footer-simple-brand strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.footer-simple-created {
    color: var(--muted);
    font-size: 13px;
}

.footer-simple-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--border-dark);
    font-size: 13px;
}

.footer-simple-links a {
    color: var(--muted);
    transition: color .18s ease;
}

.footer-simple-links a:hover {
    color: var(--primary);
}

@media (max-width: 520px) {
    .footer-simple {
        min-height: 106px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .footer-simple-created,
    .footer-simple-links {
        font-size: 12px;
    }
}

/* MINIMAL PUBLIC FOOTER END */

/* LEGAL PAGES START */

.legal-page{
    max-width:900px;
    margin:0 auto;
}

.legal-page h1{
    margin-bottom:34px;
    color:var(--primary);
    font-size:clamp(34px,4vw,46px);
    line-height:1.15;
}

.legal-page h2{
    margin-top:34px;
    margin-bottom:12px;
    color:var(--primary);
    font-size:22px;
    font-weight:700;
}

.legal-page p,
.legal-page li{
    color:var(--muted);
    font-size:15px;
    line-height:1.9;
}

.legal-page ul{
    margin:14px 0 18px 22px;
}

.legal-page li{
    margin-bottom:6px;
}

.legal-page a{
    color:var(--primary);
    text-decoration:none;
    transition:color .2s ease;
}

.legal-page a:hover{
    color:var(--accent);
    text-decoration:underline;
}

.legal-page h2:not(:first-of-type){
    padding-top:12px;
    border-top:1px solid var(--border);
}

@media (max-width:768px){

    .legal-page{
        max-width:100%;
    }

    .legal-page h1{
        font-size:34px;
    }

    .legal-page h2{
        font-size:20px;
    }

}

/* LEGAL PAGES END */

/* FINAL DOWNLOAD PAGE START */

.download-tools {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.download-search {
    width: min(100%, 560px);
}

.download-search > label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.download-search-field {
    position: relative;
}

.download-search-field svg {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 19px;
    height: 19px;
    transform: translateY(-50%);
    fill: none;
    stroke: var(--muted);
    stroke-width: 1.8;
    stroke-linecap: round;
}

.download-search-field input {
    width: 100%;
    height: 46px;
    padding: 0 15px 0 43px;
    border: 1px solid var(--border-dark);
    border-radius: 7px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    font: inherit;
}

.download-search-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 47, 89, .07);
}

.download-result-count {
    min-width: 92px;
    text-align: right;
}

.download-result-count strong,
.download-result-count span {
    display: block;
}

.download-result-count strong {
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.download-result-count span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.download-search-empty {
    margin-bottom: 34px;
    padding: 34px 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    text-align: center;
}

.download-search-empty strong {
    color: var(--primary);
    font-size: 17px;
}

.download-search-empty p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
}

.public-download-group + .public-download-group {
    margin-top: 46px;
}

.public-download-heading {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.public-download-card {
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.public-download-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 47, 89, .24);
    box-shadow: 0 13px 30px rgba(11, 47, 89, .10);
}

.public-download-card[hidden],
.public-download-group[hidden] {
    display: none !important;
}

@media (max-width: 680px) {
    .download-tools {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .download-result-count {
        display: flex;
        align-items: baseline;
        gap: 7px;
        text-align: left;
    }

    .download-result-count span {
        margin-top: 0;
    }
}

/* FINAL DOWNLOAD PAGE END */

/* DOWNLOAD LIST VIEW START */

.public-download-grid {
    display: block;
}

.public-download-list {
    border-top: 1px solid var(--border-dark);
    background: var(--surface);
}

.public-download-row {
    min-height: 126px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 22px 8px;
    border-bottom: 1px solid var(--border);
}

.public-download-type {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.public-download-information {
    min-width: 0;
}

.public-download-information h3 {
    color: var(--primary);
    font-size: 18px;
    line-height: 1.35;
}

.public-download-information p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.public-download-information span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

.public-download-button {
    min-width: 165px;
    height: 44px;
}

.public-download-card,
.public-download-preview,
.public-download-card-body {
    display: none !important;
}

@media (max-width: 760px) {
    .public-download-row {
        grid-template-columns: 56px minmax(0, 1fr);
        align-items: flex-start;
    }

    .public-download-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .public-download-row {
        grid-template-columns: 1fr;
    }

    .public-download-type {
        width: 50px;
        height: 50px;
    }
}

/* DOWNLOAD LIST VIEW END */

/* SMALL DOWNLOAD SEARCH START */

.download-tools {
    align-items: center;
    padding: 14px 16px;
}

.download-search {
    width: min(100%, 380px);
}

.download-search > label {
    margin-bottom: 6px;
    font-size: 12px;
}

.download-search-field input {
    height: 40px;
    padding-left: 39px;
    font-size: 13px;
}

.download-search-field svg {
    left: 12px;
    width: 17px;
    height: 17px;
}

.download-result-count strong {
    font-size: 20px;
}

@media (max-width: 680px) {
    .download-search {
        width: 100%;
    }
}

/* SMALL DOWNLOAD SEARCH END */

/* SIMPLE DOWNLOAD SEARCH START */

.download-tools {
    display: block;
    margin-bottom: 28px;
    padding: 0;
    border: 0;
    background: transparent;
}

.download-search {
    width: min(100%, 360px);
}

.download-search > label {
    display: none;
}

.download-search-field input {
    height: 42px;
    border: 1px solid var(--border-dark);
    border-radius: 7px;
    background: #ffffff;
    font-size: 13px;
}

.download-result-count {
    display: none;
}

/* SIMPLE DOWNLOAD SEARCH END */

/* COMPANY LOGIN START */

.company-login-section {
    padding: 64px 0 82px;
}

.company-login-container {
    display: flex;
    justify-content: center;
}

.company-login-panel {
    width: min(100%, 520px);
}

.company-login-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.company-login-brand img {
    width: min(100%, 700px);
    max-width: 700px;
    max-height: 260px;
    object-fit: contain;
    display: block;
}

.company-login-heading {
    text-align: center;
}

.company-login-heading > span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.company-login-heading h1 {
    margin-top: 9px;
    color: var(--primary);
    font-size: clamp(31px, 5vw, 42px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.company-login-heading p {
    max-width: 470px;
    margin: 13px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.company-login-form {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.company-login-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-login-field > span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.company-login-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border-dark);
    border-radius: 7px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    font: inherit;
}

.company-login-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 47, 89, .07);
}

.company-login-button {
    width: 100%;
    min-height: 48px;
    margin-top: 4px;
}

.company-login-error {
    margin-top: 24px;
    padding: 13px 15px;
    border: 1px solid rgba(168, 39, 39, .22);
    border-radius: 7px;
    color: #922f2f;
    background: rgba(168, 39, 39, .055);
    font-size: 13px;
}

.company-login-help {
    margin-top: 31px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.company-login-help strong {
    color: var(--primary);
    font-size: 13px;
}

.company-login-help p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.company-login-help a {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.company-login-help a:hover {
    color: var(--accent);
}

@media (max-width: 620px) {
    .company-login-section {
        padding: 38px 0 60px;
    }

    .company-login-brand {
        margin-bottom: 26px;
    }

    .company-login-panel {
        width: 100%;
    }
}

/* COMPANY LOGIN END */

/* COMPANY PORTAL FOUNDATION START */

.company-portal-section {
    padding: 58px 0 80px;
}

.company-portal-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.company-portal-label {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.company-portal-topbar h1 {
    margin-top: 9px;
    color: var(--primary);
    font-size: clamp(31px, 5vw, 44px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.company-portal-topbar p {
    max-width: 650px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.company-portal-empty {
    margin-top: 52px;
    padding: 46px 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.company-portal-empty img {
    width: min(100%, 420px);
    max-height: 180px;
    object-fit: contain;
}

.company-portal-empty strong {
    display: block;
    margin-top: 28px;
    color: var(--primary);
    font-size: 18px;
}

.company-portal-empty p {
    max-width: 570px;
    margin: 9px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 720px) {
    .company-portal-section {
        padding: 38px 0 60px;
    }

    .company-portal-topbar {
        flex-direction: column;
    }

    .company-portal-topbar .action-button {
        width: 100%;
    }
}

/* COMPANY PORTAL FOUNDATION END */

/* COMPANY BOOKING FLOW START */

.company-appointments-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 58px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.company-appointments-heading h2 {
    color: var(--primary);
    font-size: 23px;
}

.company-appointments-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
}

.company-appointments-heading > span {
    color: var(--muted);
    font-size: 13px;
}

.company-appointment-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.company-appointment-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 25px 26px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
}

.company-appointment-status {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    color: #17633a;
    background: rgba(23, 99, 58, .08);
    font-size: 11px;
    font-weight: 750;
}

.company-appointment-content h3 {
    margin-top: 11px;
    color: var(--primary);
    font-size: 21px;
}

.company-appointment-content > p {
    max-width: 740px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.company-appointment-details {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 32px;
    margin-top: 21px;
}

.company-appointment-details div {
    min-width: 120px;
}

.company-appointment-details dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
}

.company-appointment-details dd {
    margin-top: 4px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.company-appointment-action .action-button {
    min-width: 230px;
}

.company-participant-section {
    padding: 50px 0 80px;
}

.company-back-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.company-back-link:hover {
    color: var(--accent);
}

.company-participant-heading {
    margin-top: 30px;
}

.company-participant-form {
    margin-top: 38px;
}

.company-participant-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.company-participant-toolbar h2 {
    color: var(--primary);
    font-size: 22px;
}

.company-participant-toolbar p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.company-participant-table {
    margin-top: 18px;
}

.company-participant-table-head,
.company-participant-row {
    display: grid;
    grid-template-columns:
        minmax(160px, 1fr)
        minmax(160px, 1fr)
        minmax(170px, .75fr)
        44px;
    gap: 12px;
    align-items: center;
}

.company-participant-table-head {
    padding: 0 12px 9px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.company-participant-row {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
}

.company-participant-row + .company-participant-row {
    margin-top: 10px;
}

.company-participant-row input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--border-dark);
    border-radius: 7px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    font: inherit;
}

.company-participant-row input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 47, 89, .07);
}

.company-remove-participant {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(168, 39, 39, .22);
    border-radius: 7px;
    color: #a82727;
    background: rgba(168, 39, 39, .045);
    font-size: 20px;
    cursor: pointer;
}

.company-remove-participant:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.company-participant-summary {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
}

.company-participant-summary strong {
    color: var(--primary);
    font-size: 19px;
}

.company-participant-summary small {
    margin-left: auto;
}

.company-participant-actions {
    display: flex;
    justify-content: flex-end;
    gap: 11px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.company-confirmation-section {
    padding: 75px 0 95px;
}

.company-confirmation-container {
    max-width: 680px;
    text-align: center;
}

.company-confirmation-check {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    color: #ffffff;
    background: #17633a;
    font-size: 26px;
    font-weight: 800;
}

.company-confirmation-container h1 {
    margin-top: 9px;
    color: var(--primary);
    font-size: clamp(34px, 6vw, 50px);
}

.company-confirmation-container > p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 15px;
}

.company-confirmation-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.company-confirmation-details div {
    padding: 20px 12px;
}

.company-confirmation-details div + div {
    border-left: 1px solid var(--border);
}

.company-confirmation-details dt {
    color: var(--muted);
    font-size: 11px;
}

.company-confirmation-details dd {
    margin-top: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 750;
}

.company-confirmation-container .action-button {
    margin: 0 auto;
}

@media (max-width: 800px) {
    .company-appointment-card {
        grid-template-columns: 1fr;
    }

    .company-appointment-action .action-button {
        width: 100%;
    }

    .company-participant-table-head {
        display: none;
    }

    .company-participant-row {
        grid-template-columns: 1fr;
    }

    .company-remove-participant {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .company-appointments-heading,
    .company-participant-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .company-participant-toolbar .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .company-participant-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .company-participant-actions .action-button,
    .company-participant-actions .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .company-confirmation-details {
        grid-template-columns: 1fr;
    }

    .company-confirmation-details div + div {
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}

/* COMPANY BOOKING FLOW END */

/* EXCLUSIVE COMPANY APPOINTMENTS START */

.company-appointment-card-booked {
    border-color: rgba(80, 91, 105, .16);
    background: rgba(80, 91, 105, .045);
}

.company-appointment-card-booked
.company-appointment-content {
    opacity: .62;
}

.company-appointment-status-booked {
    color: #68717d;
    background: rgba(80, 91, 105, .10);
}

.company-appointment-disabled-button {
    min-width: 230px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid rgba(80, 91, 105, .18);
    border-radius: 7px;
    color: #7a838f;
    background: rgba(80, 91, 105, .07);
    font-size: 13px;
    font-weight: 700;
    cursor: not-allowed;
    user-select: none;
}

@media (max-width: 800px) {
    .company-appointment-disabled-button {
        width: 100%;
    }
}

/* EXCLUSIVE COMPANY APPOINTMENTS END */

/* COMPANY HEADER START */

.company-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.company-header-inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.company-header-logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.company-header-logo img {
    width: 210px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.company-header-title {
    justify-self: center;
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.company-header-logout {
    min-width: 132px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 0 18px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    color: var(--primary);
    background: transparent;
    font-size: 13px;
    font-weight: 750;
    transition:
        color .16s ease,
        background .16s ease,
        border-color .16s ease;
}

.company-header-logout:hover {
    border-color: var(--accent);
    color: #ffffff;
    background: var(--accent);
}

@media (max-width: 760px) {
    .company-header-inner {
        grid-template-columns: auto 1fr auto;
        min-height: 88px;
        gap: 14px;
    }

    .company-header-logo img {
        width: 145px;
        max-height: 54px;
    }

    .company-header-title {
        font-size: 13px;
        letter-spacing: .08em;
    }

    .company-header-logout {
        min-width: auto;
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .company-header-inner {
        grid-template-columns: 1fr auto;
    }

    .company-header-title {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
        padding-bottom: 4px;
    }

    .company-header-logo {
        grid-column: 1;
        grid-row: 1;
    }

    .company-header-logout {
        grid-column: 2;
        grid-row: 1;
    }
}


.company-header-right{
    display:flex;
    align-items:center;
    justify-self:end;
    gap:24px;
}

.company-header-premium-logo{
    width:170px;
    height:auto;
    display:block;
    object-fit:contain;
}

@media (max-width:760px){

    .company-header-right{
        gap:12px;
    }

    .company-header-premium-logo{
        width:110px;
    }

}

/* COMPANY HEADER END */

/* COMPANY PORTAL CONTEXT MENU START */

.company-portal-menu {
    position: relative;
    flex: 0 0 auto;
}

.company-portal-menu-button {
    min-width: 132px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 16px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    color: var(--primary);
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition:
        color .16s ease,
        border-color .16s ease,
        background .16s ease;
}

.company-portal-menu-button:hover,
.company-portal-menu.is-open
.company-portal-menu-button {
    border-color: var(--accent);
    color: #ffffff;
    background: var(--accent);
}

.company-portal-menu-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .18s ease;
}

.company-portal-menu.is-open
.company-portal-menu-button svg {
    transform: rotate(180deg);
}

.company-portal-context-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1200;
    width: 310px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow:
        0 18px 45px rgba(11, 47, 89, .14);
}

.company-portal-context-menu[hidden] {
    display: none;
}

.company-portal-context-menu a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 12px;
    border-radius: 8px;
    color: var(--text);
    transition:
        color .16s ease,
        background .16s ease;
}

.company-portal-context-menu a:hover {
    color: var(--primary);
    background: rgba(11, 47, 89, .055);
}

.company-context-menu-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    border-radius: 8px;
    color: var(--primary);
    background: rgba(11, 47, 89, .07);
}

.company-context-menu-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-portal-context-menu a > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.company-portal-context-menu strong {
    color: inherit;
    font-size: 13px;
}

.company-portal-context-menu small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 720px) {
    .company-portal-menu {
        width: 100%;
    }

    .company-portal-menu-button {
        width: 100%;
    }

    .company-portal-context-menu {
        right: auto;
        left: 0;
        width: min(100%, 340px);
    }
}

/* COMPANY PORTAL CONTEXT MENU END */

/* COMPANY APPOINTMENT LIST DESIGN START */

/*
 * Terminübersicht im Firmenportal:
 * gleiche ruhige Listenoptik wie auf der öffentlichen Kursseite.
 */

.company-appointments-heading {
    margin-top: 52px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
}

.company-appointment-list {
    display: block;
    margin-top: 0;
    border-top: 0;
    background: var(--surface);
}

.company-appointment-card {
    min-height: 148px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: 25px 6px;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
}

.company-appointment-content {
    min-width: 0;
    flex: 1 1 auto;
}

.company-appointment-status {
    min-height: auto;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 0;
    color: #17633a;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.company-appointment-content h3 {
    margin-top: 8px;
    color: var(--primary);
    font-size: 20px;
    line-height: 1.25;
}

.company-appointment-content > p {
    max-width: 760px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.company-appointment-details {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 30px;
    margin-top: 17px;
}

.company-appointment-details div {
    min-width: 105px;
}

.company-appointment-details dt {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.company-appointment-details dd {
    margin-top: 3px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.company-appointment-action {
    flex: 0 0 auto;
}

.company-appointment-action .action-button {
    min-width: 220px;
    min-height: 44px;
}

/* Bereits gebuchte Termine bleiben sichtbar, aber klar deaktiviert */

.company-appointment-card-booked {
    border-color: var(--border);
    background: rgba(80, 91, 105, .035);
}

.company-appointment-card-booked .company-appointment-content {
    opacity: .56;
}

.company-appointment-status-booked {
    color: #737d89;
    background: transparent;
}

.company-appointment-disabled-button {
    min-width: 220px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid rgba(80, 91, 105, .19);
    border-radius: 7px;
    color: #7a838f;
    background: rgba(80, 91, 105, .06);
    font-size: 13px;
    font-weight: 700;
    cursor: not-allowed;
    user-select: none;
}

@media (max-width: 850px) {
    .company-appointment-card {
        min-height: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 21px;
        padding: 24px 4px;
    }

    .company-appointment-action,
    .company-appointment-action .action-button,
    .company-appointment-disabled-button {
        width: 100%;
    }

    .company-appointment-action .action-button,
    .company-appointment-disabled-button {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .company-appointments-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .company-appointment-details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .company-appointment-details div {
        min-width: 0;
    }
}

/* COMPANY APPOINTMENT LIST DESIGN END */

/* COMPANY APPOINTMENT COMPACT START */

.company-appointment-card {
    min-height: 136px;
    padding-top: 23px;
    padding-bottom: 23px;
}

.company-appointment-content h3 {
    margin-top: 7px;
}

.company-appointment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 24px;
    margin-top: 14px;
}

.company-appointment-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.company-appointment-meta svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-appointment-content > p {
    margin-top: 13px;
}

.company-appointment-details {
    display: none;
}

.company-appointment-card-booked
.company-appointment-meta svg {
    stroke: #7a838f;
}

@media (max-width: 650px) {
    .company-appointment-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* COMPANY APPOINTMENT COMPACT END */

/* COMPANY NEWS START */

.company-news-section {
    margin-top: 44px;
}

.company-news-section-heading {
    display: block;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-dark);
}

.company-news-heading-icon {
    display: none;
}

.company-news-section-heading h2 {
    color: var(--primary);
    font-size: 21px;
}

.company-news-section-heading p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.company-news-list {
    display: block;
    margin-top: 0;
}

.company-news-item {
    padding: 22px 4px 20px;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
}

.company-news-type {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.company-news-item h3 {
    margin-top: 7px;
    color: var(--primary);
    font-size: 18px;
    line-height: 1.35;
}

.company-news-message {
    max-width: 860px;
    margin-top: 8px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
}

.company-news-item time {
    display: block;
    margin-top: 11px;
    color: var(--muted);
    font-size: 11px;
}

.company-news-item-information,
.company-news-item-notice,
.company-news-item-important {
    background: transparent;
}

.company-news-item-notice .company-news-type {
    color: #9a620d;
}

.company-news-item-important .company-news-type {
    color: #a82727;
}

@media (max-width: 620px) {
    .company-news-section {
        margin-top: 34px;
    }

    .company-news-item {
        padding: 18px 0;
    }
}

/* COMPANY NEWS END */

/* COMPANY DASHBOARD LINK START */

.company-dashboard-link-section {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.company-dashboard-link {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px 4px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.company-dashboard-link:hover {
    color: var(--primary);
}

.company-dashboard-link-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--primary);
    background: rgba(11, 47, 89, .065);
}

.company-dashboard-link-icon svg,
.company-dashboard-link-arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-dashboard-link-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-dashboard-link-content strong {
    color: var(--primary);
    font-size: 16px;
}

.company-dashboard-link-content small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.company-dashboard-link-arrow {
    color: var(--primary);
    transition: transform .16s ease;
}

.company-dashboard-link:hover
.company-dashboard-link-arrow {
    transform: translateX(4px);
}

@media (max-width: 620px) {
    .company-dashboard-link {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .company-dashboard-link-arrow {
        display: none;
    }
}

/* COMPANY DASHBOARD LINK END */

/* COMPANY BOOKINGS PAGE START */

.company-dashboard-link-section-following {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.company-bookings-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
}

.company-bookings-page-heading h1 {
    margin-top: 8px;
    color: var(--primary);
    font-size: clamp(31px, 5vw, 44px);
    line-height: 1.15;
}

.company-bookings-page-heading p {
    max-width: 650px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.company-bookings-page-heading > span {
    color: var(--muted);
    font-size: 13px;
}

.company-bookings-list {
    display: block;
}

.company-booking-row {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 24px 4px;
    border-bottom: 1px solid var(--border);
}

.company-booking-row-main {
    min-width: 0;
    flex: 1 1 auto;
}

.company-booking-status {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.company-booking-status-submitted {
    color: var(--primary);
}

.company-booking-status-confirmed,
.company-booking-status-completed {
    color: #17633a;
}

.company-booking-status-processing {
    color: #9a620d;
}

.company-booking-status-cancelled {
    color: #a82727;
}

.company-booking-row h2 {
    margin-top: 7px;
    color: var(--primary);
    font-size: 20px;
    line-height: 1.3;
}

.company-booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 24px;
    margin-top: 13px;
}

.company-booking-meta span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.company-booking-row-action {
    flex: 0 0 auto;
}

.company-booking-row-action .secondary-button {
    min-width: 120px;
    justify-content: center;
}

.company-bookings-empty {
    padding: 56px 0;
    text-align: center;
}

.company-bookings-empty strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
}

.company-bookings-empty p {
    max-width: 520px;
    margin: 8px auto 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.company-bookings-empty .action-button {
    margin: 0 auto;
}

@media (max-width: 760px) {
    .company-bookings-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .company-booking-row {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .company-booking-row-action,
    .company-booking-row-action
    .secondary-button {
        width: 100%;
    }
}

/* COMPANY BOOKINGS PAGE END */

/* COMPANY BOOKING DETAILS START */

.company-booking-detail-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-top: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-dark);
}

.company-booking-detail-heading h1 {
    margin-top: 8px;
    color: var(--primary);
    font-size: clamp(29px, 5vw, 42px);
    line-height: 1.15;
}

.company-booking-detail-heading p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.company-booking-detail-heading p strong {
    color: var(--primary);
}

.company-booking-detail-status {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    white-space: nowrap;
}

.company-booking-detail-status-submitted {
    color: var(--primary);
    background: rgba(11, 47, 89, .07);
}

.company-booking-detail-status-confirmed,
.company-booking-detail-status-completed {
    color: #17633a;
    background: rgba(23, 99, 58, .08);
}

.company-booking-detail-status-processing {
    color: #95600d;
    background: rgba(187, 122, 18, .09);
}

.company-booking-detail-status-cancelled {
    color: #a82727;
    background: rgba(168, 39, 39, .07);
}

.company-booking-detail-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.company-booking-detail-summary > div {
    padding: 20px 18px;
}

.company-booking-detail-summary > div + div {
    border-left: 1px solid var(--border);
}

.company-booking-detail-summary span,
.company-booking-detail-summary strong {
    display: block;
}

.company-booking-detail-summary span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.company-booking-detail-summary strong {
    margin-top: 7px;
    color: var(--primary);
    font-size: 15px;
}

.company-booking-participants-section {
    margin-top: 42px;
}

.company-booking-participants-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-dark);
}

.company-booking-participants-heading h2 {
    color: var(--primary);
    font-size: 21px;
}

.company-booking-participants-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.company-booking-participants-heading > span {
    color: var(--muted);
    font-size: 12px;
}

.company-booking-participants-table {
    margin-top: 0;
}

.company-booking-participants-table-head,
.company-booking-participant-row {
    display: grid;
    grid-template-columns:
        minmax(160px, 1fr)
        minmax(160px, 1fr)
        minmax(150px, .7fr);
    gap: 20px;
    align-items: center;
}

.company-booking-participants-table-head {
    padding: 13px 5px 9px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.company-booking-participant-row {
    min-height: 55px;
    padding: 12px 5px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
}

.company-booking-participant-row span:first-child,
.company-booking-participant-row span:nth-child(2) {
    color: var(--primary);
    font-weight: 700;
}

.company-booking-participants-empty {
    padding: 34px 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 720px) {
    .company-booking-detail-heading,
    .company-booking-participants-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .company-booking-detail-summary {
        grid-template-columns: 1fr;
    }

    .company-booking-detail-summary > div + div {
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}

@media (max-width: 620px) {
    .company-booking-participants-table-head {
        display: none;
    }

    .company-booking-participant-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 16px 4px;
    }

    .company-booking-participant-row span:nth-child(3)::before {
        content: "Geburtsdatum: ";
        color: var(--muted);
        font-weight: 400;
    }
}

/* COMPANY BOOKING DETAILS END */

/* COMPANY CUSTOMER INFORMATION START */

.company-information-heading {
    margin-top: 30px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--border-dark);
}

.company-information-heading h1 {
    margin-top: 8px;
    color: var(--primary);
    font-size: clamp(31px, 5vw, 44px);
    line-height: 1.15;
}

.company-information-heading p {
    max-width: 680px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.company-information-section {
    margin-top: 38px;
}

.company-information-section-heading {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-dark);
}

.company-information-section-heading h2 {
    color: var(--primary);
    font-size: 21px;
}

.company-information-section-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.company-information-list {
    margin: 0;
}

.company-information-list > div {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 28px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
}

.company-information-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.company-information-list dd {
    margin: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.company-information-list dd a {
    color: var(--primary);
}

.company-information-list dd a:hover {
    color: var(--accent);
}

.company-information-note {
    margin-top: 34px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.company-information-note strong {
    color: var(--primary);
    font-size: 14px;
}

.company-information-note p {
    max-width: 670px;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.company-information-note a {
    display: inline-block;
    margin-top: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 750;
}

.company-information-note a:hover {
    color: var(--accent);
}

@media (max-width: 650px) {
    .company-information-list > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* COMPANY CUSTOMER INFORMATION END */

/* COMPANY DATA PAGE START */

.company-data-heading {
    margin-top: 30px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--border-dark);
}

.company-data-heading h1 {
    margin-top: 8px;
    color: var(--primary);
    font-size: clamp(31px, 5vw, 44px);
    line-height: 1.15;
}

.company-data-heading p {
    max-width: 680px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.company-data-section {
    margin-top: 38px;
}

.company-data-section + .company-data-section {
    margin-top: 46px;
}

.company-data-section-heading {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-dark);
}

.company-data-section-heading h2 {
    color: var(--primary);
    font-size: 21px;
}

.company-data-section-heading p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.company-data-list {
    margin: 0;
}

.company-data-list > div {
    min-height: 72px;
    display: grid;
    grid-template-columns:
        minmax(200px, .75fr)
        minmax(0, 1.25fr);
    align-items: center;
    gap: 28px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
}

.company-data-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.company-data-list dd {
    margin: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.company-data-list dd a {
    color: var(--primary);
}

.company-data-list dd a:hover {
    color: var(--accent);
}

.company-data-note {
    margin-top: 38px;
    padding: 21px 0;
    border-top: 1px solid var(--border);
}

.company-data-note strong {
    color: var(--primary);
    font-size: 14px;
}

.company-data-note p {
    max-width: 700px;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.company-data-note a {
    display: inline-block;
    margin-top: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 750;
}

.company-data-note a:hover {
    color: var(--accent);
}

@media (max-width: 650px) {
    .company-data-list > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* COMPANY DATA PAGE END */
