.container-met {
    max-width: 1280px;
    margin: 20px auto;
    padding: 20px;
}

.methodology-header-met {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
    margin-top: 40px;

}

.intro-container-met {
    flex: 1;
    padding-right: 40px;
}

.pie-chart-container-met {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .methodology-header-met {
        flex-direction: column;
        gap: 20px;
    }

    .intro-container-met {
        padding-right: 0;
    }
}

.container-met h1{
    color: #ff6216;
}
.intro-met {
    font-size: 1.2rem;
    color: #c4c1c2;
    margin: 0 auto 40px;
}

.category-met-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-met-card {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-met-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 98, 22, 0.2);
    border-color: #ff6216;
}

.category-met-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    
}

.category-met-name {
    font-weight: bold;
    color: #ff6216;
}

.category-met-weight {
    background: linear-gradient(135deg, #191919, #090909);
    color: #e3e3e3;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.category-met-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 20px;
}

.category-met-card.expanded .category-met-details {
    max-height: 2000px;
}

.expand-icon-met {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #ff6216;
}

.category-met-card.expanded .expand-icon-met {
    transform: rotate(180deg);
}

.category-met-details ul {
    list-style: none;
    margin: 20px 0;
}

.category-met-details ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.category-met-details ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6216;
}

.highlight-box-met {
    background: rgba(255, 98, 22, 0.1);
    border-left: 3px solid #ff6216;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.scoring-table-met {
    background: linear-gradient(135deg, #000000, #1c1b1b);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid #333;
}

.scoring-table-met table {
    width: 100%;
    border-collapse: collapse;
}

.scoring-table-met th,
.scoring-table-met td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.scoring-table-met th {
    background: #191919;
    color: #e3e3e3;
    font-weight: bold;
}

.scoring-table-met tr:hover {
    background: rgb(83 82 82 / 5%);
}

.score-badge-met {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    color: #0c0c0c;
    text-align: center;
}
.score-exceptional-met {
    background: #14d55c;
    width: 130px;
}
.score-excellent-met {
    background: #386dff;
    width: 115px;
}

.score-good-met {
    background: #ffee07;
    width: 100px;
}

.score-average-met {
    background: #ff7b07;
    width: 85px;
}

.score-poor-met {
    background: #ff1100;
    width: 70px;
}

.pie-chart {
    position: relative;
    width: 350px;
    height: 350px;
}

.chart-legend-met {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.legend-item-met {
    display: flex;
    align-items: center;
}

.legend-color-met {
    width: 15px;
    height: 15px;
    border-radius: 10px;
    margin-right: 10px;
    position: absolute;
}
.legend-item-met span {
    margin: 0 30px;
}
.feature-met-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-met-box {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
}

.feature-met-box h3 {
    color: #ff6216;
    margin-top: 0;
    margin-bottom: 15px;
}

.interactive-calculator {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.calculator-title {
    margin-bottom: 20px;
}

.slider-met-container {
    margin: 20px 0;
}

.slider-met-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.slider-met {
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
}

.slider-met::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
}

.slider-met::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6216, #fe7b39);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.slider-met::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
}

.slider-met::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6216, #fe7b39);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.result-box {
    background: #0f0f0f;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.result-score {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6216, #fe7b39);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section-met {
    text-align: center;
    margin: 60px 0;
    border: 1px solid #303030;
    width: 100%;
}

.cta-button-met {
    display: inline-block;
    background: linear-gradient(85.01deg, #ff7e00 6.26%, #e70000 82.45%), 
    linear-gradient(85.01deg, #ff7e00 6.2%, #ff7e00 40%);
    color: #eaeaea;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    border: 1px solid #ff7e00;
}

.cta-button-met:hover {
    transform: scale(1.05);
    color: #fff;
} 
/* Legend */
.chart-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.7);
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legend-item:hover {
    transform: translateX(10px);
    background: rgba(30, 30, 30, 0.9);
}

.legend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: inherit;
    filter: brightness(150%);
    transition: all 0.3s ease;
}

.legend-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.legend-item-1 { border-color: #FF5722; }
.legend-item-2 { border-color: #FF8C00; }
.legend-item-3 { border-color: #FFA726; }
.legend-item-4 { border-color: #FFB74D; }
.legend-item-5 { border-color: #FFCC80; }

.legend-content {
    display: flex;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.legend-icon {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legend-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: inherit;
    border-radius: 3px;
    transform: rotate(45deg);
}

.legend-item-1 .legend-icon::after { background: #FF5722; }
.legend-item-2 .legend-icon::after { background: #FF8C00; }
.legend-item-3 .legend-icon::after { background: #FFA726; }
.legend-item-4 .legend-icon::after { background: #FFB74D; }
.legend-item-5 .legend-icon::after { background: #FFCC80; }

.legend-text {
    flex: 1;
}

.legend-title {
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.legend-description {
    color: #ccc;
    font-size: 0.9rem;
}

.legend-percentage {
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    color: #fff;
    margin-left: 10px;
}
/* Category Cards */
.categories-grid-met2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card-met2 {
    background: linear-gradient(135deg, rgb(28 27 27 / 80%) 0%, rgb(33 33 33 / 10%) 100%);
    border: 1px solid rgb(255 153 0 / 30%);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card-met2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6216, #ff1100);
}

.category-card-met2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 47, 0, 0.3);
}
.cta-button-met2 {
    display: inline-block;
    background: linear-gradient(85.01deg, #ff7e00 6.26%, #e70000 82.45%), linear-gradient(85.01deg, #ff7e00 6.2%, #ff7e00 40%);
    color: #ffffff;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    border: 1px solid #ff6a00;
    transition: all 0.3s ease;
}

.cta-button-met2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4);
    color: #fff;
}
 /* Testing Process */
 .process-steps {
    counter-reset: step-counter;
}

.process-step {
    counter-increment: step-counter;
    background: rgb(28 28 28 / 60%);
    border-left: 4px solid #ff6216;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.process-step::before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 1.5rem;
    background: #ff6216;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.process-step h4 {
    color: #ff6216;
    margin-bottom: 0.5rem;
}
.principles-grid-met2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle-card-met2 {
    background: rgb(17 17 17);
    border: 1px solid rgb(49 49 49 / 94%);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.principle-card-met2:hover {
    border-color: #ff6216;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 63, 6, 0.21);
}

.principle-icon-met2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.principle-card-met2 h4 {
    color: #ff6216;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}