/* Modern Compensation Calculator Styles - Compact Version */
.modern-compensation-calculator {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    width: 100%;
    box-sizing: border-box;
}

/* Header - Compact */
.modern-calculator-header {
    text-align: center;
    margin-bottom: 25px;
}

.modern-calculator-header h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 400;
    line-height: 1.2;
}

/* Progress Bar - Compact */
.modern-progress-container {
    background: linear-gradient(135deg, #3A0519 0%, #670D2F 100%);
    padding: 20px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.modern-progress-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.modern-main-step {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 30px 12px 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    min-width: 180px;
}

.modern-main-step:first-child {
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    padding-left: 20px;
}

.modern-main-step:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15px 50%);
    padding-right: 20px;
    margin-right: 0;
}

.modern-main-step:first-child:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.modern-main-step.completed {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

.modern-main-step.active {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-weight: 600;
}

.modern-main-step.active + .modern-main-step {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.modern-step-title {
    font-size: 16px;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    margin-bottom: 0;
    color: #ffffff;
    padding:20px 10px;
}

.modern-calculator-content .modern-step-title {
    font-size: 24px;
    font-weight: 600;
    padding:0;
    margin: 0;
    margin-bottom: 0;
    color: #111111;
}

/* Remove old arrow and icon styles */
.modern-progress-arrow,
.modern-step-icon {
    display: none;
}

/* Main Content Area - Compact */
.modern-calculator-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}



.modern-step-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
}

