/* Fastest Update Speed Styles */
.fastest-update {
    padding: 80px 0;
    background-color: #fff;
}

.accent-color {
    color: #00C08B;
    font-size: 32px;
    font-weight: 700;
}

.update-comparison {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 244px;
    min-height: 244px;
}

/* Competitor (First Item) - Following JSON structure */
.competitor-header {
    margin-bottom: 8px;
    text-align: center;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.competitor-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.competitor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 197px;
    height: 235px;
}

/* Speed multiplier item */
.speed {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 244px;
}

.speed-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 197px;
}

.speed-display {
    text-align: center;
}

.speed-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.speed-multiplier {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

/* SOLUM and Benefits items */
.comparison-header {
    margin-bottom: 30px;
    text-align: center;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.solum-logo img {
    height: 24px;
    width: auto;
}

.comparison-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.gray-circle {
    background: #BABCC1;
}

.dark-circle {
    background: #002040;
}

.green-circle {
    background: #00C08B;
}

.circle-content {
    text-align: center;
    color: white;
    padding: 20px;
    width: 100%;
}

.time-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

.time-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.time-label {
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.update-info {
    font-size: 14px;
    color: white;
    line-height: 1.2;
}

/* Features list */
.features {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 244px;
    padding-top: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-width: 300px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-item img {
    flex-shrink: 0;
}

.feature-detail {
    font-size: 12px;
    color: #666;
    margin-left: 20px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 0 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: white;
}

.benefit-item img {
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.esl-display-demo {
    text-align: center;
    margin-top: 40px;
}

.demo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .update-comparison {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .comparison-item {
        max-width: 600px;
        width: 100%;
    }
    
    .competitor-content {
        width: 100%;
    }
    
    .feature-list,
    .benefit-list {
        max-width: 400px;
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    
    .competitor-content {
        height: auto;
    }
    
    .time-number {
        font-size: 30px;
    }
    
    .time-label {
        font-size: 16px;
    }
    
    .update-info {
        font-size: 12px;
    }
    
    .speed-content {
        height: 150px;
    }
    
    .speed-multiplier {
        font-size: 36px;
    }
}
