.methodology-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-container {
    background: #FFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Header */
.methodology-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.methodology-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

/* Stats */
.methodology-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: #F7F6EC;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-icon {
    color: #FF4D37;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0B0F15;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.4;
}

/* Grid Layout */
.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

@media (max-width: 968px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Categories */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.section-description {
    font-size: 1rem;
    color: #4a5568;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.category-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.category-header {
    width: 100%;
    background: white;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: left;
}

.category-header:hover {
    background: #f8f9fa;
}

.category-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.category-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-weight {
    font-size: 1rem;
    font-weight: 500;
    color: #718096;
}

.category-chevron {
    color: #a0aec0;
    transition: transform 0.2s ease;
}

.category-item.expanded .category-chevron {
    transform: rotate(180deg);
}

.category-content {
    padding: 0 20px 16px 48px;
    color: #4a5568;
    line-height: 1.6;
    display: none;
}

.category-item.expanded .category-content {
    display: block;
}

/* Donut Chart */
.methodology-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-chart {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.donut-segment {
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.donut-segment:hover {
    opacity: 0.8;
}

.score-value {
    font-size: 2.25rem;
    font-weight: 700;
    fill: #1a1a1a;
}

.score-stars {
    font-size: 1rem;
    fill: #FFB300;
}

.score-label {
    font-size: 14px;
    fill: #718096;
}

/* Detailed Section */
.methodology-detailed {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.detailed-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 16px;
}

.detailed-text p {
    margin: 0;
}

.show-more-btn {
    background: none;
    border: none;
    color: #FF4D37;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: color 0.2s ease;
}

.show-more-btn:hover {
    cursor: pointer;
    background: transparent !important;
    border: transparent !important;
    color: #FF4D37;
}

.methodology-showcase button:focus {
    cursor: pointer;
    background: transparent !important;
    border: transparent !important;
    color: #FF4D37;
}

.show-more-btn svg {
    transition: transform 0.2s ease;
}

.show-more-btn.expanded svg {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .methodology-container {
        padding: 24px;
    }
    
    .methodology-title {
        font-size: 2rem;
    }
    
    .methodology-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
}