.bpa-wrapper {
    max-width: 720px;
    margin: 40px auto;
    font-family: Georgia, "DejaVu Serif", serif;
    color: #2c2c2c;
    line-height: 1.6;
}

.bpa-intro {
    background: #faf8f3;
    padding: 30px;
    
    margin-bottom: 30px;
    border-left: 4px solid #c9950e;
}

.bpa-intro h2 {
    margin: 0 0 12px 0;
    color: #1a1a2e;
    font-size: 22px;
}

.bpa-intro p {
    margin: 8px 0;
    color: #555;
}

.bpa-estimate {
    font-size: 14px;
    color: #888 !important;
    margin-top: 16px !important;
}

.bpa-question {
    background: #fff;
    border: 1px solid #e0e0e0;
    
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.bpa-question:hover {
    border-color: #c9950e;
}

.bpa-question.answered {
    border-left: 4px solid #c9950e;
}

.bpa-q-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.bpa-q-num {
    color: #999;
    font-weight: 400;
}

.bpa-likert {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bpa-likert-option {
    flex: 1;
    min-width: 100px;
    position: relative;
}

.bpa-likert-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
    z-index: 1;
}

.bpa-likert-label {
    display: block;
    text-align: center;
    padding: 10px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    background: #fafafa;
    transition: all 0.2s;
}

.bpa-likert-option input[type="radio"]:checked + .bpa-likert-label {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

.bpa-likert-option input[type="radio"]:hover + .bpa-likert-label {
    border-color: #c9950e;
}

.bpa-progress {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 12px 20px;
    margin-top: 30px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 14px;
}

.bpa-progress-bar {
    flex: 1;
    height: 8px;
    background: #e8e4da;
    border-radius: 4px;
    overflow: hidden;
}

.bpa-progress-text {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    min-width: 100px;
}

.bpa-submit-area {
    background: #faf8f3;
    border: 1px solid #e0dac8;
    
    padding: 24px;
    margin-top: 20px;
    text-align: center;
}

.bpa-all-done {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

.bpa-email-row {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.bpa-email-row input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.bpa-email-row input[type="email"]:focus {
    outline: none;
    border-color: #c9950e;
}

.bpa-privacy-note {
    font-size: 12px;
    color: #999;
    margin: 12px 0 0 0;
}

.bpa-email-row {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}





.bpa-btn,.bpa-btn:hover,.bpa-btn:focus{border:none;outline:none;box-shadow:none}
.bpa-btn {
    background: #4E6B3A;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.bpa-btn:hover {
    background: #4E6B3A;
}

.bpa-btn:disabled {
    background: #999;
    cursor: not-allowed;
}



.bpa-error {
    background: #fff0f0;
    color: #c0392b;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 12px 16px;
    margin-top: 16px;
    text-align: center;
}

.bpa-success {
    background: #f0fff4;
    color: #27ae60;
    border: 1px solid #b8e6c8;
    border-radius: 6px;
    padding: 24px;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.bpa-success-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .bpa-likert {
        flex-direction: column;
        gap: 6px;
    }
    .bpa-likert-option {
        min-width: auto;
    }
    .bpa-email-row {
        flex-direction: column;
    }
    .bpa-progress {
        flex-direction: column;
        gap: 8px;
    }
    .bpa-intro {
        padding: 20px;
    }
}

.bpa-btn-download {
    padding: 14px 36px;
    font-size: 16px;
}
