.bawa-analyzer-form-wrapper {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Form Header */
.bawa-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.bawa-form-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.bawa-form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.bawa-form {
    padding: 2rem;
}

.bawa-form-group {
    margin-bottom: 1.5rem;
}

.bawa-form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1d2327;
    font-size: 0.95rem;
}

.bawa-label-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.bawa-optional {
    font-weight: 400;
    color: #646970;
    font-size: 0.85rem;
    margin-left: 8px;
}

.bawa-input-wrapper {
    position: relative;
}

.bawa-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #fafafa;
}

.bawa-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
    background: #fff;
}

.bawa-input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #646970;
    font-size: 1.1rem;
    pointer-events: none;
}

.bawa-help-text {
    font-size: 0.85rem;
    color: #646970;
    margin-top: 0.5rem;
    font-style: italic;
}

.bawa-error {
    color: #d63638;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    padding: 0.5rem;
    background: #fef7f7;
    border-left: 3px solid #d63638;
    border-radius: 4px;
}

/* Analysis Type Selection */
.bawa-analysis-type {
    margin: 2rem 0;
}

.bawa-type-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1d2327;
}

.bawa-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .bawa-type-options {
        grid-template-columns: 1fr;
    }
}

.bawa-type-option {
    cursor: pointer;
    position: relative;
}

.bawa-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.bawa-type-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.bawa-type-option:hover .bawa-type-card {
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.bawa-type-option input[type="radio"]:checked + .bawa-type-card {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.bawa-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bawa-type-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d2327;
}

.bawa-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
}

.bawa-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bawa-features li {
    padding: 0.25rem 0;
    color: #646970;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.bawa-features li::before {
    margin-right: 8px;
    font-weight: bold;
}

.bawa-type-option.free .bawa-type-card {
    border-left: 4px solid #2271b1;
}

.bawa-type-option.pro .bawa-type-card {
    border-left: 4px solid #00a32a;
}

.bawa-type-option.pro .bawa-price {
    color: #00a32a;
}

/* Submit Button */
.bawa-submit-group {
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.bawa-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.bawa-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.4);
}

.bawa-submit-btn:active {
    transform: translateY(0);
}

.bawa-submit-btn:disabled {
    background: #a7aaad;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bawa-btn-icon {
    font-size: 1.2rem;
}

.bawa-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    color: #667eea;
    font-weight: 600;
}

.bawa-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: bawa-spin 1s linear infinite;
}

@keyframes bawa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Footer */
.bawa-form-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.bawa-privacy-note {
    margin: 0;
    font-size: 0.85rem;
    color: #646970;
}

/* Analysis Report */
.bawa-analysis-report {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f6fc 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.bawa-section {
    margin-bottom: 2rem;
}

.bawa-section:last-child {
    margin-bottom: 0;
}

.bawa-section h4 {
    color: #1d2327;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.bawa-section ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.bawa-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.bawa-section li::before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Free Summary */
.bawa-free-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f6fc 0%, #e7f3ff 100%);
    border-radius: 8px;
    border-left: 4px solid #2271b1;
    text-align: center;
}

.bawa-free-summary p {
    margin: 0;
    color: #646970;
    font-size: 0.95rem;
    font-style: italic;
}

.bawa-pro-upsell {
    position: relative;
}

.bawa-blurred-section {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.bawa-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.bawa-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bawa-pro-btn {
    background: white;
    color: #764ba2;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.bawa-pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bawa-analyzer-form-wrapper {
        margin: 1rem;
        border-radius: 8px;
    }
    
    .bawa-form-header {
        padding: 1.5rem;
    }
    
    .bawa-form {
        padding: 1.5rem;
    }
    
    .bawa-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .bawa-type-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}