/* Option Cards - Compact */
.modern-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.modern-option-card {
    background: linear-gradient(135deg, #3A0519 0%, #670D2F 100%);
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modern-option-card:hover {
    border-color: #A53860;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(165, 56, 96, 0.15);
}

.modern-option-card.selected {
    border-color: #A53860;
    background: linear-gradient(135deg, #3A0519 0%, #670D2F 100%);
    box-shadow: 0 5px 20px rgba(165, 56, 96, 0.2);
}

.modern-option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #A53860;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.modern-option-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.modern-option-card:hover .modern-option-icon {
    color: #A53860;
}

.modern-option-card.selected .modern-option-icon {
    color: #A53860;
}

.modern-option-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

/* Navigation Buttons */
.modern-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.modern-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.modern-btn-primary {
    background: #A53860;
    color: white;
}

.modern-btn-primary:hover {
    background: #670D2F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 56, 96, 0.3);
}

.modern-btn-secondary {
    background: #6c757d;
    color: white;
}

.modern-btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
}

.modern-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Elements */
.modern-form-group {
    margin-bottom: 25px;
}

.modern-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.modern-form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.modern-form-input:focus {
    outline: none;
    border-color: #A53860;
}

.modern-form-input.error {
    border-color: #e74c3c;
}

.modern-error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

/* Search Box */
.modern-search-container {
    background: linear-gradient(135deg, #3A0519 0%, #670D2F 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 25px;
    box-shadow: 0 8px 32px rgba(58, 5, 25, 0.15);
    position: relative;
    overflow: hidden;
}

.modern-search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.modern-search-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.modern-search-title::before {
    content: "🔍";
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.modern-search-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.modern-search-box {
    position: relative;
    z-index: 2;
}

.modern-search-input {
    width: 100%;
    padding: 20px 70px 20px 25px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #2c3e50;
    font-weight: 500;
    box-sizing: border-box;
}

.modern-search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.modern-search-input::placeholder {
    color: #8e9aaf;
    font-style: normal;
    font-weight: 400;
}

.modern-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #EF88AD 0%, #A53860 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    box-shadow: 
        0 4px 15px rgba(239, 136, 173, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.modern-search-btn:hover {
    background: linear-gradient(135deg, #A53860 0%, #670D2F 100%);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 
        0 6px 25px rgba(165, 56, 96, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.15);
}

.modern-search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.modern-search-btn::before {
    content: "🔍";
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Results Display */
.modern-results-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modern-search-results {
    display: grid;
    gap: 12px;
}

.modern-result-item {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 4px solid #A53860;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(165, 56, 96, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(165, 56, 96, 0.02) 0%, rgba(239, 136, 173, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(165, 56, 96, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #A53860;
    border-left-color: #EF88AD;
}

.modern-result-item:hover::before {
    opacity: 1;
}

.modern-result-item h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.modern-result-item p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* Hidden Elements */
.modern-hidden {
    display: none !important;
}

/* Loading States */
.modern-loading {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-compensation-calculator {
        padding: 15px;
    }
    
    .modern-calculator-header h1 {
        font-size: 36px;
    }
    
    .modern-progress-container {
        padding: 20px 15px;
        display:none;
    }
    
    .modern-progress-flow {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .modern-main-step {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        margin-right: 0;
        margin-bottom: 8px;
        min-width: auto;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .modern-main-step:first-child,
    .modern-main-step:last-child,
    .modern-main-step:first-child:last-child {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding: 10px 15px;
    }
    
    .modern-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 10px;
    }
    
    .modern-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .modern-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Search Results Mobile Optimization */
    .modern-search-container {
        padding: 25px 20px;
        margin-top: 20px;
        border-radius: 16px;
    }
    
    .modern-search-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .modern-search-title::before {
        font-size: 24px;
    }
    
    .modern-search-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .modern-search-input {
        padding: 18px 60px 18px 20px;
        font-size: 16px;
        border-radius: 50px;
    }
    
    .modern-search-btn {
        width: 44px;
        height: 44px;
        right: 6px;
        font-size: 18px;
    }
    
    .modern-results-container {
        padding: 16px;
        margin-top: 15px;
        max-height: 300px;
        border-radius: 12px;
    }
    
    .modern-result-item {
        padding: 14px 16px;
        border-radius: 10px;
    }
    
    .modern-result-item h4 {
        font-size: 15px;
    }
    
    .modern-result-item p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .modern-result-item:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .modern-search-container {
        padding: 20px 15px;
        border-radius: 14px;
    }
    
    .modern-search-title {
        font-size: 18px;
    }
    
    .modern-search-title::before {
        font-size: 22px;
    }
    
    .modern-search-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .modern-search-input {
        padding: 16px 55px 16px 18px;
        font-size: 15px;
    }
    
    .modern-search-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .modern-search-results {
        gap: 8px;
    }
    
    .modern-result-item {
        padding: 12px 14px;
        border-radius: 8px;
    }
    
    .modern-result-item h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .modern-result-item p {
        font-size: 12px;
    }
    
    .modern-results-container {
        max-height: 250px;
        padding: 14px;
        border-radius: 10px;
    }
}

/* Loss of Earnings Section Responsive Styling */
.modern-earnings-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.modern-earnings-info p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.modern-earnings-info p:last-child {
    margin-bottom: 0;
}

.modern-earnings-info strong {
    color: #2c3e50;
    font-weight: 600;
}

.modern-care-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

.modern-care-options .modern-option-card {
    min-height: auto;
    padding: 15px 10px;
    font-size: 14px;
}

.modern-care-options .modern-option-text {
    font-size: 14px;
    margin: 0;
}

.modern-care-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.modern-care-details p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #495057;
}

.modern-care-details p em {
    font-size: 13px;
    color: #6c757d;
}

.modern-care-details .modern-form-group {
    margin-bottom: 15px;
}

.modern-care-details .modern-form-input {
    padding: 12px 15px;
    font-size: 14px;
}

/* Compensation Claim Report Section (Step 10) */
.modern-selection-summary {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.modern-selection-summary h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
    position: relative;
}

.modern-selection-summary h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #A53860 0%, #670D2F 100%);
    border-radius: 2px;
}

.modern-selection-summary h4 {
    color: #A53860;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    padding-left: 12px;
    border-left: 3px solid #A53860;
}

.claim-summary-section {
    background: white;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #A53860;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.claim-summary-section:last-child {
    margin-bottom: 0;
}

.claim-summary-section p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.claim-summary-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.injury-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 10px 0;
    border-left: 3px solid #6c757d;
}

.injury-summary p {
    margin: 6px 0;
    font-size: 13px;
}

.modern-contact-form {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.modern-contact-form .modern-form-group {
    margin-bottom: 20px;
}

.modern-contact-form .modern-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.modern-contact-form .modern-form-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.modern-contact-form .modern-form-input:focus {
    outline: none;
    border-color: #A53860;
    background: white;
    box-shadow: 0 4px 12px rgba(165, 56, 96, 0.15);
    transform: translateY(-1px);
}

.modern-contact-form .modern-form-input.error {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.modern-submit-btn {
    background: linear-gradient(135deg, #A53860 0%, #670D2F 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(165, 56, 96, 0.3);
}

.modern-submit-btn:hover {
    background: linear-gradient(135deg, #670D2F 0%, #3A0519 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(165, 56, 96, 0.4);
}

/* Mobile Responsive for Loss of Earnings */
@media (max-width: 768px) {
    .modern-earnings-info {
        padding: 15px;
        margin: 15px 0;
    }
    
    .modern-earnings-info p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .modern-care-options {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }
    
    .modern-care-options .modern-option-card {
        padding: 12px 8px;
    }
    
    .modern-care-details {
        padding: 15px;
        margin: 15px 0;
    }
    
    .modern-care-details p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .modern-care-details .modern-form-group {
        margin-bottom: 12px;
    }
    
    .modern-care-details .modern-form-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Compensation Report Mobile */
    .modern-selection-summary {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .modern-selection-summary h3 {
        font-size: 18px;
    }
    
    .modern-selection-summary h4 {
        font-size: 15px;
        margin: 15px 0 8px 0;
    }
    
    .claim-summary-section {
        padding: 12px 15px;
        margin-bottom: 12px;
    }
    
    .claim-summary-section p {
        font-size: 13px;
    }
    
    .injury-summary {
        padding: 10px 12px;
    }
    
    .injury-summary p {
        font-size: 12px;
    }
    
    .modern-contact-form {
        padding: 20px;
    }
    
    .modern-contact-form .modern-form-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .modern-submit-btn {
        padding: 15px 30px;
        font-size: 15px;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .modern-earnings-info {
        padding: 12px;
    }
    
    .modern-earnings-info p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .modern-care-details {
        padding: 12px;
    }
    
    .modern-care-details p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .modern-care-details .modern-form-input {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    /* Compensation Report Extra Small Mobile */
    .modern-selection-summary {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .modern-selection-summary h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .modern-selection-summary h4 {
        font-size: 14px;
        margin: 12px 0 6px 0;
        padding-left: 10px;
    }
    
    .claim-summary-section {
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .claim-summary-section p {
        font-size: 12px;
        margin: 6px 0;
    }
    
    .injury-summary {
        padding: 8px 10px;
        margin: 8px 0;
    }
    
    .injury-summary p {
        font-size: 11px;
        margin: 4px 0;
    }
    
    .modern-contact-form {
        padding: 15px;
    }
    
    .modern-contact-form .modern-form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .modern-contact-form .modern-form-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .modern-contact-form .modern-form-group {
        margin-bottom: 15px;
    }
    
    .modern-submit-btn {
        padding: 12px 25px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
}

/* Icons removed to prevent double icons */

/* Value Proposition Section - Compact */
.value-proposition-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.value-prop-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.value-prop-content {
    width: 100%;
}

.value-prop-main {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.value-prop-question {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.value-prop-answer {
    font-size: 18px;
    font-weight: 600;
    color: #A53860;
    margin-bottom: 20px;
}

.value-prop-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.value-prop-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.value-prop-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.5;
}

.value-prop-benefits .checkmark {
    background: #A53860;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.value-prop-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-win-no-fee-badge {
    background: linear-gradient(135deg, #670D2F 0%, #3A0519 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(103, 13, 47, 0.3);
    min-width: 200px;
    justify-content: center;
}

.badge-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.badge-text {
    text-align: center;
}

.badge-main {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.badge-sub {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
}

/* Value Proposition Mobile Responsive */
@media (max-width: 1024px) {
    .value-prop-container {
        max-width: 100%;
    }
    
    .value-prop-content {
        text-align: center;
    }
    
    .value-prop-main {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .value-prop-benefits {
        width: 100%;
    }
    
    .value-prop-benefits li {
        text-align: left;
        justify-content: flex-start;
    }
    
    .no-win-no-fee-badge {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    
    .modern-option-card {
        flex-direction: row;
        justify-content: flex-start;
        gap:15px;
    }
    
    .value-proposition-section {
        padding: 25px 20px;
        margin-top: 20px;
    }
    
    .value-prop-container {
        gap: 20px;
        max-width: 100%;
    }
    
    .value-prop-content {
        text-align: center;
    }
    
    .value-prop-main {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .value-prop-question {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .value-prop-answer {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .value-prop-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .value-prop-benefits {
        width: 100%;
    }
    
    .value-prop-benefits li {
        font-size: 15px;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .no-win-no-fee-badge {
        padding: 20px 25px;
        min-width: 180px;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .badge-main {
        font-size: 16px;
    }
    
    .badge-sub {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modern-compensation-calculator {
        padding: 10px;
        margin: 10px;
    }
    
    .value-proposition-section {
        padding: 20px 15px;
        margin-top: 15px;
    }
    
    .value-prop-container {
        gap: 18px;
    }
    
    .value-prop-content {
        text-align: center;
    }
    
    .value-prop-main {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    
    .value-prop-question {
        font-size: 18px;
    }
    
    .value-prop-answer {
        font-size: 15px;
    }
    
    .value-prop-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .value-prop-benefits {
        width: 100%;
    }
    
    .value-prop-benefits li {
        font-size: 14px;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .value-prop-benefits .checkmark {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .no-win-no-fee-badge {
        padding: 18px 22px;
        min-width: 160px;
        gap: 12px;
        margin: 0 auto;
    }
    
    .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .badge-main {
        font-size: 15px;
    }
    
    .badge-sub {
        font-size: 13px;
    }
}

/* CTA Button Styles */
.value-prop-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.callback-cta-btn {
    background: linear-gradient(135deg, #A53860 0%, #670D2F 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(165, 56, 96, 0.3);
    margin-bottom: 8px;
}

.callback-cta-btn:hover {
    background: linear-gradient(135deg, #670D2F 0%, #3A0519 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 56, 96, 0.4);
}

.cta-subtext {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-style: italic;
}

/* CTA Mobile Responsive */
@media (max-width: 768px) {
    .value-prop-cta {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .callback-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-subtext {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .callback-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }
    
    .cta-subtext {
        font-size: 12px;
    }
}

/* Professional Compensation Report Styles */
.compensation-report {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px auto;
    border: 1px solid #e2e8f0;
    max-width: 900px;
    width: 100%;
}

.report-header {
    background: linear-gradient(135deg, #3A0519 0%, #670D2F 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.report-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.report-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.report-date {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

.compensation-highlight {
    background: linear-gradient(135deg, #A53860 0%, #EF88AD 100%);
    color: white;
    padding: 35px;
    text-align: center;
    position: relative;
}

.compensation-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EF88AD, #A53860, #670D2F);
}

.amount-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-section {
    padding: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.report-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #A53860, #670D2F);
}

.injury-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #A53860;
}

.detail-label {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
    text-align: right;
}

.description-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #A53860;
}

.description-box p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

.report-disclaimer {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 20px;
    margin: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.disclaimer-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    margin: 0 0 8px 0;
    color: #92400e;
    font-size: 16px;
    font-weight: 600;
}

.disclaimer-content p {
    margin: 0;
    color: #92400e;
    font-size: 14px;
    line-height: 1.5;
}

/* Report Mobile Responsive */
@media (max-width: 768px) {
    .report-header {
        padding: 25px 20px;
    }
    
    .report-title {
        font-size: 24px;
    }
    
    .compensation-highlight {
        padding: 25px 20px;
    }
    
    .amount-value {
        font-size: 28px;
    }
    
    .amount-label {
        font-size: 14px;
    }
    
    .report-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 15px;
    }
    
    .detail-value {
        text-align: left;
        font-size: 15px;
    }
    
    .report-disclaimer {
        margin: 20px;
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .report-header {
        padding: 20px 15px;
    }
    
    .report-title {
        font-size: 20px;
    }
    
    .compensation-highlight {
        padding: 20px 15px;
    }
    
    .amount-value {
        font-size: 24px;
    }
    
    .report-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .detail-item {
        padding: 10px 12px;
    }
    
    .detail-label {
        font-size: 13px;
    }
    
    .detail-value {
        font-size: 14px;
    }
    
    .description-box {
        padding: 15px;
    }
    
    .description-box p {
        font-size: 14px;
    }
    
    .report-disclaimer {
        margin: 15px;
        padding: 12px;
    }
    
    .disclaimer-content h4 {
        font-size: 15px;
    }
    
    .disclaimer-content p {
        font-size: 13px;
    }
} 