.plb-pfandkredit {
    --plb-navy: #061f44;
    --plb-gold: #c9a45c;
    --plb-gold-light: #d8b46d;
    --plb-gold-dark: #b98e42;
    --plb-error: #b00020;
    max-width: 720px;
    margin: 40px auto;
    padding: 28px;
    background: var(--plb-navy);
    color: #ffffff;
    border-radius: 18px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.plb-pfandkredit,
.plb-pfandkredit * {
    box-sizing: border-box;
}

.plb-pfandkredit__title {
    margin: 0 0 10px;
    text-align: center;
    color: var(--plb-gold);
    font-size: 32px;
    line-height: 1.2;
}

.plb-pfandkredit__intro {
    text-align: center;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
}

.plb-pfandkredit__field label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}

.plb-pfandkredit__field input {
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;
    font-size: 22px;
    line-height: 1.2;
    outline: none;
}

.plb-pfandkredit__field input:focus {
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.45);
}

.plb-pfandkredit__button {
    width: 100%;
    margin-top: 18px;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(var(--plb-gold-light), var(--plb-gold-dark));
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
}

.plb-pfandkredit__button:hover,
.plb-pfandkredit__button:focus {
    opacity: 0.92;
}

.plb-pfandkredit__result {
    display: none;
    margin-top: 24px;
    background: #ffffff;
    color: #111111;
    border-radius: 12px;
    padding: 22px;
}

.plb-pfandkredit__result.is-visible {
    display: block;
}

.plb-pfandkredit__result-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 17px;
}

.plb-pfandkredit__result-row strong {
    color: var(--plb-navy);
    white-space: nowrap;
}

.plb-pfandkredit__result-row:last-child {
    border-bottom: 0;
}

.plb-pfandkredit__result-row--total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--plb-navy);
    font-size: 21px;
    font-weight: 900;
}

.plb-pfandkredit__error {
    color: var(--plb-error);
    font-weight: 800;
    text-align: center;
}

.plb-pfandkredit__note {
    margin-top: 16px;
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
}

.plb-pfandkredit__table {
    margin-top: 26px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.plb-pfandkredit__table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.plb-pfandkredit__table-row:last-child {
    border-bottom: 0;
}

.plb-pfandkredit__table-row div {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

.plb-pfandkredit__table-row div:last-child {
    text-align: right;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--plb-gold);
    font-weight: 800;
}

.plb-pfandkredit__table-head div {
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 600px) {
    .plb-pfandkredit {
        margin: 25px 15px;
        padding: 22px;
        border-radius: 14px;
    }

    .plb-pfandkredit__title {
        font-size: 26px;
    }

    .plb-pfandkredit__result-row {
        font-size: 15px;
    }

    .plb-pfandkredit__result-row--total {
        font-size: 18px;
    }
}
