/* Report Page Styles - Part 2: Score Section - Modern Clean Design */

/* Score section - Modern Clean Design */
.score-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.score-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.score-circle::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.score-circle.good {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.score-circle.medium {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.score-circle.bad {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.score-number {
    position: relative;
    z-index: 1;
}

.score-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.score-label span:first-child {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.score-rating {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.score-summary {
    display: flex;
    align-items: center;
    padding-left: 2.5rem;
    border-left: 1px solid #e5e7eb;
}

.score-summary p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
    color: #374151;
}

.score-summary strong {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .score-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .score-summary {
        padding-left: 0;
        padding-top: 2rem;
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }
    
    .website-review-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .website-review-section h2 {
        font-size: 1.5rem;
    }
    
    .website-type-info {
        padding: 1.25rem;
    }
    
    .website-type-info h3 {
        font-size: 1.125rem;
    }
    
    .section-header.collapsible {
        padding: 1rem 1.25rem;
    }
    
    .section-header.collapsible h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .score-section {
        padding: 1.5rem 1rem;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .score-label span:first-child {
        font-size: 0.8125rem;
    }
    
    .score-rating {
        font-size: 1rem;
    }
    
    .score-summary p {
        font-size: 1rem;
    }
    
    .website-review-section {
        padding: 1.5rem 1rem;
    }
    
    .website-review-section h2 {
        font-size: 1.375rem;
    }
    
    .website-type-info {
        padding: 1rem;
    }
    
    .website-type-info h3 {
        font-size: 1rem;
    }
    
    .website-type-info p {
        font-size: 0.9375rem;
    }
    
    .section-header.collapsible {
        padding: 0.875rem 1rem;
    }
    
    .section-header.collapsible h3 {
        font-size: 1rem;
    }
    
    .collapsible-content.open {
        padding: 1rem;
    }
}

/* Website review section - Modern Clean Design */
.website-review-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.website-review-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #1f2937;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    letter-spacing: -0.01em;
}

.review-content {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #374151;
}

@media (max-width: 768px) {
    .website-review-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .website-review-section h2 {
        font-size: 1.5rem;
    }
}

.website-type-info {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

.website-type-info h3 {
    margin: 0 0 0.75rem 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
}

.website-type-info p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Collapsible sections - Clean Design */
.section-header.collapsible {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-header.collapsible:hover {
    background: linear-gradient(135deg, #f1f3f5 0%, #f8f9fa 100%);
    border-color: #dee2e6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.section-header.collapsible h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.01em;
}

.collapse-icon {
    transition: transform 0.3s ease;
    color: #6c757d;
    font-size: 0.875rem;
}

.section-header.collapsible:hover .collapse-icon {
    color: #495057;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 0;
    margin-bottom: 20px;
}

.collapsible-content.open {
    max-height: 5000px;
    padding: 20px;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.additional-info-section .collapsible-content.open {
    padding: 24px 20px;
}
