/* Pleinimmo Sanierungsanfrage */
.psa-wrap { max-width: 680px; margin: 0 auto; font-family: inherit; }

.psa-section {
    background: #fff;
    border: 1px solid #e0e5ee;
    border-radius: 10px;
    padding: 24px 26px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(44,95,138,.06);
}

.psa-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3353;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0f8;
}

.psa-req { color: #c0392b; }
.psa-hint { color: #777; font-size: 13px; margin: -10px 0 12px; }

/* Grid Kontaktdaten */
.psa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
@media (max-width: 560px) { .psa-grid { grid-template-columns: 1fr; } }

.psa-field { display: flex; flex-direction: column; gap: 5px; }
.psa-field label { font-size: 13.5px; font-weight: 600; color: #374151; }

.psa-field input,
.psa-field select {
    padding: 9px 12px;
    border: 1px solid #bcc8dc;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    transition: border-color .15s;
    width: 100%;
    box-sizing: border-box;
}
.psa-field input:focus,
.psa-field select:focus {
    border-color: #2c5f8a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44,95,138,.12);
}

/* Checkboxen */
.psa-checkgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.psa-check-label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid #dde4ef;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #1a3353;
    background: #fafbfd;
    transition: border-color .15s, background .15s;
    user-select: none;
}
.psa-check-label:hover { border-color: #2c5f8a; background: #f0f6ff; }
.psa-check-label input[type=checkbox] { width: 16px; height: 16px; accent-color: #2c5f8a; flex-shrink: 0; cursor: pointer; }
.psa-check-label:has(input:checked) { border-color: #2c5f8a; background: #f0f6ff; font-weight: 600; }

/* Fehler */
.psa-error {
    background: #fde8e8;
    border: 1px solid #f5c6c6;
    color: #7b1c1c;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Button */
.psa-actions { text-align: center; margin-top: 4px; }
.psa-btn {
    display: inline-block;
    background: #2c5f8a;
    color: #fff;
    border: none;
    padding: 14px 44px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, transform .1s;
    letter-spacing: .3px;
    font-family: inherit;
}
.psa-btn:hover { background: #1e4468; }
.psa-btn:active { transform: scale(.98); }
.psa-btn:disabled { background: #9bb5cc; cursor: not-allowed; }

/* Bestätigung */
.psa-done {
    text-align: center;
    padding: 56px 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e5ee;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.psa-check-icon {
    width: 64px; height: 64px;
    background: #27ae60;
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(39,174,96,.3);
}
.psa-done h3 { color: #1a3353; font-size: 18px; margin: 0; }
