.chorus-claim-form-wrapper {
    max-width: 760px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.chorus-claim-form-wrapper h2 {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.2;
    color: #111;
}

.chorus-claim-form {
    margin-top: 36px;
}

.chorus-form-row {
    margin-bottom: 38px;
}

.chorus-form-row > label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    line-height: 1.4;
}

.chorus-form-row input[type="text"],
.chorus-form-row input[type="url"],
.chorus-form-row select,
.chorus-form-row textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fafafa;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.chorus-form-row select {
    height: 52px;
    padding: 0 44px 0 16px;
    line-height: 52px;
    appearance: auto;
}

.chorus-form-row input:focus,
.chorus-form-row select:focus,
.chorus-form-row textarea:focus {
    outline: none;
    border-color: #7B3F97;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(123,63,151,0.12);
}

.chorus-field-help {
    margin: -4px 0 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.chorus-file-upload-row {
    margin-top: 10px;
    padding: 28px;
    border: 1px dashed #d5d5d5;
    border-radius: 16px;
    background: #fcfcfc;
}

.chorus-file-upload-row input[type="file"] {
    width: 100%;
    min-height: 48px;
    padding: 10px 0;
    background: transparent;
    border: none;
    line-height: 1.5;
    overflow: visible;
}

.chorus-file-upload-row input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 10px 16px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

/* Checkbox sections */
.checkbox-group-row {
    margin-top: 10px;
    padding-top: 8px;
}

.checkbox-group-row > label {
    margin-bottom: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.chorus-form-row .chorus-checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
}

.chorus-checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #7B3F97;
}

/* Notice */
.chorus-claim-notice {
    padding: 16px 18px;
    background: #f7f1fa;
    border-left: 4px solid #7B3F97;
    border-radius: 12px;
    margin: 28px 0;
    line-height: 1.6;
}

.chorus-claim-notice a {
    color: #7B3F97;
    font-weight: 600;
}

/* Optional section title */
.chorus-form-section-title {
    margin: 44px 0 24px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.chorus-form-section-title h3 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #111;
}

.chorus-form-section-title p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Button */
.chorus-form-row:last-child {
    padding-top: 18px;
    margin-bottom: 0;
}

.chorus-claim-business-btn,
.chorus-claim-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7B3F97;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chorus-claim-business-btn:hover,
.chorus-claim-form button:hover {
    background: #63317b;
    color: #fff;
    transform: translateY(-1px);
}

/* Disabled fields */
.chorus-form-row input[disabled] {
    background: #f1f1f1;
    color: #666;
    cursor: not-allowed;
}

/* Mobile */
@media (max-width: 768px) {
    .chorus-claim-form-wrapper {
        padding: 24px;
        margin: 20px;
    }

    .chorus-form-row {
        margin-bottom: 30px;
    }

    .chorus-claim-form-wrapper h2 {
        font-size: 28px;
    }

    .chorus-file-upload-row {
        padding: 22px;
    }
}